@charset "utf-8";

/* === title === */
@media screen and (min-width: 768px) {
  .tit-priod {
    font-size: calc((30 / 16 / 1.5 * 1rem));
  }
}
@media not all and (min-width: 768px){
  .tit-priod {
    font-size: calc((18 / 16 / 1.2 * 1rem));
  }
}

/* ========================================
 * 位置づけ
 * ======================================== */
#pyramid {
  height: 300px;
  width: 100%;
  background-color: #eee;
}

/* ========================================
 * 基本方針
 * ======================================== */
#basic-policy .flame01 {
  position: relative;
  border: 2px #840018 solid;
  border-radius: 6px;
  padding: 10px;
  display: grid;
  place-items: center;
}
#basic-policy .flame01 .title {
  position: absolute;
  top: -10px;
  color: #840018;
  line-height: 1.2em;
}
#basic-policy .flame01 .title h4 {
  background-color: #fff;
  padding: 0 10px;
  font-size: calc((18 / 16 * 1rem));
}
#basic-policy .policy {
  display: grid;
  grid-template-columns: 50% 50%;
}
#basic-policy .policy > div {
  padding: 10px;
}
#basic-policy .policy h5 {
  padding-left: 10px;
  font-size: calc((18 / 16 * 1rem));
}
#basic-policy .description {
  padding: 10px;
  background-color: #f9f9f9;
  border: 1px #ddd solid;
}
#basic-policy .description li:before {
  content: "■";
  color: #333;
  float: left;
}
#basic-policy .description li p {
  padding-left: 1.5em;
}
#basic-policy .p01 h5 {
  color: #0068b7;
}
#basic-policy .p02 h5 {
  color: #228c22;
}
#basic-policy .term {
  position: relative;
  padding: 5px 10px;
  font-weight: 500;
  color: #fff;
  text-align: center;
}
#basic-policy .term::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.7),
    rgba(255, 255, 255, 0)
  );
}
#basic-policy .p01 .term {
  background: linear-gradient(
    to bottom,
    rgba(0, 104, 183, 1),
    rgba(0, 56, 140, 1)
  );
  border: 1px solid rgba(0, 56, 140, 1);
}
#basic-policy .p02 .term {
  background: linear-gradient(
    to bottom,
    rgba(0, 183, 104, 1),
    rgba(0, 140, 56, 1)
  );
  border: 1px solid rgba(0, 140, 56, 1);
}
@media not all and (min-width: 768px){
  #basic-policy .policy {
    grid-template-columns: 100%;
  }
  #basic-policy .flame01 .title h4 {
    font-size: calc((13 / 16 * 1rem));
  }
  #basic-policy .policy h5 {
    font-size: calc((13 / 16 * 1rem));
  }
}

/* ========================================
 * 中期経営計画
 * ======================================== */
#mcp1_3 .grid-table {
  display: grid;
  grid-template-columns: 20% 80%;
  gap: 10px;
  padding: 10px 0;
}
#mcp1_3 .grid-table .term {
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f9f9f9;
  box-shadow: 5px 5px 2px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
}
#mcp1_3 .grid-table .term p {
  text-align: center;
}
#mcp1_3 .grid-table .description {
  background-color: #fff;
  padding: 8px;
}
.description.mid-term {
  display: grid;
  grid-template-columns: calc(50% - 10px) calc(50% - 10px);
  gap: 10px;
}
.text-term-blue, .text-term-green {
  font-weight: bold;
  text-align: center;
  line-height: normal;
  padding: 8px 0;
  border-radius: 8px;
}
.text-term-blue {
  color: #0068b7;
  border: 1px rgba(199, 232, 250, 1) solid;
  background: linear-gradient(
    to bottom, 
    rgba(255, 255, 255, 0.8) 0%, 
    rgba(199, 232, 250, 1) 100%
  );
}
.text-term-green {
  color: rgba(0, 140, 56, 1);
  border: 1px rgba(204, 250, 204, 1) solid;
  background: linear-gradient(
    to bottom, 
    rgba(255, 255, 255, 0.8) 0%, 
    rgba(204, 250, 204, 1) 100%
  );
}
@media not all and (min-width: 768px){
  #mcp1_3 .grid-table {
    grid-template-columns: 35% 65%;
  }
  .description.mid-term {
    grid-template-columns: 100%;
  }
}
#mcp1_3 .target {
  display: inline-block;
  width: calc(20% - 6px);
  height: 140px;
  font-weight: 500;
  text-align: center;
}
#mcp1_3 .target .metrics {
  display: grid;
  place-items: center;
  background-color: #C0504E;
  color: #fff;
  font-weight: 500;
  height: 60%;
  line-height: normal;
  margin-bottom: 5px;
}
#mcp1_3 .target .value {
  display: grid;
  place-items: center;
  background-color: #fdf0f0;
  height: calc(40% - 5px);
}
@media not all and (min-width: 768px){
  #mcp1_3 .target {
    display: grid;
    grid-template-columns: 60% 40%;
    width: auto;
    height: 60px;
    margin-bottom: 5px;
  }
  #mcp1_3 .target .metrics, #mcp1_3 .target .value {
    height: auto;
    margin-right: 5px;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  #process {
    margin-top: -15px;
  }
}
#process .note {
  font-size: 0.8rem;
}


/* ========================================
 * マージン設定
 * ======================================== */
.mt00 {
  margin-top: 0px !important;
}
.mt05 {
  margin-top: 5px !important;
}
.mt10 {
  margin-top: 10px !important;
}
.mt15 {
  margin-top: 15px !important;
}
.mb05 {
  margin-bottom: 10px !important;
}
.mb10 {
  margin-bottom: 10px !important;
}
.mb20 {
  margin-bottom: 20px !important;
}
.ml10 {
  margin-left: 15px !important;
}

/* === .fBox (flexBox) === */
@media screen and (min-width: 768px){
  .fBox {
    display: -webkit-box;
    display: flex;
  }
}

/* === #relation === */
#relation .head__line__relation {
  font-weight: 700;
  font-size: calc((18 / 16 * 1rem));
  letter-spacing: 0.1em;
  line-height: 1.3;
  position: relative;
  margin-bottom: 15px;
  padding: 5px;
  padding-left: 20px;
}
#relation .head__line__relation::before {
  content: "";
  background-color: #871c25;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  top: 0;
  height: 50%;
  width: 1px;
}
#relation .head__line__relation::after {
  content: "";
  background-color: #a3898f;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  top: 0;
  height: 50%;
  width: 1px;
  top: 50%;
}
@media (min-width: 768px) {
  #relation .head__line__relation {
    font-size: calc((30 / 16 * 1rem));
    padding-bottom: 10px;
    margin-bottom: 38px;
    padding-top: 10px;
  }
  #relation .head__line__relation::before,
  #relation .head__line__relation::after {
    width: 2px;
  }
}
#relation .btnBox a.btnBlank {
  border: 1px solid #d1d1d1;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  transition: all 0.3s ease;
}
#relation .btnBox a.btnBlank::after {
  content: "";
  display: block;
  background-image: url(/assets/img/common/icn_blank.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  border: none;
  transform: none;
  position: unset;
  margin-left: 8px;
}
#relation .btnBox a.btnBlank:link,
#relation .btnBox a.btnBlank:visited {
  color: #000;
}
@media screen and (min-width: 768px){
  #relation .fBox {
    flex-wrap: wrap;
  }
  #relation .btnBox {
    width: calc((100% - 24px)/ 3);
    margin-left: 12px;
  }
  #relation .btnBox:nth-child(3n+1) {
    margin-left: 0;
  }
  #relation .btnBox:first-child {
    margin-left: 0;
  }
  #relation .btnBox:nth-child(n+4) {
    margin-top: 12px;
  }
  #relation .btnBox a {
    width: 100%;
  }
  #relation .btnBox {
    width: calc((100% - 24px) / 3);
  }
  #relation .btnBox a.btnBlank {
    height: 60px;
    padding: 0;
  }
  #relation .btnBox a.btnBlank:hover {
    color: #7e0017;
    opacity: 0.7;
  }
}
@media not all and (min-width: 768px){
  #relation .btnBox {
    margin-top: 8px;
  }
  #relation .btnBox:first-child {
    margin-top: 0;
  }
  #relation .btnBox a.btnBlank {
    padding: 8px;
  }
  #relation .btnBox a.btnBlank:active {
    color: #7e0017;
    opacity: 0.7;
  }
}

/* li */
.link__list01 li {
  font-size: calc(18 / 16 * 1rem);
  line-height: normal;
  /* border-bottom: 2px #ddd dotted; */
  padding-bottom: 4px;
  width: fit-content;
}
.file-icon {
  float: right;
  margin-left: 15px;
}
@media not all and (min-width: 768px){
  .link__list01 li {
    font-size: 1rem;
    line-height: 1;
  }
  .file-icon {
    height: 18px;
    width: auto;
  }
}