/* ------------------------------------------- */
/* 2025.08
/* 目次をアコーディオン化
/* 追従ボタンを追加
/* ------------------------------------------- */

.article_wrapper {
	max-width: 960px;
	margin: 30px auto 0;
}

/* 
目次アコーディオン化
------------------------------------------- */
.heading_container.accordion_container {
	padding-left: 60px;
	border-left: 1px solid #c6c6c6;
	margin-left: 2em;
}
@media screen and (max-width: 480px) {
	.heading_container.accordion_container {
		padding-left: 0;
		border-left: none;
	}
}
/*
アコーディオン
no-toggle クラスが付いたタイトルはクリックしても開閉しません（矢印なし）。
accordion-title に open クラスがあると初期状態で開いています。
開閉はdetail_add.jsでコントロールしています。
*/
.accordion {
	width: 100%;
	margin: auto;
	font-size:16px;
}
@media screen and (max-width: 480px) {
	.accordion {
		font-size:15px;
	}
}
.accordion-item {
	margin-bottom: 10px;
}
.accordion-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: default;
	margin-bottom:18px;
	width:530px;
}
@media screen and (max-width: 768px) {
.accordion-header {
		width:auto;
		max-width:530px;
	}
}
.accordion-title {
	position: relative;
	padding:0;
	margin-right: 25px;
}
.toggle-button {
	background: none;
	border: none;
	color: #d6004b;
	font-size: 16px;
	cursor: pointer;
	padding: 0 5px;
	transition: opacity 0.3s ease;
}
.toggle-button:hover {
	opacity: 0.7;
}
.toggle-button:focus {
	outline: none;
}
.accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	padding-left: 1em;
}
.accordion-content.open {
	max-height: 1000px;
}
.accordion-content p{
	position: relative;
	margin-right:25px;
}
/*中黒大*/
.accordion-title:before{
	content: "";
	width: 5px;
	height: 5px;
	background-color: #000;
	border-radius:100%;
	position: absolute;
	top:0.75em;
	left:-15px;
}
@media screen and (max-width: 480px) {
	.accordion-title:before{
		top:0.5em;
	}
}
/*中黒小*/
.accordion-content p:before{
	content: "•";
	position: absolute;
	left:-15px;
}


/*追従ボタン
------------------------------------------- */

/*etc/designs/nttcom/cmn/css/style.css で非表示になっていたのを再表示*/
@media screen and (max-width: 481px) {
	.ContactUsButtonHQJp {
	display: block;
	}
}

/*サイズ調整*/
.contactUsButton a {
	/*padding: 12px 25px 12px 15px;*/
	padding: 10px 25px 10px 15px;
	line-height:1.2;
	min-width:246px;
}

/*2行以上になった時＞が上下中央に*/
.contactUsButton a::after {
	top: 0;
	bottom: 0;
	margin: auto;
}