@charset "utf-8";

@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:700&subset=japanese');

/*-------------------------------------------------------------------
　基本設定
-------------------------------------------------------------------*/
body{
	font-family:"游ゴシック体", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size:16px;
	line-height:1.8;
	color:#000000;
	-webkit-text-size-adjust:none;
}

/* ---- sp --------------------------- */
@media only screen and (max-width:768px){
body{
font-size:15px;
line-height:1.5;
}
}

/*-------------------------------------------------------------------
　header
-------------------------------------------------------------------*/
.hd_inner {
    width: 1000px;
    margin: 0 auto;
}

.hd_inner:after {
    content: "";
    clear: both;
    display: block;
}
 
#top-head {
    top: -100px;
    position: absolute;
    width: 100%;
    margin: 100px auto 0;
    padding: 25px 0 0;
    z-index: 999;
	border-top:5px solid #000;
    height: 55px;
    background: #fff;
}

#top-head h1{
	padding:0;
	margin:0;
	font-size:80%;
	display:none;
}

#top-head a,
#top-head {
    color: #000;
    text-decoration: none;
	font-family: "Yu Gothic";
	src: local("Yu Gothic Bold");
	font-weight:bold;
}

#top-head .hd_inner {
    position: relative;
}

#top-head .logo {
    float: left;
}

#top-head .logo img{
	width:300px;
	height:auto;
	-webkit-backface-visibility: hidden;
}

#global-nav ul {
    list-style: none;
    position: absolute;
    right: 0;
    bottom: 3px;
    font-size: 15px;
}

#global-nav ul li {
    float: left;
	position: relative;
	margin:0 10px;
}

#global-nav ul li a {
}

/* Btn Hover */
#global-nav ul li:after {
	position: absolute;
	bottom: -4px;
	left:0;
	content: "";
	display: block;
	width: 100%;
	height: 2px;
	transform: scale(0, 1);
  	transform-origin: center top;
  	transition: transform .3s;
	background: #000;
}

#global-nav ul li:hover:after {
	transform: scale(1, 1);
}

/*--- Fixed ----------*/
#top-head.fixed {
    margin-top: 0;
    top: 0;
    position: fixed;
    padding-top: 20px;
    height: 50px;
    background: #fff;
    background: rgba(255,255,255,1);
    transition: top 0.65s ease-in;
    -webkit-transition: top 0.65s ease-in;
    -moz-transition: top 0.65s ease-in;
	border-bottom:1px solid #000;
}

#top-head.fixed .logo {
	width:300px;
	height:auto;
	-webkit-backface-visibility: hidden;
}

#top-head.fixed #global-nav ul li a {
    float: left;
	position: relative;
	margin:0 0 0 0;
}
 
/*--- Toggle Button ---*/
#nav-toggle {
    display: none;
    position: absolute;
    right: 10px;
    top: 16px;
    width: 34px;
    height: 36px;
    cursor: pointer;
    z-index: 101;
}

#nav-toggle div {
    position: relative;
}

#nav-toggle span {
    display: block;
    position: absolute;
    height: 4px;
    width: 85%;
    background: #000;
    left: 0;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
}

#nav-toggle span:nth-child(1) {
    top: 0;
}

#nav-toggle span:nth-child(2) {
    top: 9px;
}

#nav-toggle span:nth-child(3) {
    top: 18px;
}

/* ---- ipad --------------- */
@media only screen and (max-width:1024px){
#top-head,
.hd_inner {
	width: 100%;
	padding: 0;
	border-bottom:1px solid #000;
}

#top-head {
	top: 0;
	position: fixed;
	margin-top: 0;
}

/* Fixed reset */
#top-head.fixed {
	padding-top: 0;
	background: transparent;
}

#mobile-head {
	background: #fff;
	width: 100%;
	height: 56px;
	z-index: 999;
	position: relative;
}

#top-head.fixed .logo,
#top-head .logo {
	position: absolute;
	left: 13px;
	top: 13px;
	color: #333;
}

#global-nav {
	position: absolute;
	/* 開いてないときは画面外に配置 */
	top: -500px;
	background: #333;
	width: 100%;
	text-align: center;
	padding: 10px 0;
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
}

#global-nav ul {
	list-style: none;
	position: static;
	right: 0;
	bottom: 0;
	font-size: 14px;
}

#global-nav ul li {
	float: none;
	position: static;
}

#top-head #global-nav ul li a,
#top-head.fixed #global-nav ul li a {
	width: 100%;
	display: block;
	color: #fff;
	padding: 7px 0;
	border-bottom:0px solid #DDD;
}

/* Btn Hover */
#global-nav ul li:after {
	display: none;
}

#nav-toggle {
	display: block;
}

/* #nav-toggle 切り替えアニメーション */
.open #nav-toggle span:nth-child(1) {
	top: 10px;
	-webkit-transform: rotate(315deg);
	-moz-transform: rotate(315deg);
	transform: rotate(315deg);
}

.open #nav-toggle span:nth-child(2) {
	width: 0;
	left: 50%;
}

.open #nav-toggle span:nth-child(3) {
	top: 10px;
	-webkit-transform: rotate(-315deg);
	-moz-transform: rotate(-315deg);
	transform: rotate(-315deg);
}

/* #global-nav スライドアニメーション */
.open #global-nav {
	/* #global-nav top + #mobile-head height */
	-moz-transform: translateY(556px);
	-webkit-transform: translateY(556px);
	transform: translateY(556px);
}
}

/* ---- sp ----------------- */
@media only screen and (max-width:768px){
#top-head.fixed .logo,
#top-head .logo {
	position: absolute;
	left: 13px;
	top: 18px;
}

#top-head .logo img{
	width:200px;
}
}

/*-------------------------------------------------------------------
　footer
-------------------------------------------------------------------*/
#footer{
	width: 100%;
	height: 400px;
	background-image: url(../images/footer_bg.jpg);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	position: relative;
	margin: 0 0 0 0;
	padding: 0;
}

#footerIn{
	width:800px;
	top:50%;
	left:50%;
	transform:translate(-50%, -50%);
	-webkit-transform:translate(-50%, -50%);
	text-align:center;
	z-index:10;
	position:absolute;
	color:#FFF;
}

h3.footerTit{
	text-align: center;
	font-size:30px;
	font-weight:bold;
	font-family: "Yu Mincho", "YuMincho", serif;
	margin:0 0 20px 0;
	-webkit-text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
	-moz-text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
	-ms-text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
	text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
}

.footerTx{
	text-align:center;
}

#footerBtn{
	display: flex;
	justify-content: center;
	align-items: center;
	margin:40px auto;
	font-size:20px;
	text-align:center;
	color:#000;
	font-weight:bold;
}

#footerBtn p{
	width: 30%;
	margin-right: 15px;
}

#footerBtn p:last-child{margin-right: 0;}

#telBtn a{
	padding:5px 0;
	background: rgba(255,255,255,0.9);
	display:block;
}

#faxBtn{
	padding:5px 0;
	background: rgba(255,255,255,0.9);
}

#contBtn a{
	padding:5px 0;
	background: rgba(255,255,255,0.9);
	display:block;
}

#telBtn a:hover,
#contBtn a:hover{
	opacity:0.8;
	filter: alpha(opacity=80);
}

#ft_line{
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 30px auto 0;
}

#ft_line p{
	margin: 0 8px;
}

#copyright{
	width:100%;
	clear:both;
	padding:15px 0;
	text-align:center;
	font-size:11px;
	background-color:#000;
	color:#FFF;
}



/* ---- ipad --------------- */
@media only screen and (max-width:1024px){
#footerIn{
	width:90%;
	text-align:left;
}
}

/* ---- sp ----------------- */
@media only screen and (max-width:767px){
#footer{
	width: 100%;
	height: 500px;
}

h3.footerTit{
	font-size:20px;
	margin:0 0 20px 0;
}

.footerTx{
	text-align:left;
}

#footerBtn{
	width:100%;
	flex-direction: column;
	margin:40px auto 0 auto;
	font-size:15px;
}

#footerBtn p{
	width: 70%;
	margin: 0 0 20px 0;
}

#footerBtn p:last-child{margin-bottom: 10px;}

#telBtn a{
	float:none;
	width:100%;
	padding:10px 0;
}

#faxBtn{
	padding:10px 0;
}

#contBtn a{
	float:none;
	width:100%;
	padding:10px 0;
}

#copyright p{
	width:90%;
	margin:0 auto;
}
}

@media only screen and (max-width:480px){
h3.footerTit{
	font-size:18px;
	margin:0 0 20px 0;
}

#footerBtn p{
	width: 80%;
}
}


/*-------------------------------------------------------------------
　tel link 
-------------------------------------------------------------------*/
[href^="tel"] {
    text-decoration: none;
    color: #333;
    cursor: default;
    pointer-events: none;
}

@media screen and (max-width: 768px) {
    [href^="tel"] {
        pointer-events: auto;
    }
}


/*-------------------------------------------------------------------
　共通
-------------------------------------------------------------------*/
.fL{float:left;}
.center{text-align:center;}

.fRed{color:#F40F2C;}
.fBold{font-weight:bold;}

.fOrange{
	color:#D96D00;
	font-weight:bold;
}

.MG-T10 { margin-top: 10px !important;}
.MG-T30 { margin-top: 30px !important;}
.MG-B0 { margin-bottom: 0px !important;}


section {
    margin-top: -100px;
	padding-top:100px;
}


