@charset "UTF-8";

#main-visual.corporate p img {
  width: 100%;
  height: auto;
}

.corporate-section p img {
  max-width: 100%;
  height: auto;
}

.voice-box ul {
  display: flex;
  justify-content: space-between;
}

.voice-box li {
  background-color: #f7f7f7;
  font-size: 15px;
  line-height: 1.4;
  padding: 15px;
  width: 49.5%;
}

.voice-box h4 {
  color: #333;
  font-weight: bold;
  font-size: 22px;
  margin-bottom: 15px;
}

.voice-box-inner {
  display: flex;
  justify-content: space-between;
}

.voice-box-inner .img {
  width: 30%;
}

.voice-box-inner img {
  max-width: 100%;
  height: auto;
}

.voice-box-inner .txt {
  width: 68%;
}

.voice-box-inner .name-wrap {
  margin-top: 12px;
}

.voice-box-inner .name-wrap p {
  margin-bottom: 2px;
}

.voice-box-inner .name {
  font-size: 20px;
}

.merit-list ul {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: center;
  column-gap: 60px;
  row-gap: 30px;
  margin-bottom: 30px;
}

.merit-list li {
  border: 4px solid #EB9D3F;
  border-radius: 50%;
  padding: 45px 20px;
  font-size: 16px;
  width: 220px;
  height: 220px;
  line-height: 1.7;
  text-align: center;
}

.merit-list li span {
  font-size: 22px;
}

.merit-list p {
  font-size: 14px;
  text-align: right;
  line-height: 1.4;
}

.scholarship-company-list {
  font-size: 14px;
  line-height: 1.4;
  box-sizing: border-box;
}

.scholarship-company-list th {
  background-color: #F8DBB8;
  font-weight: bold;
  text-align: left;
}

.scholarship-company-list th,
.scholarship-company-list td {
  padding: 10px 5px;
  border: none;
  border-bottom: 1px solid #6d6d6d;
}

.scholarship-company-list tr:nth-child(even) {
  background: #f7f7f7;
}

.scholarship-company-list a {
  text-decoration: underline;
}

.scholarship-company-list a:hover {
  text-decoration: none !important;
}



@media screen and (max-width:640px) {

.voice-box ul {
  display: block;
}

.voice-box li {
  font-size: 14px;
  margin-bottom: 20px;
  width: 100%;
}

.voice-box h4 {
  font-size: 18px;
}

.voice-box-inner .img {
  width: 36%;
}

.voice-box-inner .txt {
  width: 62%;
}

.voice-box-inner .name {
  font-size: 19px;
}

.merit-list ul {
  grid-template-columns: repeat(2, auto);
  grid-template-areas:
    "one one"
    "two three";
  column-gap: 18px;
  row-gap: 0;
}

.merit-list li:nth-child(1) {
  grid-area: one;
  justify-self: center;
  padding-top: 57px;
}

.merit-list li:nth-child(2),
.merit-list li:nth-child(3) {
  position: relative;
  top: -10px;
}

.merit-list li:nth-child(2) {
  grid-area: two;
}

.merit-list li:nth-child(3) {
  grid-area: three;
}

.scholarship-company-list-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.scholarship-company-list {
  width: 100%;
  min-width: 1100px;
  border-collapse: collapse;
}

.scholarship-company-list th,
.scholarship-company-list td {
  white-space: normal;
}

}


@media screen and (max-width:500px) {

.merit-list {
  column-gap: 18px;
  row-gap: 0px;
}

.merit-list li {
  border: 3px solid #EB9D3F;
  font-size: 14px;
  height: 170px;
  padding: 32px 0px;
  width: 170px;
}

.merit-list li span {
  font-size: 18px;
}

.merit-list li:nth-child(1) {
  padding-top: 40px;
}

.merit-list li:nth-child(2),
.merit-list li:nth-child(3) {
  top: -5px;
}

}