@charset "UTF-8";
/* CSS Document */
/* --------------------------------------------------

初期設定

-------------------------------------------------- */
/* --------------------------------------------------

hover

-------------------------------------------------- */
/* --------------------------------------------------

スマホサイズのフォント指定

-------------------------------------------------- */
/* --------------------------------------------------

breakpoint

-------------------------------------------------- */
/* about-greeting */
.about-greeting-blk {
  display: flex;
}
@media only screen and (max-width: 768px) {
  .about-greeting-blk {
    display: block;
  }
}
.about-greeting-pht {
  width: 15%;
}
@media only screen and (max-width: 768px) {
  .about-greeting-pht {
    width: 60%;
    margin-inline: auto;
    text-align: center;
  }
}
.about-greeting-txt {
  flex: 1;
  padding-left: 3em;
}
@media only screen and (max-width: 768px) {
  .about-greeting-txt {
    padding-left: 0;
    margin-top: 5%;
  }
}
.about-greeting-txt p {
  margin-bottom: 1em;
}
.about-greeting-txt dl {
  line-height: 1.5;
  margin-top: 1em;
}
.about-greeting-txt dl dd {
  font-weight: 700;
  font-size: 1.8rem;
}

/* about-philosophy */
.about-philosophy-blk {
  display: flex;
  flex-direction: row-reverse;
}
@media only screen and (max-width: 768px) {
  .about-philosophy-blk {
    display: block;
  }
}
.about-philosophy-pht {
  width: 33%;
  border-radius: 30px 0 0 30px;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .about-philosophy-pht {
    width: 100%;
    margin-inline: auto;
    text-align: center;
    border-radius: 0;
    aspect-ratio: 16/9;
  }
}
.about-philosophy-txt {
  flex: 1;
  padding-right: 2.5em;
}
@media only screen and (max-width: 768px) {
  .about-philosophy-txt {
    padding-right: 0;
    margin-top: 5%;
  }
}
.about-philosophy-txt p {
  margin-bottom: 1em;
}

/* about-nicss */
.about-nicss-txt {
  margin-top: 2em;
}
.about-nicss-txt p span {
  font-weight: 700;
  display: inline;
  background: linear-gradient(transparent 50%, #E0F4FF 50%, #E0F4FF 100%);
}

/* about-overview */
.about-overview-blk > dl {
  display: flex;
  border-bottom: 1px solid #143263;
  padding-block: 1.2em;
}
@media only screen and (max-width: 768px) {
  .about-overview-blk > dl {
    display: block;
    padding-block: 4%;
  }
}
.about-overview-blk > dl > dt {
  font-weight: 700;
  width: 20%;
}
@media only screen and (max-width: 768px) {
  .about-overview-blk > dl > dt {
    width: 100%;
  }
}
.about-overview-blk > dl > dd {
  flex: 1;
  padding-left: 1em;
}
@media only screen and (max-width: 1100px) {
  .about-overview-blk > dl > dd {
    padding-left: 0;
  }
}
.about-overview-blk > dl > dd > dl {
  margin-top: 0.7em;
}
.about-overview-blk > dl > dd > dl > dd {
  font-size: 1.4rem;
}
.about-overview-blk > dl > dd > dl:first-child {
  margin-top: 0;
}

/* about-license */
.about-license-blk .table-data tbody th {
  width: 30%;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .about-license-blk .table-data tbody th {
    display: block;
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .about-license-blk .table-data tbody td {
    display: block;
    width: 100%;
  }
}

/* about-history */
.about-history-blk dl {
  display: flex;
  border-bottom: 1px solid #143263;
  padding-block: 1.7em;
}
@media only screen and (max-width: 1100px) {
  .about-history-blk dl {
    display: block;
    padding-block: 4%;
  }
}
.about-history-blk dl dt {
  width: 14%;
  font-family: "Gabarito", sans-serif;
  font-weight: bold;
  font-size: 2.5rem;
  line-height: 1;
  color: #143263;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1100px) {
  .about-history-blk dl dt {
    width: 100%;
    font-size: 2rem;
  }
}
.about-history-blk dl dt:before {
  width: 1rem;
  height: 1rem;
  background: #0186D2;
  border-radius: 50%;
  content: "";
  display: inline-block;
  margin-right: 0.6em;
  position: relative;
}
@media only screen and (max-width: 1100px) {
  .about-history-blk dl dt:before {
    margin-right: 0.3em;
  }
}
.about-history-blk dl dd {
  flex: 1;
  display: flex;
}
@media only screen and (max-width: 1100px) {
  .about-history-blk dl dd {
    margin-top: 0.2em;
  }
}
.about-history-date {
  font-size: 1.4rem;
  width: 15%;
}
@media only screen and (max-width: 1100px) {
  .about-history-date {
    width: 15%;
  }
}
@media only screen and (max-width: 768px) {
  .about-history-date {
    width: 30%;
  }
}
.about-history-content {
  flex: 1;
}
.about-history-pht {
  margin-top: 1em;
  width: 30%;
}
@media only screen and (max-width: 1100px) {
  .about-history-pht {
    width: 50%;
  }
}
.about-history-pht img {
  width: 100%;
}