@charset "UTF-8";
/*------------------------------------------------------------------
********************************************************************
 * ▼構成
 * ・ベースとなるCSS
 * ・スマホのみ（@media screen and (max-width: 767px) {} ）
********************************************************************
--------------------------------------------------------------------*/

/*--------------------------------------------------
**************************************************
  PC用
**************************************************
--------------------------------------------------*/
@media screen and (min-width: 768px) {
	
	
	.other_content {
		width:800px;
		max-width:90%;
		margin:30px auto 0;
	}
	.other_content h2 {
		font-size:21px;
		font-weight:700;
		margin-top:40px;
		padding-left:15px;
		border-left:5px solid #0e81b0;
	}
	.other_content p {
		margin-top:20px;
		font-size:16px;
		line-height:1.8em;
		word-break:break-word;
	}
	.other_content p a {
		color:#0f82af;
		text-decoration:underline;
	}
	.other_content table {
		margin-top:20px;
		width:100%;
		border-collapse:collapse;
	}
	.other_content table th {
		width:10em;
		padding:15px;
		border:1px solid #d0d0d0;
		font-size:14px;
		background:#fafafa;
	}
	.other_content table td {
		padding:15px;
		font-size:14px;
		border:1px solid #d0d0d0;
	}
	.other_content table td a {
		color:#0f82af;
		text-decoration:underline;
	}
	
	

}/* End PC */

/*--------------------------------------------------
**************************************************
  SP用
**************************************************
--------------------------------------------------*/
@media screen and (max-width: 767px) {
	
	
	.other_content {
		width:90%;
		margin:30px auto 0;
	}
	.other_content h2 {
		font-size:5vw;
		font-weight:700;
		margin-top:40px;
		padding-left:15px;
		border-left:5px solid #0e81b0;
	}
	.other_content p {
		margin-top:20px;
		font-size:3.8vw;
		line-height:1.8em;
		word-break:break-word;
	}
	.other_content p a {
		color:#0f82af;
		text-decoration:underline;
	}
	.other_content table {
		margin-top:20px;
		width:100%;
		border-collapse:collapse;
	}
	.other_content table th {
		width:6em;
		padding:8px;
		border:1px solid #d0d0d0;
		font-size:3.4vw;
		background:#fafafa;
	}
	.other_content table td {
		padding:8px;
		font-size:3.4vw;
		border:1px solid #d0d0d0;
	}
	.other_content table td a {
		color:#0f82af;
		text-decoration:underline;
	}
	
	

}/* End SP */
