.page_ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-bottom: 30px;
}
.page_ttl .ttl {
  display: inline-block;
  color: #75A5C2;
  font-size: 4.2rem;
  letter-spacing: 2px;
  line-height: 1;
  position: relative;
}
.page_ttl .ttl::before {
  content: "";
  display: block;
  width: 4px;
  height: 3.2rem;
  margin: auto;
  background: #BAD2E0;
  position: absolute;
  top: 0px;
  bottom: auto;
  left: -20px;
}
.page_ttl .ttl::after {
  content: "";
  display: block;
  width: 4px;
  height: 3.2rem;
  margin: auto;
  background: #BAD2E0;
  position: absolute;
  top: 0px;
  bottom: auto;
  right: -20px;
}

.sec_ttl {
  padding: 2px;
  margin-bottom: 20px;
  background: #004D86;
  color: #fff;
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
}
.sec_ttl.no-color {
  background: transparent;
  color: #0b1722;
}

section.store {
  padding: 60px 0;
  background: #E3EDF3;
}
section.store .bnr_list {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
section.store .bnr_list a {
  transition: opacity 0.2s;
}
section.store .bnr_list a:hover {
  opacity: 0.7;
}
section.store .cap {
  margin-top: 10px;
}

section.info {
  padding: 60px 0;
  background: #fff;
}
section.info .txts {
  text-align: center;
}
@media screen and (max-width: 740px) {
  .page_ttl {
    padding-top: 10px;
    padding-bottom: 20px;
  }
  .page_ttl .ttl {
    font-size: 3.2rem;
  }
  .page_ttl .ttl::before {
    height: 2.7rem;
  }
  .page_ttl .ttl::after {
    height: 2.7rem;
  }
  section.store .base_w {
    width: 84%;
  }
  section.store .bnr_list {
    grid-template-columns: repeat(2, 1fr);
  }
  section.info .txts {
    text-align: left;
  }
}