@charset "UTF-8";
/*-------------------------------------------------
Variable
--------------------------------------------------*/
/*---------- Basic ----------*/
/*---------- Color ----------*/
/*---------- font ----------*/
/*--------------------------------------------------
Mixin
--------------------------------------------------*/
/*---------- Responsive ----------*/
/*---------- アニメーション ----------*/
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*---------- 共通見出し ----------*/
/*---------- 共通ボタン ----------*/
/*---------- Icon ----------*/
/*--------------------------------------------------
Genesis Custom Blocks - 青背景ブロック
--------------------------------------------------*/
.my_squareBox {
  background-color: #1B5D97;
  padding: 30px 20px 20px;
  position: relative;
  color: #fff;
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}
.my_squareBox::before {
  content: "";
  width: 52px;
  height: 6px;
  background-color: #1F2127;
  display: block;
  position: absolute;
  inset: 0 auto auto 50%;
  transform: translateX(-50%);
}
.my_squareBox_ttl, .my_squareBox_txt {
  letter-spacing: 0.05em;
}
.my_squareBox_ttl {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 30px;
  text-align: center;
}
.my_squareBox_txt {
  font-size: 16px;
}

@media (min-width: 768px) {
  .my_squareBox {
    max-width: 290px;
  }
}
@media screen and (max-width: 767px) {
  .my_squareBox {
    width: 80vw;
  }
}
/*# sourceMappingURL=block.css.map */