@charset "UTF-8";
/* CSS Document */

/*--------------------------------------------------------
　基本設定
--------------------------------------------------------*/

ul {
	list-style: none;
}

div.block div.box p.text_right {
    text-align: right;
}

div.block a.border {
	margin-top: 20px;
}

/*--------------------------------------------------------
　PC
--------------------------------------------------------*/

@media print, screen and (min-width: 600px){
	
	dl {
		width: 936px;
		margin: 0 auto;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		font-size: 14px;
        font-size: 1.4rem;
		line-height: 1.8;
		padding-bottom: 20px;
	}
	
	dl dt{
		width: 21.5%;
		border-bottom: 1px solid #000;
		padding: 8px 0;
	}
	
	dl dd{
		width: 78.5%;
		border-bottom: 1px solid #000;
		padding: 8px 0;
	}
	
}

/*--------------------------------------------------------
　SP
--------------------------------------------------------*/

@media screen and (max-width: 599px){
	
	
	dl {
		width: 100%;
		padding-bottom: 20px;
	}
	
	dl dt{
		width: 100%;
		font-size: 14px;
		font-size: clamp(13px, 3.7vw, 14px);
		font-weight: 700;
		line-height: 1.8;
		padding: 8px 0 0;
	}
	
	dl dd{
		width: 100%;
		font-size: 14px;
		font-size: clamp(13px, 3.7vw, 14px);
		line-height: 1.8;
		border-bottom: 1px solid #000;
		padding: 3px 0 8px;
	}
	
	dl dd a{
		color: #000;
		text-decoration: underline;
	}
	
}
