﻿@charset "UTF-8";
body{
  font-family: 'メイリオ', Meiryo, YuGothic,'Yu Gothic','Yu Gothic UI','ヒラギノ角ゴシック','Hiragino Sans','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3', sans-serif;
  font-feature-settings: "palt";
  min-width: 1600px;
}

table {
  border-collapse: collapse;
  width: 100%;
  table-layout: fixed;
}

tr:nth-child(7n) {
  border-bottom: 2px solid #808080;
}

th {
  font-weight: normal;
  text-align: center;
}

td {
  text-align: right;
}

th,td {
  padding: 5px;
  border: 1px solid #808080;
}

td[align="right"] {
  text-align: right;
}

thead th{
  color: #fff;
  line-height: 1.2;
}

thead th:nth-child(1) {
  width:300px;
}

thead th:nth-child(1),
thead th:nth-child(2){
  color: #000;
}

thead tr:nth-child(1) th:nth-child(3),
thead tr:nth-child(2) th:nth-child(2),
thead tr:nth-child(2) th:nth-child(3),
thead tr:nth-child(2) th:nth-child(4){
  background-color: #B694BB;
  color: #fff;
}

thead tr:nth-child(1) th:nth-child(4),
thead tr:nth-child(2) th:nth-child(5),
thead tr:nth-child(2) th:nth-child(6),
thead tr:nth-child(2) th:nth-child(7){
  background-color: #A7C52D;
}

thead tr:nth-child(1) th:nth-child(5),
thead tr:nth-child(2) th:nth-child(8),
thead tr:nth-child(2) th:nth-child(9),
thead tr:nth-child(2) th:nth-child(10){
  background-color: #F6A6A6;
}

thead tr:nth-child(1) th:nth-child(6),
thead tr:nth-child(2) th:nth-child(11),
thead tr:nth-child(2) th:nth-child(12),
thead tr:nth-child(2) th:nth-child(13){
  background-color: #4AB8C4;
}

thead tr:nth-child(1) th:nth-child(7),
thead tr:nth-child(2) th:nth-child(14),
thead tr:nth-child(2) th:nth-child(15),
thead tr:nth-child(2) th:nth-child(16){
  background-color: #E3AA31;
}

tbody td:nth-of-type(3n){
  color: #E9593E;
  font-weight: bold;
}

tbody td:nth-of-type(-n + 3) {
  background-color: #dedaea;
}

tbody td:nth-of-type(n + 4):nth-of-type(-n + 6) {
  background-color: #dfebac;
}

tbody td:nth-of-type(n + 7):nth-of-type(-n + 9) {
  background-color: #fdeaea;
}

tbody td:nth-of-type(n + 10):nth-of-type(-n + 12) {
  background-color: #d7f1f4;
}

tbody td:nth-of-type(n + 13):nth-of-type(-n + 15) {
  background-color: #f4deaf;
}
/* ==============
タブ
============== */
/*ベース*/
section.typeA{
	display: flex;
	flex-wrap: wrap;
}
section.typeA::after {
	content: '';
	width: 100%;
	height: 3px;
	order: -1;
	display: block;
	background: #2F9370;
}
section.typeA .tabLabel {	/* タブ */
	margin-right: 3px;
	padding: 3px 12px;
	flex: 1;
	order: -1;
	border-radius: 3px 3px 0 0;
	color: #444;
	background: #bbe3d5;
	transition: .5s ;
	cursor: pointer;
}
section.typeA .tabLabel:nth-last-of-type(1){ margin-right: 0; }
section.typeA input {		/* ラジオボタン非表示 */
	display: none;
}
section.typeA .content {	/* 本文 */
	width: 100%;
	height: 0;
	overflow: hidden;
	opacity: 0;
}
/*アクティブ設定*/
section.typeA input:checked + .tabLabel {
	color: #fff;
	background: #2F9370;
}
section.typeA input:checked + .tabLabel + .content {
	padding: 15px;
	height: auto;
	overflow: auto;
	box-shadow: 0 0 5px rgba(0,0,0,.2);
	transition: .5s opacity;
	opacity: 1;
}
