@charset "UTF-8";
/* ------------------------------------
▼カラー設定
------------------------------------ */
a {
  color: #184ED8;
  transition: 0.2s;
  opacity: 1;
}
a:hover {
  color: #1C77FF;
}

.tabView {
  display: none;
}
@media only screen and (max-width: 768px) {
  .tabView {
    display: block;
  }
}

.spView {
  display: none;
}
@media only screen and (max-width: 640px) {
  .spView {
    display: block;
  }
}

.philosophy {
  margin-bottom: 80px;
}
@media only screen and (max-width: 640px) {
  .philosophy {
    margin-bottom: 0;
  }
}

.infoList {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 40px;
  align-items: center;
}
@media only screen and (max-width: 640px) {
  .infoList {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
.infoList dt {
  width: 110px;
  text-align: center;
  color: #184ED8;
  font-weight: bold;
  background-color: #E8F1FF;
  border-radius: 3px;
  padding: 10px 0;
}
@media only screen and (max-width: 640px) {
  .infoList dt {
    width: 100%;
  }
}
.infoList dd {
  width: calc(100% - 150px);
}
@media only screen and (max-width: 640px) {
  .infoList dd {
    width: 100%;
  }
}
.infoList dd span {
  display: inline-block;
}
@media only screen and (max-width: 640px) {
  .infoList .detail span {
    display: block;
  }
}
.infoList .detail span::after {
  content: "／";
  margin: 0 4px;
}
@media only screen and (max-width: 640px) {
  .infoList .detail span::after {
    content: "";
    margin: 0;
  }
}
.infoList .detail span:last-child:after {
  content: "";
  margin: 0;
}