/* カスタマイズ用CSS */

/* 箇条書き（囲みアリ） */
.list-001 {
    list-style-type: disc;
    padding: 1em 1em 1em 2.5em;
    border: 2px solid #b4a983;
}

.list-001 li {
    padding: .3em .3em .3em 0;
}

.list-001 li::marker {
    color: #b4a983;
    font-size: 1.1em;
}


/* 何分で読めるか */
.time {
  background: #ededed;/*背景色*/
  padding: 0.5em;/*文字まわり（上下左右）の余白*/
  font-size: 12px;
  display: inline-block;
}


/* 2024/08/15 新しいh3 */
.heading19 {
	padding-bottom: 5px;
	margin-bottom: 15px;
	margin-top: 20px;
	font-size: 18px;
	background-image: repeating-linear-gradient(90deg, #b4a983 0, #b4a983 2px, rgba(0,0,0,0) 2px, rgba(0,0,0,0) 4px);
	background-size: 4px 4px;
	background-repeat: repeat-x;
	background-position: center bottom;
	display: inline-block;
    font-weight: bold;
}


/* 2024/08/15 h2 */
.heading100 {
padding: 1rem;
margin-top: 15px;
border-left: 6px double #b4a983;
text-align: justify;
font-weight: bold;
}


/* 2024/09/09 カスタム投稿用h2 */
.wp-block-heading {
padding: 1rem;
border-left: 6px double #b4a983;
margin-top: 15px;
text-align: justify;
font-weight: bold;
}




hr.style1{
  border-top: 1px solid #8c8b8b;
}

/* アコーディオン1 */
.accordion-003 {
    max-width: 900px;
    margin-bottom: 7px;
    border-bottom: 2px solid #d0d0d0;
}

.accordion-003 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em;
    color: #333333;
    font-weight: 600;
    cursor: pointer;
}

.accordion-003 summary::-webkit-details-marker {
    display: none;
}

.accordion-003 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #333333b3;
    border-right: 3px solid #333333b3;
    content: '';
    transition: transform .3s;
}

.accordion-003[open] summary::after {
    transform: rotate(225deg);
}

.accordion-003 p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 2em 1.5em;
    color: #333333;
    transition: transform .5s, opacity .5s;
}

.accordion-003[open] p {
    transform: none;
    opacity: 1;
}