@charset "UTF-8";
/* ----------------------------------------------------------
    スロット
---------------------------------------------------------- */
body {
	/* 画像ファイルの指定 */
	background-image: url("../../images/el2_bg_09.png");
  	/* 画像を常に天地左右の中央に配置 */
	background-position:center center;
	background-repeat: repeat;
	/* コンテンツの高さが画像の高さより大きい時、動かないように固定 */
	background-attachment: fixed;
	color: #000;
}

/* ----------------------------------------------------------
	タブメニュー
---------------------------------------------------------- */
/* ----- タブメニュー ----- */
/*HTML
<section id="tabbox" class="clearfix">
<h2 class="h2-tab">タブメニュー&nbsp;&#9312;</h2>
<p class="p-tab">タブで表示するコンテンツを切り替えるメニューのサンプルです。</p>
<div class="tabbox1 clearfix">
  <input type="radio" name="tab-1" id="tab-1-1" checked="checked">
  <input type="radio" name="tab-1" id="tab-1-2">
  <div class="tab-list">
    <ul>
      <li><label for="tab-1-1" class="tab-list-1">tab1</label></li>
      <li><label for="tab-1-2" class="tab-list-2">tab2</label></li>
    </ul>
  </div>
  <div class="contents1 clearfix">
    <div class="tabbox-wrap">
      <dl>
        <dt>20XX.00.00</dt>
        <dd>ダミーの文章です。ダミーの文章です。ダミーの文章です。ダミーの文章です。</dd>
      </dl>
    </div>
  </div>
  <div class="tabback"><a href="#tabbox">&#9650;タブメニューに戻る</a></div>
</div>
</section>
*/

#tabbox {
    margin: 30px 0 15px;
}

.clearfix:after {
    content: "";
    clear: both;
    display: block;
}
  
#tabbox h2.h2-tab {
    margin: 10px 0 15px;
    padding: 2px 0 2px 12px;
    color: #808080;
/*  color: #000; */
    font-size: 1.1em;
    line-height: 1.2em;
    font-weight: normal;
    border-left: 4px solid #56b329;
    border-bottom: 2px solid #56b329;
    text-align: left;
}
  
@media screen and (min-width: 641px) {
    #tabbox h2.h2-tab {
        font-size: 1.4em;
    }
}
  
#tabbox p.p-tab {
    margin: 0;
    color: #808080;
    font-size: 1em;
    line-height: 1em;
}
  
@media screen and (min-width: 641px) {
    #tabbox p.p-tab {
        font-size: 1.2em;
    }
}
  
.tabbox1 {
    width: 100%;
}

.tabbox1 input {
    display: none;
}
 
.contents1 input,
.contents2 input,
.contents3 input {
display: inline-block;
}

#tab-1-1:checked ~ .contents2,
#tab-1-1:checked ~ .contents3,
#tab-1-1:checked ~ .contents4,
#tab-1-1:checked ~ .contents5,
#tab-1-2:checked ~ .contents1,
#tab-1-2:checked ~ .contents3,
#tab-1-2:checked ~ .contents4,
#tab-1-2:checked ~ .contents5,
#tab-1-3:checked ~ .contents1,
#tab-1-3:checked ~ .contents2,
#tab-1-3:checked ~ .contents4,
#tab-1-3:checked ~ .contents5,
#tab-1-4:checked ~ .contents1,
#tab-1-4:checked ~ .contents2,
#tab-1-4:checked ~ .contents3,
#tab-1-4:checked ~ .contents5,
#tab-1-5:checked ~ .contents1,
#tab-1-5:checked ~ .contents2,
#tab-1-5:checked ~ .contents3,
#tab-1-5:checked ~ .contents4 {
    display: none;
}
.tabbox1 .tab-list ul {
    display: flex;
}
  
.tabbox1 .tab-list ul li {
    margin: 0 5px 0 0;
}
  
.tabbox1 .tab-list ul li:last-child {
    margin: 0;
}
  
.tabbox1 .tab-list label {
    display: block;
    padding: 6px 10px;
    background-color: #a0d18d;
    border-radius: 8px 8px 0 0;
    color: #fff;
    cursor: pointer;
}
  
#tab-1-1:checked ~ .tab-list label.tab-list-1,
#tab-1-2:checked ~ .tab-list label.tab-list-2,
#tab-1-3:checked ~ .tab-list label.tab-list-3,
#tab-1-4:checked ~ .tab-list label.tab-list-4,
#tab-1-5:checked ~ .tab-list label.tab-list-5 {
    background-color: #56b329;
}
  
.tabbox1 .contents1,
.tabbox1 .contents2,
.tabbox1 .contents3,
.tabbox1 .contents4,
.tabbox1 .contents5 {
    padding: 15px;
    border: 2px solid #56b329;
}
@media screen and (min-width: 641px) {
    .tabbox1 .contents1,
    .tabbox1 .contents2,
    .tabbox1 .contents3,
    .tabbox1 .contents4,
    .tabbox1 .contents5 {
        padding: 30px;
    }
}
  
.tabbox1 .tabback {
    text-align: center;
    background-color: #56b329;
}

.tabbox1 .tabback a {
    display: block;
    padding: 7px;
    font-size: 0.9em;
    color: #fff;
    text-decoration: none;
}

/* ----------------------------------------------------------
	コンテンツ	
---------------------------------------------------------- */
.main_wrap {
	width: 100%;
    margin: 30px auto;
}

@media screen and (max-width: 767px) {
    .main_wrap {
        width: 100%;
        margin: 0px auto;
    }
}

.main_wrap:after {
    content: ".";
    display: block;
    clear: both;
    height: 0;
    visibility: hidden;
    font-size: 0.1em;
}
* html .main_wrap {
    height: 1%;
}
.main_wrap p {
    margin-top: 10px;
}
.main_wrap h2 {
    font-size: 18px;
    font-size: 1.8rem;
    margin: 30px auto;
    color: #fff;
    text-align: center;
    padding: 15px 10px;
}

@media screen and (max-width: 767px) {
    .main_wrap h2 {
        font-size: 16px;
        font-size: 1.6rem;
        margin: 10px auto;
        padding: 10px 5px;
    }
}
.buttonframe {
	position:relative;
	overflow:hidden;
	display:inline-block;
	padding: 0.5em;
	border: 1px solid #eee;
    border-radius:5px;
    -webkit-border-radius:5px;
    -moz-border-radius:5px;
    color: #000;/*色*/
}

/* ----------------------------------------------------------
    一覧レイアウト
------------------------------------------------------------*/
/* tableタグ */
.sticky_table {
    display: block;
    position: relative;
    overflow: scroll;
    width: calc(100vw - 3.0rem);
    height: calc(75vh);
    border-collapse: collapse;
    font-size: 0;
}
/* thead, tbodyタグ */
.sticky_table thead,
.sticky_table tbody {
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
/* th, tdタグ */
.sticky_table th,
.sticky_table td {
  display: inline-block;
  width: 8.0rem;
  background: #fff;
  font-size: 1.0rem;
}
/* 列ヘッダの固定 */
.sticky_table tbody th {
    position: -webkit-sticky;
    position: sticky;
    left: 0;
    z-index: 1;
  }
/* 行ヘッダの固定 */
.sticky_table thead {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 2;
}
/* 行・列ヘッダの交差部分の固定 */
.sticky_table thead th.blank {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 3;
}
/* ----------------------------------------------------------
    ページナビレイアウト
------------------------------------------------------------*/
.page {
    font-size: 14px;
    text-align: right;
  }
@media screen and (max-width: 767px) {
    .page {
        font-size: 11px;
        }
}

#tabmenu01 .menu-box {
    cursor      : pointer;
}
