
.foxMenu1 ul{ 
  margin:0; 
  padding:0; 
} 

.foxMenu1 ul li { 
  list-style: none; 
  margin:0; 
  padding:0; 
  font-size:14px; 
  float: left; 
  position: relative; 
  width: 150px;/*親メニューの幅*/ 
  height: 40px;/*親メニューの高さ*/ 
  line-height: 40px; 
  background:#FF818D;/*親メニューの背景色*/ 
  color: #4D4D4D;/*親メニューの文字色*/ 
  text-align:center; 
  font-weight:bold; 
} 

.foxMenu1 ul li a { 
  color: #4D4D4D; 
  display: block; 
  text-decoration: none; 
} 

.foxMenu1 ul li:hover, .foxMenu1 ul li a:hover { 
  background:#EA2839;/*ホバー時の親メニューの背景色*/ 
  color:#fff;/*ホバー時の親メニューの文字色*/ 
} 

.foxMenu1 ul li ul { 
  position: absolute; 
  top: 40px;/*親メニューの高さと同じにする*/ 
  width: 150px; 
  z-index: 100; 
} 

.foxMenu1 ul li ul li { 
  visibility: hidden; 
  overflow: hidden; 
  width: 150px;/*サブメニューの幅*/ 
  height: 0; 
  background:#FFDAD7;/*サブメニューの背景色*/ 
} 

.foxMenu1 ul li ul li:hover, .foxMenu1 ul li ul li a:hover { 
  background:#FFAFA9;/*ホバー時のサブメニューの背景色*/ 
} 

.foxMenu1 ul li:hover ul li, .foxMenu1 ul li a:hover ul li{ 
  visibility: visible; 
  overflow: visible; 
  height:40px;/*サブメニューの高さ*/ 
  z-index: 10; 
} 

.foxMenu1 * { 
  -webkit-transition: 0.5s; 
  -moz-transition: 0.5s; 
  -ms-transition: 0.5s; 
  -o-transition: 0.5s; 
  transition: 0.5s; 
}

.foxBox {
  clear: both;
  width: 100%
}

.foxClear {
  clear: both;
  height: 1px;
  background: #e58;
  color: #fff;
  opacity: 0.01
}

/* Accordion Style */
.Item { position:relative; }
 
input[type='checkbox'], input[type='radio'] {
    width:100%;
    display:block;
    position:absolute;
    opacity:0;
    height:35px;
    top:0;
    left:0;
    border:none;
    border-radius:0; }
 
.Accordion {
    background-color:#fff;
    width:100%; }
 
.AccordionItem {
    line-height:35px;
    height:55px;
    padding:0 5px;
    display:block;
    font-size: 19px;
    background: #ffffff;
    background: -moz-linear-gradient(top,  #ffffff 0%, #e5e5e5 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#e5e5e5));
    background: -webkit-linear-gradient(top,  #ffffff 0%,#e5e5e5 100%);
    background: -o-linear-gradient(top,  #ffffff 0%,#e5e5e5 100%);
    background: -ms-linear-gradient(top,  #ffffff 0%,#e5e5e5 100%);
    background: linear-gradient(top,  #ffffff 0%,#e5e5e5 100%);
    border:1px solid #888;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    cursor:pointer;
    margin-top:-1px; }
 
.AccordionPanel {
    height:0px;
    border:1px solid #888;
    border-top:none;
    transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
    -moz-transition: all ease-in-out 0.3s;
    -webkit-transition: all ease-in-out 0.3s;
    overflow:auto; margin-top:-1px; }
 
.AccordionPanel div { padding:10px; }
 
input:checked + label .AccordionPanel { height:200px; }


.foxac-container{
    width: 400px;
    margin: 10px auto 30px auto;
}

.foxac-container label{
    font-family: 'BebasNeueRegular', 'Arial Narrow', Arial, sans-serif;
    padding: 5px 20px;
    position: relative;
    z-index: 20;
    display: block;
    height: 30px;
    cursor: pointer;
    color: #777;
    text-shadow: 1px 1px 1px rgba(255,255,255,0.8);
    line-height: 33px;
    font-size: 19px;
    background: linear-gradient(top, #ffffff 1%,#eaeaea 100%);
    box-shadow:
        0px 0px 0px 1px rgba(155,155,155,0.3),
        1px 0px 0px 0px rgba(255,255,255,0.9) inset,
        0px 2px 2px rgba(0,0,0,0.1);
}

.foxac-container input:checked + label,
.foxac-container input:checked + label:hover{
    background: #c6e1ec;
    color: #3d7489;
    text-shadow: 0px 1px 1px rgba(255,255,255, 0.6);
    box-shadow:
        0px 0px 0px 1px rgba(155,155,155,0.3),
        0px 2px 2px rgba(0,0,0,0.1);
}


.foxac-container label:hover:after,
.foxac-container input:checked + label:hover:after{
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    right: 13px;
    top: 7px;
    background: transparent url(../images/arrow_down.png) no-repeat center center;
}
.foxac-container input:checked + label:hover:after{
    background-image: url(../images/arrow_up.png);
}
.foxac-container input{
    display: none;
}
.foxac-container article{
    background: rgba(255, 255, 255, 0.5);
    margin-top: -1px;
    overflow: hidden;
    height: 0px;
    position: relative;
    z-index: 10;
    transition:
        height 0.3s ease-in-out,
        box-shadow 0.6s linear;
}
.foxac-container input:checked ~ article{
    transition:
        height 0.5s ease-in-out,
        box-shadow 0.1s linear;
    box-shadow: 0px 0px 0px 1px rgba(155,155,155,0.3);
}
.foxac-container article p{
    font-style: italic;
    color: #777;
    line-height: 23px;
    font-size: 14px;
    padding: 20px;
    text-shadow: 1px 1px 1px rgba(255,255,255,0.8);
}
.foxac-container input:checked ~ article.ac-small{
    height: 140px;
}
.foxac-container input:checked ~ article.ac-medium{
    height: 180px;
}
.foxac-container input:checked ~ article.ac-large{
    height: 230px;
}




/* TabArea
-------------------------- */
#tab_area {
	margin: 0 auto;
	width: 540px;
	height: 350px;
	text-align: left;
	position: relative;
}

#tab_area dl {
	width: 540px;
	height: 340px;
	border: #777 1px solid;
	position: absolute;
}

#tab_area dl dt {
	top: 0;
	width: 180px;
	height: 40px;
	position: absolute;
	border-bottom: #777 1px solid;
	z-index: 5;
}
#tab_area dl#contents02 dt {
	border-left: #777 1px solid;
	border-right: #777 1px solid;
}


#tab_area dl#contents01 dt {left: 0;}
#tab_area dl#contents02 dt {left: 180px;}
#tab_area dl#contents03 dt {left: 360px;}

#tab_area dl dt a {
	width: 180px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	display: block;
}
#tab_area dl dt a:hover {background: #999;}

#tab_area dl dd {
	top: 41px;
	left: 0;
	height: 300px;
	position: absolute;
	opacity: 0;
	overflow-y: auto;
}

#tab_area dl dd p {
	padding: 10px 10px;
}


/* CSS3 TabAnimation
-------------------------- */
@-webkit-keyframes TabSwitch {
	0% {background: #fff;}
	100% {background: #777;}
}
#tab_area dl:target dt a {
	-webkit-animation-name: TabSwitch;
	-webkit-animation-duration: 1s;
	-webkit-animation-iteration-count: 1;
	color: #fff;
	font-weight: bold;
	background: #777;
}

@-webkit-keyframes ContentsSwitch {
	0% {height: 0;opacity: 0;}
	100% {height: 300px;opacity: 1;}
}
#tab_area dl:target dd {
	-webkit-animation-name: ContentsSwitch;
	-webkit-animation-duration: 1s;
	-webkit-animation-iteration-count: 1;
	height: 300px;
	opacity: 1;
	z-index: 15;
}


/* Tab Style */
.Tab {
    clear:both;
    overflow:hidden;
    position:relative; }
 
.Tab label, .Tab input[type='radio'] {
    display:block;
    width:20%;
    float:left; }
 
.Tab input[type='radio'] {
    position:absolute;
    opacity:0;
    height:35px;
    top:0;
    left:0;
    border:none;
    border-radius:0; }
 
.Tab input[type='radio']:nth-of-type(2) { left:20%; }
 
.Tab input[type='radio']:nth-of-type(3) { left:40%; }
 
.Tab input[type='radio']:nth-of-type(4) { left:60%; }
 
.Tab input[type='radio']:nth-of-type(5) { left:80%; }
 
.Tab label .TabItem span {
    line-height:35px;
    height:35px;
    padding:0 5px;
    text-align:center;
    display:block;
    background-color:#eee;
    border-radius:5px 5px 0 0;
    border:1px solid #000;
    cursor:pointer; 
    position:relative; }
  
.Tab label .TabItem span:before,
.Tab label .TabItem span:after {
    content:'';
    width:9px;
    height:8px;
    position:absolute;
    z-index:2;
    bottom:-1px;
    border-bottom:1px solid #000;
    background-color:#eee; }
  
.Tab label .TabItem span:before { left:-8px; }
  
.Tab label .TabItem span:after { right:-8px; }
 
.Tab input:checked + label .TabItem span {
    border-bottom:none;
    background-color:#fff; }
 
.Tab input:checked + label .TabItem span:before,
.Tab input:checked + label .TabItem span:after {
    background-color:#fff;
    border-bottom:none;
    bottom:0;
    background-clip: padding-box; }
 
.Tab label .TabItem {
    position:relative;
    margin:0 11px; }
  
.Tab label .TabItem:before,
.Tab label .TabItem:after {
    content:'';
    width:11px;
    height:8px;
    position:absolute;
    z-index:3;
    bottom:0;
    background-color:#ffe;
    overflow:hidden;
    border-bottom:1px solid #000;
    background-clip: padding-box; }
  
.Tab label .TabItem:before {
    left:-11px;
    border-radius:0 0 8px 0;
    border-right:1px solid #000; }
  
.Tab label .TabItem:after {
    right:-11px;
    border-radius:0 0 0 8px;
    border-left:1px solid #000; }
  
.Tab input:checked + label .TabItem:before,
.Tab input:checked + label .TabItem:after { bottom:-1px; }
 
.Tab .TabContents {
    background-color:#fff;
    border:1px solid #000;
    border-top:none;
    padding:10px;
    display:none; }
 
.Tab input:checked + label .TabItem {
    background-color:#fff;
    border-bottom:none; }
 
.Tab input:checked + label .TabContents { display:block; }
 
.Tab label:nth-of-type(1) .TabContents { margin-right:-400%; }
 
.Tab label:nth-of-type(2) .TabContents {
    margin-right:-300%;
    margin-left:-100%; }
 
.Tab label:nth-of-type(3) .TabContents {
    margin-right:-200%;
    margin-left:-200%; }
 
.Tab label:nth-of-type(4) .TabContents {
    margin-right:-100%;
    margin-left:-300%; }
 
.Tab label:nth-of-type(5) .TabContents { margin-left:-400%; }


body {
    background: #eeeeee;
}
.tabs {
    position: relative;
    padding: 0;
}
.tabs li {
    list-style: none;
    display: inline-block;
}
.tabs input[type=radio] {
    display: none;
}
.tabs label {
    display: block;
    cursor: pointer;
    padding: 5px;
    line-height: 60px;
    background-color: #999999;
    color: #ffffff;
}
.tabs label:hover {
    background-color: #cccccc;
    color: #000000;
}
.tabs input[type=radio]:checked + label {
    background-color: #ffffff;
    color: #000000;
}
.tabs .contents {
    display: none;
    position: absolute;
    top:60px;
    left: 0;
    padding: 5px;
    background: #ffffff;
    height:120px;
//    width:70%;
    overflow:auto;
}
.tabs input[type=radio]:checked + label + .contents{
    display: block;
}

.tabs{

height:200px;

}

#bbs A {
  float:left;
  display: block;             /* ブロック要素にする */
  width: 100px;                /* 横幅 */
  color: #ffffff;
  background-color: #666699;  /* 背景色 */
  border: outset 2px #9999cc; /* 枠の色 */
  margin: 0px;
  padding: 3px 1px 1px 0px;
  font-size: 12px;            /* フォントサイズ */
  line-height: 30px;          /* 行の高さ */
  text-align: center;         /* 水平揃え */
  text-decoration: none;      /* 下線を消す */
}
#bbs A:hover {
  color: #eeeeee;
  background-color: #555588;  /* 背景色 */
  border: inset 2px #9999cc;  /* 枠の色 */
  margin: 0px;
  padding: 4px 0px 0px 1px;
}
#bbs A:active { color: #ffffff; }
#bbs A:visited { color: #ffffff; }

body{  
    margin: 0;  
#    padding: 0 0 70px 0;  
}  
* html body{  
    overflow: hidden;  
}   
div#headerArea {  
    position: fixed !important;  
    position: absolute;  
    top: 0;  
    left: 0;  
    width: 100%;  
    height: 100px;  
    background-color: #4E9ABE;  
    color: #fff;  
}  
div#footerArea {  
    position: fixed !important;  
    position: absolute;  
    bottom: 0;  
    left: 0;  
    width: 100%;  
    height: 70px;  
    background-color: #4E9ABE;  
    color: #fff;  
margin: 0 auto; 
font-size: 50%; 
}  
* html div#contentsArea{  
    height: 100%;  
    overflow: auto;  
}  

/***foxmenu2***/

.foxMenu2 ul{ 
  margin:0; 
  padding:0; 
} 

.foxMenu2 ul li { 
  list-style: none; 
  margin:0; 
  padding:0; 
  font-size:14px; 
  float: left; 
  position: relative; 
  /*親メニューの幅*/ 
  height: 40px;/*親メニューの高さ*/ 
  line-height: 40px; 
  background:#FF818D;/*親メニューの背景色*/ 
  color: #4D4D4D;/*親メニューの文字色*/ 
  text-align:center; 
  font-weight:bold; 
} 

.foxMenu2 ul li a { 
  color: #4D4D4D; 
  display: block; 
  text-decoration: none; 
  padding:0px 10px 0px 10px;
} 

.foxMenu2 ul li:hover, .foxMenu2 ul li a:hover { 
  background:#EA2839;/*ホバー時の親メニューの背景色*/ 
  color:#fff;/*ホバー時の親メニューの文字色*/ 
} 

.foxMenu2 ul li ul { 
  position: absolute; 
  top: 40px;/*親メニューの高さと同じにする*/ 
  width: 150px; 
  z-index: 100; 
} 

.foxMenu2 ul li ul li { 
  visibility: hidden; 
  overflow: hidden; 
  width: 150px;/*サブメニューの幅*/ 
  height: 0; 
  background:#FFDAD7;/*サブメニューの背景色*/ 
} 

.foxMenu2 ul li ul li:hover, .foxMenu2 ul li ul li a:hover { 
  background:#FFAFA9;/*ホバー時のサブメニューの背景色*/ 
} 

.foxMenu2 ul li:hover ul li, .foxMenu2 ul li a:hover ul li{ 
  visibility: visible; 
  overflow: visible; 
  height:40px;/*サブメニューの高さ*/ 
  z-index: 10; 
} 

.foxMenu2 * { 
  -webkit-transition: 0.5s; 
  -moz-transition: 0.5s; 
  -ms-transition: 0.5s; 
  -o-transition: 0.5s; 
  transition: 0.5s; 
}