.section-title-h2 {
  margin: 0 0 20px;
  padding: 15px 0 15px 15px;
  font-size: 1.5em;
  border-top: 2px 
  border-bottom: 2px 
}
/*ベース*/
.toggle {
	display: none;
}
.Label {		/*タイトル*/
	padding: 1em;
	display: block;
	color: #fff;
	background:#FF8393;
    border-radius: 10px;
}
.Label::before{		/*タイトル横の矢印*/
	content:"";
	width: 6px;
	height: 6px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	position: absolute;
	top:calc( 50% - 3px );
	right: 20px;
	transform: rotate(135deg);
}
.Label,
.content {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
}
.content {		/*本文*/
	height: 0;
	margin-bottom:10px;
	padding:0 20px;
	overflow: hidden;
}
.toggle:checked + .Label + .content {	/*開閉時*/
	height: auto;
	padding:20px ;
	transition: all .3s;
}
.toggle:checked + .Label::before {
	transform: rotate(-45deg) !important;
}


.toggle02 {
	display: none;
}
.Label02 {		/*タイトル*/
	padding: 0.6em;
	display: block;
	color: #fff;
	background:#79B5FF;
    border-radius: 10px;
}
.Label02::before{		/*タイトル横の矢印*/
	content:"";
	width: 6px;
	height: 6px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	position: absolute;
	top:calc( 50% - 3px );
	right: 20px;
	transform: rotate(135deg);
}
.Label02,
.content02 {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
}
.content02 {		/*本文*/
	height: 0;
	margin-bottom:10px;
	padding:0 20px;
	overflow: hidden;
}
.toggle02:checked + .Label02 + .content02 {	/*開閉時*/
	height: auto;
	padding:20px ;
	transition: all .3s;
}
.toggle02:checked + .Label02::before {
	transform: rotate(-45deg) !important;
}
/*検索注目キーワード*/
.kenbox {
    margin: 2em 0;
    background: #f1f1f1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.22);
    border-radius: 5px;
}
.kenbox .box-title {
    font-size: 1.7em;
    background: #5fc2f5;
    padding: 4px;
    text-align: center;
    color: #FFF;
    font-weight: bold;
    letter-spacing: 0.05em;
    border-radius: 5px;
}
.kenbox p {
    padding: 15px 20px;
    margin: 0;
}
/*  追記　*/
.accordion{
  margin-top:20px;
  padding:5px 5px;
  background:#fff; 
}
.accordion-item {
  --item-color:#FF8393;
	box-shadow: inset 0 0 3px 1px var(--item-color);
	border-radius: 10px;
	margin-bottom: 24px;
}
.accordion-item.blue {
	--item-color: #79B5FF;
	margin-left: 16px;
	margin-right:16px;
}
.accordion-item__name {
	display: grid;
	grid-template-columns: 1fr 20px;
	justify-content: space-between;
  font-size: clamp(15px,1vw + 2px,18px);
	font-weight: 700;
	line-height: 1.5;
	color: #fff;
	padding: 1em;
	background:  var(--item-color);
	border-radius: 10px;
	list-style: none;
  cursor: pointer;
	transition: .3s;
}

.accordion-item.blue .accordion-item__name{
  padding: .6em
}
details > summary::-webkit-details-marker {
  display: none;
}
.accordion-item__icon {
	width: 20px;
	height: 20px;
	fill: currentColor;
  transition:rotate .3s
}
.accordion-item[open] > summary {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}
.accordion-item[open] >summary .accordion-item__icon{
  rotate:180deg;
}
.accordion-item__content {
/*	font-size: 13px; */
	padding: 1em;
}
.accordion figure {
	margin: 24px 0 40px;
}
#haisousouryou p{
  margin-bottom:1.5em
}
.toi-links {
	display: grid;
	--column: 2;
	grid-template-columns: repeat( var(--column), 1fr);
	margin: 20px 0;
	padding: 0;
	gap: 2em 8px;
	list-style: none;
	justify-content: space-between;
	max-width: 540px;
}
@media(min-width:768px){
  .toi-links{
    --column:3;
  }
}
.toi-links li a {
	display: flex;
	flex-direction: column;
	font-size: 12px;
	justify-content: end;
	align-items: center;
}

.kenbox-keywords {
	display: flex;
	flex-wrap: wrap;
	column-gap: 4px;
	row-gap: 8px;
	padding: 16px 12px;
	margin: 0;
  list-style:none
}
.kenbox-keywords > li{
  font-size:14px;
  font-weight: 700;
}
.kenbox-keywords > li:not(:last-child)::after {
	content: "/";
}

