.article-content {
    margin-bottom: 2rem;
	margin-top: 2rem;
}
.article-content h3 {
    font-size: 2.5rem;
	font-weight: bold;
    color: #575757;
    margin: 2.5rem 0 1.8rem;
    padding: 0 1rem;
    letter-spacing: 1px;
    border-left: solid 7px #415671;
    background: transparent;
}
.article-content h4 {
    font-size: 1.8rem;
	font-weight: bold;
    color: #575757;
    padding: 0 1rem;
	margin: 2.5rem 0 1.8rem;
    background: transparent;
}
.article-content p
 {
    font-size: 1.5rem;
    line-height: 1.7;
    letter-spacing: 1px;
    margin-bottom: 2rem;
	display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    unicode-bidi: isolate;
}
li.indent{
	padding-left: 4em;
	text-indent: -1em;
	margin-bottom: 1rem;
}

.button-001 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 250px;
    margin:0 auto;
	margin-top: 50px;
    padding: .9em 2em;
    overflow: hidden;
    border: 1px solid #ffb638;
    border-radius: 25px;
    background-color: #fff;
    color: #ffb638;
    font-size: 1em;
}

.button-001:hover {
    background-color: transparent;
    color: #fff;
}

.button-001::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 0;
    height: 100%;
    background-color: #ffb638;
    content: '';
    transition: width .3s ease;
}

.button-001:hover::before {
    width: 100%;
}

.button-001::after {
    transform: rotate(45deg);
    width: 5px;
    height: 5px;
    margin-left: 10px;
    border-top: 2px solid #ffb638;
    border-right: 2px solid #ffb638;
    content: '';
}

.button-001:hover::after {
    border-color: #fff;
}

@media screen and (max-width:768px) { 
    /*　画面サイズが768pxまではここを読み込む　*/
	.list{
		font-size: 1.3rem;
	}
}