@charset "utf-8";

.philosophyBox {
  display: grid;
  gap: 18px 2.4%;
  grid-template-areas: 'a a' 'b c';
  grid-template-columns: 59.8% 38.6%;
  max-width: 1000px;
  margin: 64px auto 0;
}
@media screen and (max-width: 768px) {
  .philosophyBox {
    grid-template-areas: 'a' 'b' 'c';
    grid-template-columns: 100%;
  }
}

.philosophyBox .emphasisBox {
  grid-area: a;
}

.philosophyBox .emphasisBox2:nth-of-type(2) {
  grid-area: b;
}

.philosophyBox .emphasisBox2:nth-of-type(3) {
  grid-area: c;
}

.emphasisBox2-body > div {
  display: flex;
  justify-content: center;
}

.emphasisBox2-body ol > li:nth-child(n+2)  {
  margin-top: .5em;
}

.emphasisBox._plan {
  position: relative;
  margin-top: 46px;
  padding-top: 62px;
}
@media screen and (max-width: 768px) {
  .emphasisBox._plan {
    margin-top: 10.4vw;
    padding-top: 23.2vw;
  }
}

.emphasisBox._plan::before {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -50%;  
  width: 145px;
  height: auto;
  aspect-ratio: 145/92;
  background: url(/about/img/icn_symbolmark.svg) no-repeat center/cover;
  content: "";
}
@media screen and (max-width: 768px) {
  .emphasisBox._plan::before {
    width: 33.06vw;
  }
}

.emphasisBox._plan .emphasisBox-main {
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  .emphasisBox._plan .emphasisBox-main {
    margin-top: 5.33vw;
  }
}

.emphasisBox._plan .emphasisBox-body p {
  font-size: 16px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .emphasisBox._plan .emphasisBox-body p {
    font-size: 4.26vw;
    text-align: left;
  }
}

.strategyList {
  display: grid;
  gap: 30px min(2.31vw,25px);
  grid-template-areas:
  ". a a b b ."
  "c c d d e e";
  grid-template-columns: repeat(6,min(13.92vw,152.5px));
  justify-content: center;
  margin-top: 105px;
}
@media screen and (max-width: 768px) {
  .strategyList {
    gap: 6.66vw 0;
    grid-template-areas: none;
    grid-template-columns: 100%;
    margin-top: 13.33vw;
  }
}

.strategyList li:nth-child(1) {
  grid-area: a;
}

.strategyList li:nth-child(2) {
  grid-area: b;
}

.strategyList li:nth-child(3) {
  grid-area: c;
}

.strategyList li:nth-child(4) {
  grid-area: d;
}

.strategyList li:nth-child(5) {
  grid-area: e;
}
@media screen and (max-width: 768px) {
  .strategyList li {
    grid-area: unset !important;
  }
}

.strategy {
  position: relative;
  padding: 23px 10px 25px;
  border-radius: 5px;
  background-color: #EDF2F3;
}
@media screen and (max-width: 768px) {
  .strategy {
    padding: 6.13vw 2.66vw 6.66vw;
    border-radius: 1.33vw;
  }
}

html[lang="en"] .strategy {
  min-height: 181px;
}

.strategy-num {
  position: absolute;
  top: -10px;
  left: 8px;
  background: linear-gradient(164.63deg, #369CCF 31.73%, #63CADA 65.38%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-family: "Bellefair";
  font-size: 50px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .strategy-num {
    top: -2.66vw;
    left: 2.13vw;
    font-size: 13.33vw;
  }
}

.strategy-cate {
  position: absolute;
  top: 9px;
  right: 10px;
  display: inline-block;
  padding: 5px 9px;
  border-radius: 2px;
  background-color: #8FA6AD;
  color: #FFF;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .strategy-cate {
    top: 2.4vw;
    right: 2.66vw;
    padding: 1.33vw 2.66vw;
    border-radius: .53vw;
    font-size: 3.46vw;
  }
}

.strategy-ttl {
  margin-top: 15px;
  font-size: min(2.14vw,18px);
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .strategy-ttl {
    margin-top: 4vw;
    font-size: 4.8vw;
  }
}

.strategy-img {
  width: 54px;
  height: auto;
  aspect-ratio: 1;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .strategy-img {
    width: 14.39vw;
  }
}

.strategy-img img {
  width: 100%;
}

.financial-ttl {
  display: block;
  max-width: 415px;
  margin: 0 auto 27px;
  padding: 8px 15px;
  border-radius: 9999px;
  background-color: #DCE9F4;
  color: #1E295E;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .financial-ttl {
    max-width: 100%;
    margin-bottom: 7.19vw;
    padding: 2.13vw 4vw;
  }
}

.financial-ttl._non {
  background-color: #DEF1F1;
}

.financial-img {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .financial-img img {
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
  }
}

.historyTable tbody th {
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .operatingTable {
    width: 176vw !important;
  }
}

.operatingTable tbody tr th {
  border-left: 20px solid;
}
@media screen and (max-width: 768px) {
  .operatingTable tbody tr th {
    border-left-width: 5.33vw;
  }
}

.operatingTable tbody tr:nth-child(1) th {
  border-left-color: #1c2086;
}

.operatingTable tbody tr:nth-child(n+2) th {
  border-left-color: #2b8c8d;
}

.operatingTable tbody td {
  text-align: right;
}

.bg-gray {
  background-color: #e1e1e1;
}
