@charset "UTF-8";
/* CSS Document */

html,body{
    height:100%;
    font-family: "メイリオ", "ＭＳ Ｐゴシック", "小塚ゴシック Pro R", "ヒラギノ角ゴ Pro W3", "Meiryo", "MS PGothic", "KozGoPro-Regular", "Hiragino Kaku Gothic Pro", "MS UI Gothic", Osaka, sans-serif;
}
.wrapper{
    width: 100%;
    position: relative;
    height:auto !important; /*IE6対策*/
    height: 100%; /*IE6対策*/
    min-height: 100%;
}
#footer{
	width: 100%;
    line-height: 30px;
    position:absolute;
    bottom:0;
	background: #222222;
	color: #ffffff;
	font-size: 12px;
	text-align: center;
}
a {
	text-decoration: none;
	color: #0065a0;
}

a:hover {
	text-decoration: underline;
}

ol,ul,li{
	margin: 0;
	padding: 0;
	list-style: none;
}
table,tr,th, td{
	border: none;
	border-collapse: collapse;
}
p.section_text {
    text-align: left;
	line-height: 2.0;
}
#page-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 77%;
}
#page-top a {
    background: rgba(34, 34, 34, 0.8);
    text-decoration: none;
    color: #fff;
    width: 62px;
    padding: 20px 0 0px;
    text-align: center;
    display: block;
    border-radius: 5px;
    transition: all 0.3s;
}
#page-top a:hover {
    text-decoration: none;
    background: rgba(74, 74, 74, 0.8);
}
#page-top a i{
	display:block;
	font-style:normal;
	margin: 0 auto;
	padding: 0;
	line-height: 0;
	width: 10px;
	border-bottom: 1px solid #ffffff;
	transform: scale(1.5,1.0);
}
#page-top a i:after{
	content:"▲";
	position: relative;
	bottom: 6px;
}

/* PC 769px 以上
--------------------------------------------------------------------------------*/
/* Header Wrapper */
#header-wrapper {
	background: #333333;
	position: fixed;
    top: 0;
    width: 100%;
	z-index: 1000;
}
/* Header */
#menu-box {
	background: #333333;
	position: relative;
	margin: 0 auto;
	font-size: 14px;
	height: 45px;
	max-width: 1200px;
}
/* Logo */
#logo {
	position: absolute;
	top: 6px;
	left: 20px;
	width: 100%;
    max-width: 150px;
}
/* Menu */
#menu {
	width: calc(100% - 200px);
	margin: 0 0 0 200px;
	padding: 0;
}
/* Menu List 左側 */
#menu li {
	display: block;
	float: left;
	width: 18%;
	margin: 0;
	padding: 8px 0px;
}
/* Menu List Button */
#menu li a {
	display: block;
	padding: 6px 0;
	height: 100%;
	background: rgba(51, 51, 51, 0.8);
	color: #fff;
	text-align: center;
	text-decoration: none;
	position: relative;
  	text-decoration: none;
}
#menu li a::after{
	content: '';
    position: absolute;
  	bottom: 0;
  	left: 0;
  	width: 100%;
  	height: 1px;
  	-webkit-transform: scaleX(0);
  	-ms-transform: scaleX(0);
  	transform: scaleX(0);
  	background-color: #ffffff;
  	-webkit-transition: all .3s ease;
  	transition: all .3s ease;
}
#menu li a:hover::after{
	-webkit-transform: scaleX(1);
  	-ms-transform: scaleX(1);
  	transform: scaleX(1);
}
/* Menu List Button hover */
#menu li a:hover {
	background: none;
}
/* Menu List コンタクトボタン */
#menu li.contact_btn {
	float: right;
	margin-right: 20px;
	width: 140px;
}
/* Menu List コンタクトボタン  枠線 */
#menu li.contact_btn a {
	border: 1px solid #ffffff;
	transition: all 0.3s;
}
#menu li.contact_btn a:hover{
	background: #ffffff;
	color: #222222;
}
#menu li.contact_btn a::after {
	border: 1px solid #ffffff;
	position: initial;
	content: none;
}
/* Menu List コンタクトボタン Arrow */
#menu li.contact_btn span:after{
	content:'>';
	float:right;
	position:relative;
	right:5px;
}
/* スマホぼハンバーガーボタン　非表示 */
#toggle {
	display: none;
}

.tel{
	float: right!important;
	margin-right: 5%!important;
	padding: 1px 0!important;
    color:#FFF;
}
.li-top {
    display: block;
    padding-top: 5px;
}

.li_tel {
    display: block;
}

.tel a{
	white-space: nowrap;
	pointer-events: none;
}
.tel_area{
	display: none;
}

@media only screen and (max-width: 930px) {
.tel a{
color: #fff;
font-size: 10px;
}
}


/* Tablet 640px 以上 〜　768px 以下
--------------------------------------------------------------------------------*/
@media only screen and (max-width: 768px) {
/* Header Wrapper */
#header-wrapper {
    background: transparent;
}
/* Menu */
#menu {
	display: none;
	margin: 0;
	width: 100%;
	transition: all 0.05s;
}
/* クリック時のメニュー状態 */
.active + #menu {
	display: block;
}

/* Menu List */
#menu li {
	width: 100%;
	padding: 0;
	border-bottom: 1px solid #aaaaaa;
}
#menu li:last-child{
	border-bottom: 0px solid #aaaaaa;
}
/* Menu List Button */
#menu li a {
    padding: 20px 0;
}
#menu li a:hover{
	background: rgba(51, 51, 51, 0.6);		
}
#menu li a::after{
  	bottom: 0;
  	left: 0;
  	width: 0;
  	height: 0px;
  	-webkit-transform: scaleX(0);
  	-ms-transform: scaleX(0);
  	transform: scaleX(0);
  	background-color: #ffffff;
  	-webkit-transition: all .3s ease;
  	transition: all .3s ease;
}
#menu li a:hover::after{
	-webkit-transform: scaleX(1);
  	-ms-transform: scaleX(1);
  	transform: scaleX(1);
}

/* Menu List Button コンタクトボタン　タブレット,スマホ時他と揃える */
#menu li.contact_btn {
	margin-right: 0px;
	width: 100%;
	border-bottom: none;
}
#menu li.contact_btn a {
	border: 0px solid #ffffff;
	background: rgba(51, 51, 51, 0.8);
	transition: all 0.3s;
}
#menu li.contact_btn a:hover{
	background: rgba(51, 51, 51, 0.6);	
	color: #ffffff;
}
#menu li.contact_btn a:after{
	right:20px;
}
#menu li.contact_btn span:after {
    content: none;
    float: right;
    position: relative;
    right: 5px;
}
/* タブレット,スマホ時のハンバーガーボタン */
#toggle {
	display: block;
	position: relative;
	width: 40px;
	background: #333;
	float: right;
	margin: 2px;
}
#toggle a {
	display: block;
	position: relative;
	padding: 12px 0 10px;
	color: #fff;
	text-align: center;
	text-decoration: none;
	transition: all 0.1s;
}
/* ハンバーガーメニューの装飾 */
.menu-trigger,
.menu-trigger span {
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
}
.menu-trigger {
	position: relative;
	width: 30px;
	height: 30px;
}
.menu-trigger span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #fff;
	border-radius: 4px;
}
.menu-trigger span:nth-of-type(1) {
	top: 10px;
}
.menu-trigger span:nth-of-type(2) {
	top: 20px;
}
.menu-trigger span:nth-of-type(3) {
	top: 30px;
}
/* ハンバーガーメニュークリック時 */
.active .menu-trigger span:nth-of-type(1) {
	-webkit-transform: translateY(10px) rotate(-45deg);
	transform: translateY(10px) rotate(-45deg);
}
.active .menu-trigger span:nth-of-type(2) {
	opacity: 0;
}
.active .menu-trigger span:nth-of-type(3) {
	-webkit-transform: translateY(-10px) rotate(45deg);
	transform: translateY(-10px) rotate(45deg);
}
.active + ul{
	display: block!important;
}
.tel{
	display: none!important;
}
.tel_area{
	display: inline-block;
    position: absolute;
    top: 50%;
    left: 200px;
    transform: translate(0%,-50%);
    color: #ffffff;
    font-size: 10px;
}
.tel_area_top {display: block;}

.tel_under {
    display: block;
}
.tel_under a {
	color: #fff;
}
    
    
/* Smart Phone 640px 以下
--------------------------------------------------------------------------------*/
@media only screen and (max-width: 640px) {
}
