﻿@charset "utf-8";
/* index.css */
/*PC first*/
/*##### PC #####*/
	
/*-----contents-----*/
.org_box{
	width:840px;
	margin:0 auto;
}

	.org_box table{
		margin-bottom:20px;
		width:100%;
	}
	.org_box table thead th{
		text-align:center;
		background:#e6e6e6;
		border:1px solid #ccc;
		padding:5px;
		line-height:1.5em;
	}
	.org_box table tbody td{
		border:1px solid #ccc;
		padding:15px;
		line-height:1.5em;
	}
	.org_box table tbody td:nth-child(1){
		width:7em;
	}
	.org_box table tbody td:nth-child(2){
		width:280px;
	}
	

@media screen and (max-width:480px){
/*##### SP #####*/
	.org_box{
		width:100%;
		box-sizing:border-box;
		padding:0 3vw;
	}
	
	.org_box table tbody td{
		padding:2vw;
	}
	
	.org_box table tbody td:nth-child(2){
		width:30%;
	}
	

}