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

/* ヘッダーの背景画像指定	
---------------------------------------------------------- */
.headerimg {
    background: url("../images/img/nat1_h_04.png");
    background-position: center center;
    background-repeat: no-repeat;
    padding: 10px 0;
}
/* ----------------------------------------------------------
	タブメニュー
---------------------------------------------------------- */
/* ----- タブメニュー ----- */
/*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,
.contents4 input,
.contents5 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;
}
/* ----------------------------------------------------------
    検索項目表示
------------------------------------------------------------*/
/* 検索項目表示ボタン */
.toggle-wrap .toggle-button {
    display: block;
    padding: 0.25em 0.5em;
    text-decoration: none;
    width: 100%;
    height:auto;
    text-align: center;
    color: #808080; /*色*/
    border: solid 2px #56b329;  /*線色*/
    font-size: 16px;
    cursor : pointer;
    box-shadow: inset 0 2px 0 rgba(255,255,255,0.2), inset 0 -2px 0 rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 767px) {
    .toggle-wrap .toggle-button {
        font-size: 12px;
    }
}
/*カーソルを重ねたとき*/
.toggle-wrap .toggle-button:hover{
    border: solid 2px #d27d00;  /*線色*/
    background: #fd9535;    /*色*/
    color: #fff;
}
/*押したとき*/
.toggle-wrap .toggle-button:active {
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.30);
}
/*非表示*/
.toggle-wrap .toggle-content,
.toggle-wrap > input[type="checkbox"] {
    display: none;
}
/*表示*/
.toggle-wrap > input[type="checkbox"]:checked ~ .toggle-content {
    display: block;
}
/* ----------------------------------------------------------
	コンテンツ	
---------------------------------------------------------- */
.main_wrap {
    max-width: 960px;
	width: 90%;
    margin: 50px 5px 0 5px;
}

.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;
    }
}

/* ----------------------------------------------------------
    入力項目
---------------------------------------------------------- */
button, input, select, textarea {
    font-family : inherit;
    font-size   : 100%;
}

select,input,textarea {
    font-size: 14px;
    font-size: 1.4rem;
}

fieldset {
    width:100%;
    vertical-align: top;
    margin-bottom: 0.2em;
    padding: 0.5em 0.5em;
    border: solid 2px #ccc; /*線色*/
    color: #000;    /*色*/
    border-radius:4px;
    -webkit-border-radius:4px;
    -moz-border-radius:4px;
}

/* 画像（アップロード） */
input.upfile {
    width: 100%;
}

/* 備考 */
textarea.remarks {
    width: 100%;
    height: 20em;
}

/* メッセージ項目 */
input.massage {
	color:#FF0000;
    background-color: transparent;  /* 透明 */
    border: none;
}

/* 検索コード*/
input.search_code {
    width: 80px;
}

/* 検索日付 */
input.search_dtfrom, input.search_dtto {
	text-align: center;
    width: 130px;
}

@media screen and (max-width: 767px) {
	select,input,textarea {
        width: auto;
        font-size: 12px;
        font-size: 1.2rem;
    }
}

.menu-box input[type=checkbox] {
    display: none;
}

/* ----------------------------------------------------------
    一覧レイアウト
------------------------------------------------------------*/
.dtllist_wrap {
    width: 100%;
    height: auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

table.dtllist {
    width: 100%;
    height: auto;
    border-collapse: collapse;
    border: solid 3px #ccc;
    border-spacing: 0;
    border: 1;
}

@media screen and (max-width: 767px) {
    table.dtllist {
        border: solid 1px #ccc;
    }
}

table.dtllist td {
    border: solid 1px #ccc;
    padding: 4px; 	/*上下左右*/
    text-align: left;
    vertical-align: top;
    background-color: #ffffff;
}
table.dtllist th {
    border: solid 1px #ccc;
    padding: 5px; 	/*上下左右*/
    white-space: nowrap;
    text-align: center;
    background: #56b329;/*色*/
    color: #ffffff;/*色*/
}

.btn_panel {
    width: auto;
    text-align: center;
}

.editbuttonpanel {
    width: auto;
    position: relative;
    display: block;
    margin: 2em 0 0 0;
}

.panel {
    width: auto;
	position:relative;
	overflow:hidden;
	display:inline-block;
    margin: 0.5em 0 0.5em 0;
	padding: 0.5em;
	border: 1px solid #eee;
    border-radius:10px;
    -webkit-border-radius:10px;
    -moz-border-radius:10px;
    color: #fff;/*色*/
}

.panel2 {
    width: auto;
	position:relative;
	overflow:hidden;
	display:inline-block;
    margin: 0.5em 0 0.5em 0;
	padding: 0.5em;
}

.panel3 {
    width: auto;
    position: relative;
    margin: 4em 0 2em 0;
    padding: 2em 1em 0.5em 1em;
    border: solid 2px #56b329;
}
.panel3 .box-title {
    position: absolute;
    display: inline-block;
    top: -27px;
    left: -3px;
    padding: 0 9px;
    height: 25px;
    line-height: 25px;
    font-size: 16px;
    background: #56b329;/*色*/
    color: #ffffff;
    font-weight: normal;
    border-radius: 5px 5px 0 0;
    -webkit-border-radius:5px 5px 0 0;
    -moz-border-radius:5px 5px 0 0;
    text-align: center;
    width: 150px;
}

@media screen and (max-width: 767px) {
    .panel3 .box-title {
        font-size: 12px;
        width: 100px;
    }
}

.search_panel {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 2em 1em 0.5em 1em;
    border: solid 2px #56b329;
    border-top: none;
}
.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;/*色*/
}
.inputlist{
    display: inline-block;
    width:100%;  /*幅はお好きなサイズに*/
}
.inputlist ul {
    overflow:hidden;
}

.inputlist {
    display: inline-block;
    width:100%;  /*幅はお好きなサイズに*/
    margin-bottom: 0.2em;
    padding: 0.5em 0.5em;
    border: solid 2px #ccc; /*線色*/
    color: #000;    /*色*/
    border-radius:4px;
    -webkit-border-radius:4px;
    -moz-border-radius:4px;
}

span.label{
    display: inline-block;
    width: 6em;
/*    font-size: 1em; */
}
span.center {
    text-align: center;
}

@media screen and (max-width: 767px) {
    .inputlist li {
        float:none;
    }
}

/* ----------------------------------------------------------
    ページナビレイアウト
------------------------------------------------------------*/
.page {
    font-size: 14px;
    text-align: right;
  }
@media screen and (max-width: 767px) {
    .page {
        font-size: 11px;
        }
}

/* ----------------------------------------------------------
    フォーカスされた際のスタイル
------------------------------------------------------------*/
/*input:focus {background-color:#ccffcc;}*/

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

/* ----------------------------------------------------------
    メッセージのスタイル
------------------------------------------------------------*/
#messages {
    color: red;
}
/* ----------------------------------------------------------
    画像のサムネイル
------------------------------------------------------------*/
.entry-thumb img{
    width: 320px;
    height: auto;
}
