
h1, h2, h3 {
  font-weight: bold;
  margin: 0;
}

ul {
  list-style: none;
  padding: 0;
}

.main-visual-area {
    max-width: 1200px;
    margin: 0 auto;
}

.page-wrapper{
	padding: 15% 10px 50px;
}
@media screen and (max-width: 768px){
	.page-wrapper{padding: 30% 10px 50px;
	
}
	}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 2rem;
  color: #1860ad; /* 文字色（画像の青に近い色） */
  position: relative;
  margin: 0px 0 8vw;
  letter-spacing: 0.2em; 
}

.section-title::before,
.section-title::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #1860ad; /* 横線の色（画像の薄青） */
  margin: 0 20px;
}

/* 通常は非表示 */
.br-mobile {
    display: none;
}

/* スマホサイズ（600px以下）の時だけ表示 */
@media screen and (max-width: 600px) {
    .br-mobile {
        display: inline;
    }
}