body{
    background-color: rgba(246, 187, 198, 0.3);
    font-size: 12pt;
    margin: 0;
}

/*ヘッダーの設定*/
header{
    height: 60px;
    background-color: rgb(105, 38, 52);
    text-align: center;
    font-size: 15pt;
    color: white;
}

.header-text{
    margin: 0 auto;
    height: 50px;
    width: 450px;
}

.header-text img{
    width: 100%;
}

.text{
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    color: rgb(105, 38, 52);
}

.index{
    margin-top: 50px;
}


h3{
    color: rgb(105, 38, 52); /* 文字色 */
	padding: 5px 5px 5px 30px; /* 上・右・下・左の余白 */
	position: relative;

}
h3::before{
    background-color: rgb(105, 38, 52); /* 左側の線の色 */
	border-radius: 5px;
	content: '';
	position: absolute;
	top: 0;
	left: 3px; /* 左端からの位置 */
	width: 5px; /* 左側の線の幅 */
	height: 100%;
}
h3::after{
    background-color: rgb(206, 81, 106); /* 右側の線の色 */
	border-radius: 5px;
	content: '';
	position: absolute;
	top: 0;
	left: 12px; /* 左端からの位置 */
	width: 5px; /* 右側の線の幅 */
	height: 100%;
}

.text p{
    text-align: justify;
    line-height: 1.7;
}

.back-btn a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 10px 20px;
    width: 100px;
    height: 30px;
    border-radius: 40px;
    color: rgb(105, 38, 52);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid rgb(105, 38, 52);
}
  
.back-btn a::after {
    content: '';
    width: 5px;
    height: 5px;
    border-top: 3px solid rgb(105, 38, 52);
    border-right: 3px solid rgb(105, 38, 52);
    transform: rotate(45deg);
}
  
.back-btn a:hover {
    color: white;
    text-decoration: none;
    background-color: rgb(105, 38, 52);
}
  
.back-btn a:hover::after {
    border-top: 3px solid white;
    border-right: 3px solid white;
}