#list ul
{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 40px; /* 横のスペース */
	row-gap: 40px; /* 縦のスペース */
	align-items: stretch; /* 子要素をセルの高さに合わせて引き伸ばす */
	margin: 0px;
	padding: 0px;
}

#list ul li
{
	margin: 0px;
	padding: 30px;
	list-style-type: none;
	border: 1px solid #b3b3b3;

	display: flex;
	gap: 20px;
	flex-direction: row-reverse;

	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;

}

#list ul li .photo
{
	flex-grow: 0;
	flex-shrink: 0;
	flex-basis: 46%;
	width: 46%;
}

#list ul li .photo img
{
	width: 100%;
	height:auto;
	object-fit: cover;
	aspect-ratio: 4 / 4;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;

}

#list ul li .text 
{
	flex-basis: 52%;
	width: 52%;
}

#list ul li .text  .head_title
{
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #b3b3b3;
	margin-bottom: 6px;
	padding-bottom: 10px;
}

#list ul li .text dl
{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: 10px; /* 横のスペース */
	row-gap: 10px; /* 縦のスペース */
	align-items: stretch;
	margin-top: 0px;
	padding-top: 10px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}

#list ul li .text dl dt
{
	margin: 0px;
	padding: 0px;
	text-align: center;
}

#list ul li p
{
	line-height: 1.4;
	margin: 0px;
}

#search
{
	background-image: url(../images/news_img_01.png);
	background-repeat: no-repeat;
	background-position: left center;
}

#legal h3
{
	font-size: 30px;
	line-height: 1;
	color: var(--point-color);
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #b3b3b3;
	font-weight: bold;
}

#legal  table
{
	width: 100%;
}

#legal  table th
{
	padding-top: 10px;
	padding-right: 20px;
	padding-bottom: 10px;
	vertical-align: middle;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #b3b3b3;
}

#legal  table th .legal_02,
#legal  table th .legal_03,
#legal  table th .legal_04,
#legal  table th .legal_05,
#legal  table th .legal_06
{
	font-size: 21px;
	line-height: 1;
}


#legal  table td
{
	padding-top: 10px;
	padding-bottom: 10px;
	vertical-align: middle;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #b3b3b3;
}

#legal  table td h4
{
	font-size: 20px;
	line-height: 1.2;
}

#legal  table td p
{
	margin: 0px;
}


/* PCのみ設定  768 以上*/
@media screen and (min-width:1200px)
{



}


@media (max-width: 1199px) 
{

#list ul
{
	column-gap: 20px; /* 横のスペース */
	row-gap: 20px; /* 縦のスペース */
}


#list ul li
{
	padding: 20px;
	gap: 10px;
}

#legal  table th .legal_02,
#legal  table th .legal_03,
#legal  table th .legal_04,
#legal  table th .legal_05,
#legal  table th .legal_06
{
	font-size: 16px;
	line-height: 1;
}


}

/* タブレットレイアウト : 768 px 〜 959 px */
@media screen and (min-width:768px) and (max-width:1199px)
{



}


/* スマホ設定  767 以下*/
@media screen and (max-width:767px)
{

#legal  table td h4
{
	font-size: 18px;
	line-height: 1.2;
}

}

/* スマホ設定  599 以下*/
@media screen and (max-width:599px)
{

#list ul
{
	grid-template-columns: repeat(1, 1fr);
	column-gap: 0px; /* 横のスペース */
	row-gap: 20px; /* 縦のスペース */
}

#list ul li
{

  display: block;
  gap: 0px;


}

#list ul li .photo
{
	flex-basis: auto;
	width: auto;
}

#list ul li .text
{
	flex-basis: auto;
	width: auto;
	margin-bottom: 20px;
}

#legal  table th
{
	display: block;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 10px;
	vertical-align: middle;
	border-bottom-style: none;
	text-align: center;
}


#legal  table th .legal_02,
#legal  table th .legal_03,
#legal  table th .legal_04,
#legal  table th .legal_05,
#legal  table th .legal_06
{
	font-size: 16px;
	line-height: 1;
	max-width: 200px;
	margin-right: auto;
	margin-left: auto;
}



#legal  table td
{
	display: block;
	padding-top: 0px;
	padding-bottom: 10px;
	vertical-align: top;
}



}
