@charset "utf-8";
/* Simple Custom CSS */


/************* アコーディオンの定義 *************/

/* アコーディオン展開用のボタン */

summary.open_btn {
    display: block;
	  width: 90%;
    margin: 1.0em auto;
    padding: 0.5em;
    text-align: center;
    color: #e34b6a;/*** ピンク系 ***/
    border: 4px solid #e34b6a;/*** ピンク系***/
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
}
/* アコーディオンの中身表示エリア */
details[open] {
	  background: #fafafa;
    margin: 0;
    padding: 0;
}
/************* 等分ボックスの定義 *************/

.toubun {
    display: flex;
    justify-content: center;
    margin: 1.0em auto;
    padding: 0;
}
.toubun div:not([class]) {
    width: 100%;
    margin: 1px;
    padding: 0;
    border: none;
}
/************* 戻るボタンの定義 *************/
.back_btn {
	margin: 10px;
	text-align: right;
}
.back_btn a {
	display: inline-block;
	padding: 5px;
	border: 2px solid #dad9d9;/*** 枠の色：グレー系推奨 ***/
	color: #dad9d9;/*** 文字の色：グレー系推奨 ***/
	text-align: center;
	font-size: 0.75em;
	font-weight: bold;
	border-radius: 5px;
	text-decoration: none;
}
.back_btn a:hover {
	display: inline-block;
	text-decoration: none;
	color: #ffffff;
	background: #dad9d9;
}


/************* 自作ボックス各種 *************/

/* ナビゲーション用スクエアボックスの定義（画像も入れられる） */

#wrapper ul.align_box {
    display: flex;
    width: 100%;
    justify-content: left;
    flex-wrap: wrap;
    margin: 1.0em auto;
    padding: 0;
    list-style: none;
}
#wrapper ul.align_box li.left_boxes {
    display: flex;
    margin: 1px;
    padding: 0;
    width: calc((100% - 10px ) / 3);/* 三等分幅まで */
    min-height: 4em;/* 最低限の高さを定義 */
    align-self: stretch;/* 要素の高さを高いものにそろえる */
    background: #ffecef;
}
#wrapper ul.align_box li.left_boxes a {
    display: block;
    width: 100%;
}
#wrapper ul.align_box li.left_boxes a:hover {
    display: block;
    background: #ffc0cb;
}
/* 見出し付きボックス全体の定義 */
.kajo, .kajo-half, .num {
    position: relative;
    margin: 1.0em 0;
    padding: 0;
    background: #ffffff; /* ボックス背景色*/
    border: 2px solid #e34b6a; /* ボックス枠の定義 */
    border-radius: 8px; /* ボックスの角丸 */
}
/* 左肩ラベル付きボックス(特徴まとめ)全体の定義 */
/* いちばん外側のボックス（中に.box_titleと.free-inboxを含む */
.label_box {
    position: relative;
    margin: 1.5em 0.25em;
    padding-bottom: 0;
    background: #fffcdb;
    border: 2px solid #de9e5e;
    border-radius: 8px;
}
/* リスト本体が入るボックス */
#wrapper .free-inbox {/*テーマ内セレクタの設定を上書き*/
    margin: 2.0em 0 0 0;
    padding: 0;
}
/*** 自作ボックス内の見出しの定義 ***/

/* ボックス内の見出しの定義 */
.kajo .box_title, .kajo-half .box_title, .num .box_title {
    background: #e34b6a; /* 見出し背景色*/
    color: #ffffff;/*見出しテキストカラー*/
    text-align: center; /* 文字のセンタリング*/
    font-size: 1.0em;
    font-weight: bold;
    padding: 4px;
    letter-spacing: 0.03em;
}
/* 左肩ラベルボックスの見出しの定義 */
.label_box .box_title {
    position: absolute;
    display: inline-block;
    padding: 0 9px;
    vertical-align: middle;
    background: #de9e5e;/* 見出し背景色*/
    color: #ffffff;/* 見出し文字色*/
    font-weight: bold;
}
/*** ボックス内の要素 ***/

/* ボックス内のリストの定義 */
#wrapper .kajo ul,/*テーマ内セレクタの設定を上書き*/ #wrapper .free-inbox ul {
    padding: 0em 0.25em 0.25em 1.0em;
    margin: 1.0em 0 5px 0;
}
/*ボックス内の平文の配置*/
.kajo p, .num p, .free-inbox p {
    margin: 1.0em 1.0em 0.5em 1.0em;
}
/*箇条書きリストの配置*/
#wrapper .kajo ul li,/*テーマ内セレクタの設定を上書き*/ #wrapper .free-inbox ul li {
    list-style-type: none;/*ポチ消す*/
    line-height: 1.5em; /*文の行高*/
    margin: 0 0 1.0em 0;
    padding: 0 0.25em 0 1.0em;
}
/*チェックマークの配置とデザイン*/
#wrapper .kajo ul li:before, #wrapper .free-inbox ul li:before {
    font-family: FontAwesome;
    content: "\f00c";
    position: absolute;
    left : 0.5em; /*リスト本文とチェックマークの余白*/
    color: #e34b6a; /*チェックマークの色*/
}
/**** 箇条書き2列リスト専用の定義 ****/
#wrapper .kajo-half ul {
    width: 100%;
    padding: 0em 0.25em 0.25em 0.75em;
    margin: 1.0em 0 5px 0;
}
/* クリアフィックス */
#wrapper .kajo-half ul:after {
    content: "";
    clear: both;
    display: block;
}
#wrapper .kajo-half ul li {
    display: block;
    float: left;
    width: calc( (100% - 4em) / 2 );
    margin: 0 0.25em 1.0em 0;
    padding: 0 0 0 1.4em;
	list-style-type: none;/*ポチ消す*/
    line-height: 1.5em; /*文の行高*/
	text-indent: -1.4em;
}
#wrapper .kajo-half ul li:before {
    font-family: FontAwesome;
    content: "\f00c";
    padding-right: 0.5em; /*リスト本文とチェックマークの余白*/
    color: #e34b6a; /*チェックマークの色*/
}

/**** 番号付きリストのナンバリングのデザイン ****/

#wrapper .num ol {/*テーマ内セレクタの設定を上書き*/
    counter-reset: number; /*数字をリセット*/
    list-style-type: none; /*数字を一旦消す*/
    padding: 0em 0.25em 0.25em 1.0em;
    margin-bottom: 5px;
}
#wrapper .num ol li {
    position: relative;
    line-height: 1.5em;
    margin: 1.0em 0.25em 1.0em 0.75em;
    padding: 0 0.25em 0 0.5em;
}
#wrapper .num ol li:last-child {/*テーマ内セレクタの設定を上書き*/
    padding-bottom: 5px;
}
#wrapper .num ol li:before {
    /* 以下数字をつける */
    position: absolute;
    counter-increment: number;
    content: counter(number);
    /*以下数字のデザイン変える*/
    display: inline-block;
    background: #e34b6a;
    color: #ffffff;
    font-family: 'Avenir', 'Arial Black', 'Arial', sans-serif;
    font-weight: bold;
    font-size: 15px;
    border-radius: 50%;
    left: -1.25em;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    /*以下 上下中央寄せのため*/
    top: 0%;
    -moz-transform: translateY(-0%);
    -webkit-transform: translateY(-0%);
    -o-transform: translateY(-0%);
    -ms-transform: translateY(-0%);
    transform: translateY(-0%);
}
/* 文中コラムボックスの定義 */
/* ボックス全体の定義 */
.column_box {
    position: relative;
    margin: 1.5em 0.5em;
    padding: 1.0em;
    background: #f9f9f9; /* ボックス背景色*/
    border: 2px solid #e9eaeb; /* ボックス枠の定義*/
    border-radius: 10px;
}
/* コラムの見出しボックス */
.column_box .box_title {
    color: #444444; /* 見出し文字カラー */
    background: #f9f9f9; /* 見出し背景色*/
    text-align: center; /* タイトルをセンタリングするとき*/
    font-size: 1.0em;
    font-weight: bold;
    margin-bottom: 1.0em;
    letter-spacing: 0.03em;
}
/* 見出し文字（オーサムフォントを含まない部分） */
.column_box .column_title {
    padding-left: 0.6em; /* タイトルの左にアイコンを挿入するための空白 */
}
/************* 情報テーブル *************/

.table_center,/* 見出し中央寄せテーブル */ .table_left /* 見出し左寄せテーブル */ {
    width: 100%;
    margin: 10px 0;
    padding: 0;
    border-collapse: collapse;/* セルの間に隙間を空けない */
    border: 1px solid #000000;/* テーブルの枠線 */
}
/* 両テーブル共通の設定 */
.table_center th, .table_left th {
    background: #f19eaf;/* 見出しセルの背景色 */
    color: #ffffff;/* 見出しセルの文字色 */
    white-space: nowrap;/* 見出しセルのテキスト改行禁止 */
    width: 1px;/* 見出しセルの幅をテキストの長さに合わせるための設定 */
    padding: 5px 10px;/* セル内 上下 左右の隙間 */
}
.table_center td, .table_left td {
    text-align: left;
    color: #000000;
    padding: 5px 10px;/* セル内 上下 左右の隙間 */
}
/* 両テーブルの見出し設定 */
.table_center th {/* 見出しテキスト中央寄せ */
    text-align: center;
}
.table_left th {/* 見出しテキスト左寄せ */
    text-align: left;
}
/* キャプションの設定 */
caption.kihon {
    caption-side: top;/* キャプションはテーブルの上に表示 */
    text-align: left;/* キャプションの文字は左寄せ */
    color: #f19eaf;/* キャプションの文字色 */
    font-weight: bold;/* キャプションは太字で */
}
/************* 大量並列量産ボックスのデザイン *************/

/* 大量並列ボックス外側の定義 */
.boxes_wrapper {
    margin: 5px 10px;
    border: 2px solid #e34b6a;/* ボックス外側の枠線 */
}
/* 大量並列ボックス内の見出しの定義 */
#wrapper #content h3.boxes_h3 { /*（テーマのh3設定に優先設定）*/
    margin: 0;
    padding: 0.6em 0.5em;
    color: #ffffff;
    font-weight: bold;
    background: linear-gradient(to bottom, #ffc0cb, #e34b6a );/* グラデーションの上→下の定義 */
    background: -webkit-linear-gradient(top, #ffc0cb, #e34b6a );/* グラデーションの上→下の定義 */
    background: -moz-linear-gradient(top, #ffc0cb, #e34b6a );/* グラデーションの上→下の定義 */
}
#wrapper #content h3.boxes_h3:after {
    display: none;
}
/* 大量並列ボックス外側の定義 */
.boxes_contents_box {
    margin: 10px;/* コンテンツと外側ボックスの隙間 */
}
/* 大量並列ボックス内のアイキャッチ画像 */
.boxes_main_img {
    width: 100%;
    margin: 10px 0;
    text-align: center;/* 画像のセンタリング */
}
/* 大量並列コンテンツ本文用のボックス */
.boxes_main_textarea {
    width: 100%;
    margin: 10px 0;

    padding: 0;
}
/* 大量並列コンテンツその他情報用のボックス */
.boxes_extra_info {
    width: 100%;
    margin: 5px 0;
    padding: 0;
}
/*** 該当・非該当ボタンのデザイン ***/

/* ボックス内のボタン整列 */
.btn_box {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
}
#wrapper #content ul.cate_4btn, #wrapper #content ul.cate_2btn {/* テーマの設定を上書き */
    display: table;
    position: relative;
    width: 100%;
    list-style-type: none;
    margin: 0;
    padding: 0;
}
/* ボタンの背景色 */
li.pickup_btn {
    background: #f19eaf;
}/* 該当ボタンの背景色 */
li.no-pickup_btn {
    background: #e3e3e3;
}/* 非該当ボタンの背景色 */
/* ボタンの基本形状 */
#wrapper #content .boxes_wrapper .cate_4btn li.pickup_btn, #wrapper #content .boxes_wrapper .cate_4btn li.no-pickup_btn, #wrapper #content .boxes_wrapper .cate_2btn li.pickup_btn, #wrapper #content .boxes_wrapper .cate_2btn li.no-pickup_btn {/* テーマの設定を上書き */
    display: table-cell;
    padding: 4px;
    border: 2px solid #ffffff;
    border-radius: 4px;
    color: #ffffff;
    font-size: 80%;
    line-height: 2.0em;
    font-weight: bold;
    text-align: center;
}
#wrapper #content .cate_4btn li:last-child, #wrapper #content .cate_2btn li:last-child {/* テーマの設定を上書き */
    padding-bottom: 4px;
}
/* ボタンの幅設定 */
.cate_4btn li.pickup_btn, .cate_4btn li.no-pickup_btn {
    width : 25%; /* 未対応ブラウザ用フォールバック */
    width : -webkit-calc(100% / 4);
    width : calc(100% / 4);
}
.cate_2btn li.pickup_btn, .cate_2btn li.no-pickup_btn {
    width : 50%; /* 未対応ブラウザ用フォールバック */
    width : -webkit-calc(100% / 2);
    width : calc(100% / 2);
}
/************* CV用ランキングコンテンツの定義 *************/

/********* ミニテーブル　ランキング見出し用 *********/
.ranking3rd {
    width: 80%;
    margin: 1.5em auto;
    border-collapse: collapse;
}
.ranking3rd th {
    white-space: nowrap;
    width: 1px;
}
.ranking3rd td {
    background: #FFFFFF;
    text-align: left;
}
.ranking3rd .champ {
    background: #004baa;
    font-size: 0.80em;
    font-weight: bold;
    color: #FFFFFF;
}
.ranking3rd .first {
    background: #F5F193;
    font-size: 0.80em;
}
.ranking3rd .second {
    background: #E9EAEB;
    font-size: 0.80em;
}
.ranking3rd .third {
    background: #F2E6D6;
    font-size: 0.80em;
}
.ranking3rd .forth {
    background: #FFFFFF;
    font-size: 0.80em;
}
/************* CV用ランキングコンテンツ *************/

/*** ボックス内ボックスの定義 ***/

/* ランキングボックス外枠の設定 */
.rankst-wrap {
    max-width: 100%;
    marigin: 1.0em 0;
}
/* ランキングボックス内のアイキャッチ画像用ボックス */
.ranking_main_img {
    margin: 10px;
    padding: 0;
    text-align: center;/* 画像のセンタリング */
}
/* テキストエリア他コンテンツ本体用ボックス */
.ranking_contents_box {
    margin: 10px;
    padding: 0;
}
/***  ランキング型のボックスと見出しのデザイン  ***/

/* ランキングの見出し全般 */
#wrapper #content .rankst-wrap h2, #wrapper #content .rankst-wrap h3 {/* 順位共通のデザインを集中定義 */
    margin: 0;
    padding: 10px 10px 10px 55px;
    color: #444444;
    font-size: 1.2em;
    text-align: left;
    /* 背景装飾の定義 */
    background-repeat: no-repeat;/* 王冠マークは1回だけ */
    background-position: left center;/* 王冠マークの配置 */
    border-bottom: none;/* 明示的に見出しの下線を消去 */
}
#wrapper #content .rankst-wrap h2:after, #wrapper #content .rankst-wrap h3:after {/* テーマの設定する装飾を排除 */
    display: none;
}
/* 順位ごとのボックス内デザイン設定 */

/* 殿堂入り */
.rankid0 {
    margin: 2.0em auto;
    padding: 0;
    border: 3px solid #004baa;
}
#wrapper #content h2.h2platinum, #wrapper #content h3.h3platinum {
    background-color: #004baa;
    background-image: url(http://kaitorix.xsrv.jp/wp-content/themes/affinger5/images/oukan4.png);
}
/* 金 */
.rankid1 {
    margin: 2.0em auto;
    padding: 0;
    border: 3px solid #F5F193;
}
#wrapper #content h2.h2gold, #wrapper #content h3.h3gold {
    background-color: #F5F193;
    background-image: url(http://kaitorix.xsrv.jp/wp-content/themes/affinger5/images/oukan1.png);
}
/* 銀 */
.rankid2 {
    margin: 2.0em auto;
    padding: 0;
    border: 3px solid #E9EAEB;
*/
}
#wrapper #content h2.h2silver, #wrapper #content h3.h3silver {
    background-color: #E9EAEB;
    background-image: url(http://kaitorix.xsrv.jp/wp-content/themes/affinger5/images/oukan2.png);
}
/* 銅 */
.rankid3 {
    margin: 2.0em auto;
    padding: 0;
    border: 3px solid #F2E6D6;
}
#wrapper #content h2.h2bronze, #wrapper #content h3.h3bronze {
    background-color: #F2E6D6;
    background-image: url(http://kaitorix.xsrv.jp/wp-content/themes/affinger5/images/oukan3.png);
}
/* 鉄 */
.rankid4 {
    margin: 2.0em auto;
    padding: 0;
    border: 3px solid #ecf2f0;
*/
}
#wrapper #content h2.h2iron, #wrapper #content h2.h2iron, #wrapper #content h3.h3iron, #wrapper #content h3.h3iron {
    background-color: #ecf2f0;
    background-image: url(http://kaitorix.xsrv.jp/wp-content/themes/affinger5/images/oukan4.png);
}
/* 全国 */
.outer {
    clear: both;
    overflow: hidden;
    padding: 1rem 0;
}
.leftside {
    float: none;
    width: 100%;
    padding: 14px 0 0;
}
.rightside {
    float: none;
    width: 100%;
    padding: 14px 0 0;
}
.table {
    display: table;
    width: 100%;
    border-top: 1px solid #ffc0cb;
    font-size: 100%;
    color: #4b3a24;
    line-height: 1.3;
}
.row {
    display: table-row;
    border-bottom: 1px solid #ffc0cb;
}
.row>div:nth-child(odd) {
    width: 40%;
}
.row>div:first-child {
    border-left: 1px solid #ffc0cb;
}
.row .item {
    display: table-cell;
    font-weight: 700;
    margin: 5px;
    padding: 14px 6px;
    background-color: #ffd3d9;
    text-align: center;
}
.row>div {
    display: table-cell;
    margin: 5px;
    padding: 14px;
    background-color: #fff;
    border-bottom: 1px solid #ffc0cb;
    border-right: 1px solid #ffc0cb;
    text-align: center;
    vertical-align: middle;
}

@media only screen and (min-width: 480px) {
.leftside {
    float: left;
    width: 48%;
    padding: 16px 0;
}
.rightside {
    float: right;
    width: 50%;
    padding: 16px 0;
    margin: 0;
    overflow: hidden;
}
}
/*商標BOX内の詳細テーブル設定 */
/**ブロック要素でスマホで2列表記 **/
@media screen and (max-width: 560px) {
  tr.four-two {
		display: grid;
   grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr 2fr;
  }
}
/**テーブルの装飾 **/
@media screen and (min-width: 560px) {
  tr.four-two {
		display: grid;
    grid-template-columns: 1fr 2fr 1fr 2fr;
  }
td.four-two {
	
	text-align: left;
		border-style: solid; border-color: #e7e7e7;
	font-size: 0.80em;
  }
th.four-two {
	font-size: 0.80em;
	font-weight: normal;
	display: flex;
      justify-content: center;
      align-items: center;
		background-color: #f7f7f7; border-style: solid; border-color: #e7e7e7;
  }

}
