@charset "utf-8";
/* -bg 
-------------------------*/
.container.-bg {
  background: #f6f7f9;
}
.container.-bg_01 {
  background: #00003e;
  background-size: cover;
  height: 100%;
  background-attachment: fixed;
  background-position: center center;
}
/* -bg_01
-------------------------*/
.-bg_01 {
  color: #00003e;
}
.-bg_01 ul {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  display: flex;
  flex-wrap: wrap;
}
.-bg_01 ul li {
  width: 33%;
}
.-bg_01 ul li:not(:last-child) {
  border-right: 1px solid #00003e;
}
.-bg_01 ul li p {
  text-align: center;
}
.-bg_01 ul li .ttl {
  border-bottom: 1px solid #00003e;
  font-size: 16px;
  font-weight: bold;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
}
.-bg_01 ul li .txt {
  font-family: var(--fontJost);
  font-weight: bold;
  font-size: 40px;
  line-height: 1.2;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/*--------------------------------------------------------------
   SP
--------------------------------------------------------------*/
@media only screen and (max-width: 1023px) {
  /* -bg_01
	-------------------------*/
  .-bg_01 ul {
    display: block;
  }
  .-bg_01 ul li {
    width: 100%;
  }
  .-bg_01 ul li:not(:last-child) {
    border-right: none;
    margin-bottom: 30px;
  }
  .-bg_01 ul li .txt {
    font-size: 35px;
    height: auto;
  }
  .-bg_01 ul li:nth-child(n+2) .ttl {
    min-height: auto;
    padding-bottom: 10px;
  }
}