﻿@charset "utf-8";

/*******************************************************

　レイアウト

*******************************************************/

* {
	font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	-webkit-text-size-adjust: 100%;
	line-height: 180%;
	box-sizing: border-box;
	transition: 0.3s;
	/* WEBフォント */
		-webkit-font-smoothing: antialiased;
		text-rendering: optimizeLegibility;
		-moz-osx-font-smoothing: grayscale;
		font-feature-settings: 'liga';
}
body {
	margin: 0px;
	padding: 0px;
	font-size: 14px;
	min-width: 1040px;	
}
.container {
	margin: auto;
	max-width: 1040px;
	width: 100%;
	overflow: hidden;
	display: block;
}

/* ヘッダ
----------------------------------------------------*/

#header {
	width: 100%;
	position: fixed;
	z-index: 100;
}
#header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #FFF;
	border-top: 3px solid #F08A0F;
}
#header.fixed {
	border-top: 3px solid #F08A0F;
	border-bottom: 1px solid #DDD;
	background: #FFF;
}
#header.fixed  .container {
	border: none;
}
#header.fixed.home_header {
	background: url(../images/home/header_bg.png) repeat-y center center #FFF;
}
	
#header h1#logo {
	max-width: 340px;
	width: 100%;
	margin: 0px 20px;
	padding: 0px;
}

#header div#csr_logo {
	max-width: 135px;
	width: 100%;
	margin: 0px 20px;
	padding: 0px;
}

/* グローバルナビ
----------------------------------------------------*/

#global_navi ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
#global_navi a {
	color: #FFF;
	text-decoration: none;
}

#global_navi>ul {
	display: table;
	table-layout: fixed;
	max-width: 480px;
	width: 100%;

}
#global_navi>ul>li {
	display: table-cell;
	width: 100%;
	border-right: 1px solid #DDD;
	text-align: center;
	vertical-align: middle;
}
#global_navi>ul>li>a {
	display: inline-block;
	width: 100%;
	background: #F08A0F;
	padding: 35px 5px;
}
#global_navi>ul>li:nth-of-type(1) {
	border-left: 1px solid #DDD;
}
#global_navi>ul>li:nth-of-type(1)>a {
	padding: 25px 5px 20px 5px;//追記
/*line-height: 154%;//削除*/
}
#global_navi>ul>li>a:hover {
	color: #F08A0F;
	background: #FFF;
}

#global_navi>ul>li ul {
	/*overflow: hidden;*/
	position: absolute;
	background: url(../images/common/page_title_cover.png);
	opacity: 0;
}

#global_navi>ul>li ul:hover {
}

#global_navi>ul>li ul li {
	text-align: left;
}
#global_navi>ul>li ul li a{ 
        display: none;//追記
}

#global_navi>ul>li:hover ul {	
	padding: 20px;
	display: block;
	opacity: 1.0;
	overflow: visible;

}
#global_navi>ul>li:hover ul li {
}

#global_navi>ul>li:hover ul li a {
	display: block;
	color: #FFF;
	min-width: 120px;
	padding: 5px;
      
}
#global_navi>ul>li:hover ul li a:hover {
	color: #F08A0F;
}

/* パンくず
----------------------------------------------------*/

#breadcrumbs {
	max-width: 1040px;
	width: 100%;
	margin: 0px auto;
	padding: 10px 0px;
	font-size: 11px;
	margin-bottom: 25px;
}

/* コンテンツ
----------------------------------------------------*/

#content {
	width: 780px;
	float: right;
	padding-bottom: 20px;
}

/* サイドバー
----------------------------------------------------*/

#sidebar {
	width: 220px;
	float: left;
	padding-bottom: 20px;
}

/* ナビゲーション */

#sub_navi {
	margin: 0px 0px 20px 0px;
	position: relative;
}
#sub_navi h3 {
	font-weight: normal;
	font-size: 16px;
	color: #FFF;
	margin: 0px;
	padding: 8px 15px;
	background: #F08A0F;
	border-bottom: 3px solid #BEBBB5;
}
#sub_navi ul {
	list-style: none;
	margin: 0px;
	padding: 0px;
	border-bottom: 1px solid #BEBBB5;
}
#sub_navi ul li {
	position: relative;
}
#sub_navi ul li a {
	display: block;
	padding: 12px 0px;
	color: #000;
	text-decoration: none;
	border-top: 1px solid #BEBBB5;
}
#sub_navi ul li a:hover {
	background-color: #F8F8F8;
}
#sub_navi ul li a:before {
	font-family: Material Icons;
	content: "play_arrow";
	position: relative;
	top: 2px;
	color: #F08A0F;
	margin-right: 5px;
}
#sub_navi ul li ul {
	border-bottom: none;
}
#sub_navi ul li ul li a {
	border-top: 1px dashed #BEBBB5;
	padding-left: 15px;
}

/* フッタ
----------------------------------------------------*/

#footer {
	background: #F6F6F2;
	border-bottom: 3px solid #F08A0F;
	padding: 40px 0px 0px 0px;
}

/* お問合せ */

#footer_contact {
	margin: 0px 0px 30px 0px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
#footer_contact h2 {
	width: 220px;
	margin: 0px 0px 20px 0px;
	padding: 0;
}
#footer_contact p {
	margin: 0;
	padding: 0;
}

#footer_contact address {
        width: 60%;
	font-style: normal;
	background: #FFF;
	padding: 20px;
	border-radius: 5px;
	overflow: hidden;
}
#footer_contact address h3 {
	font-size: 13px;
	color: #FFF;
	background: #292;
	text-align: center;
	margin: 0px 0px 20px 0px;
	padding: 0px 10px;
	border-radius: 3px;
}
#footer_contact address .phone {
        width: 60%;
	float: left;
	font-weight: bold;
	font-size: 12px;
	background: url(../images/common/i_fd.png) no-repeat 0px 2px;
	padding-left: 40px;
	padding-right: 20px;
}
#footer_contact address .phone:first-line {
	font-size: 30px;
	line-height: 100%;
}
#footer_contact address .form {
	float: right;
}
#footer_contact address .form a {
	display: block;
	background: url(../images/common/i_contact.png) no-repeat 20px 12px #F08A0F;
	padding: 10px 20px 10px 60px;
	margin: 0;
	color: #FFF;
	text-decoration: none;
	border-radius: 3px;
}
#footer_contact address .form a:hover {
	background-color: #CC770E;
}

/* サイトマップ */

#footer_navi {
	border-top: 1px solid #BEBBB5;
	padding: 20px 0px;
	clear: both;
}
#footer_navi ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
#footer_navi>ul {
	display: flex;
	justify-content: space-between;
}
#footer_navi>ul>li ul {
	font-size: 12px;
	margin-left: 12px;
}
#footer_navi ul li:before {
	color: #F08A0F;
	content: '';
	font-family: Material Icons;
	content: "chevron_right";
	position: relative;
	top: 2px;
}
#footer_navi>ul>li:before {
	font-size: 13px;
	color: #FFF;
	background: #F08A0F;
	border-radius: 100%;
	margin-right: 5px;
}
#footer_navi a {	color: #000;text-decoration: none;}
#footer_navi a:hover {	color: #F08A0F;}

/* コピーライト */

#copyright {
	text-align: center;
	color: #555;
	font-size: 12px;
	margin-bottom: 5px;
}

/* スクロールボタン */

#scrolltop {
	position: fixed;
	right: 10px;
	bottom: 10px;
}
#scrolltop i {
	font-size: 30px;
	color: #FFF;
	background: #000;
	padding: 8px;
	border-radius: 100%;
	cursor: pointer;
	opacity: 0.2;
	transition: none;
}
#scrolltop i:hover {
	opacity: 0.5;
	transition: 0.3s;
}

/* アクセスボタン */

#access_btn {
	position: fixed;
	top: 332px;
	right: 0px;
}
#access_btn a {
	display: block;
	width: 55px;
	font-size: 16px;
	background: #F08A0F;
	color: #FFFFFF;
	font-weight: bold;
	text-decoration: none;
	padding: 15px 20px;
	text-align: center;
	line-height: 120%;
	border-bottom: 5px solid #BEBBB5;
}
#access_btn a:before {
    font-family: Material Icons;
    content: "train";
    width: 100%;
    padding: 5px 10px 5px 3px;
    border-radius: 100%;
    font-size: 22px;
    color: #F08A0F;
    background: #FFFFFF;
    margin-bottom: 10px;
    position: relative;
    left: -5px;
    display: block;
}
#access_btn a:hover {
	background-color: #CC770E;
}
#access_btn a:hover:before {
    color: #CC770E;
}
