@charset "utf-8";

html{
	/*font-size: 10px;*/
	font-size: 62.5%;
}

body {
  font-family:'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro',sans-serif;
	line-height: 1.8;
	letter-spacing: 0;
	color: #333333;
	overflow-x: hidden;
}

.clearFix:after,
article:after,
.content:after,
#pageTop:after,
.gallery:after{
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
	_zoom: 1;
}

*:first-child+html .clearFix:after,
*:first-child+html article:after,
*:first-child+html .content:after,
*:first-child+html #pageTop:after,
*:first-child+html .gallery:after{ zoom: 1; } /* IE7 */

a,a img,input[type="button"],
input[type="submit"],
input[type="reset"],
input[type="image"]{
	-webkit-transition: 0.2s ease-out;
	-moz-transition: 0.2s ease-out;
	-o-transition: 0.2s ease-out;
	-ms-transition: 0.2s ease-out;
}

a:hover img,
input[type="button"]:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="image"]:hover{
	filter:alpha(opacity=50);
	-moz-opacity: 0.5;
	opacity: 0.5;
}

hr{
	display: block;
  max-width: 110vw;
	margin: 50px -5% 50px;
	height: 1px;
  border: 0 none;
  color: #CCCCCC;
  background-color: #CCCCCC;
	clear: both;
}

.alignleft{
	margin: 0 30px 30px 0;
	float: left;
}

.alignright{
	margin: 0 0 30px 30px;
	float: right;
}

.aligncenter{
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.alignnone{ vertical-align: top;}

.alignleft,.alignright,.aligncenter,.alignnone{
	max-width: 100%;
	height: auto;
}

img{
	max-width: 100%;
	height: auto;
}

.moreBtn{ margin: 15px 0;}

.moreBtn a{
  position: relative;
	display: inline-block;
	min-width: 300px;
	padding: 15px 40px 15px 15px;
  border: 3px solid #2C1F86;
	color: #2C1F86;
	font-size: 17px;
	font-size: 1.7rem;
  font-family: '新ゴ M', sans-serif;
	text-decoration: none;
  font-weight: bold;
}
.moreBtn a::after{
  content: '';
  position: absolute;
  top: 26px;
  right: 20px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #2C1F86;
  border-right: 2px solid #2C1F86;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: 10;
}

.moreBtn a:hover{
  background: #2C1F86;
  color: #FFFFFF;
	text-decoration: none;
}

.moreBtn a:hover::after{
  border-top: 2px solid #FFFFFF;
  border-right: 2px solid #FFFFFF;
}

/**************************************************
 header
**************************************************/
header{
  width: 90%;
  max-width: 1100px;
	margin: 0 auto;
	padding: 20px 15px;
	display:-webkit-box;
	display:-moz-box;
	display:-ms-box;
	display:-webkit-flexbox;
	display:-moz-flexbox;
	display:-ms-flexbox;
	display:-webkit-flex;
	display:-moz-flex;
	display:-ms-flex;
	display:flex;
	-webkit-box-lines: multiple;
	-moz-box-lines: multiple;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;/*--- IE10 ---*/
	-webkit-box-align: center;/*--- Androidブラウザ用 ---*/
	-ms-flex-align: center;/*--- IE10 ---*/
	-webkit-align-items: center;/*--- safari（PC）用 ---*/
	align-items: center;
}

h1{
	margin: 0;
	padding: 0;
  margin-right: auto;
}

h1 img.sp{ display: none;}

.icon{ margin: 0 20px 0 0;}
.icon a{ margin: 0 5px;}

/**************************************************
 globalNavi
**************************************************/
#globalNavi{
  border-top: 1px solid #2D1F87;
	margin: 0;
	padding: 0;
}

#globalNavi.open { transform: translate(0);}

#globalNavi ul{
  display:table;
  width: 90%;
  max-width: 1200px;
  height: 100%;
	margin: 0 auto;
	padding: 15px;
  letter-spacing: -.4em; /* 文字間を詰めて隙間をなくす */
}

#globalNavi ul li{
  display: table-cell;
  width: 16%;
	margin: 0;
	padding: 0;
  border-right: 1px dotted #999999;
	font-size: 18px;
	font-size: 1.8rem;
	line-height: 1;
  vertical-align:middle;
	list-style: none;
  letter-spacing: normal; /* 文字間を元に戻す */
}

#globalNavi ul li:nth-child(2){ width: 20%;}
#globalNavi ul li:last-child{ border-right: none;}

#globalNavi ul li a{
	display: block;
  width: 100%;
	padding: 15px;
	color: #000000;
  text-align: center;
  vertical-align: middle;
}

#globalNavi ul li a:hover{
	color: #2D1F87;
  text-decoration: none;
}


/** menu ********************/
#menu{
	position: absolute;
	top: 0;
	right: 0;
	display: none;
	overflow: hidden;
	width: 60px;
	height: 60px;
	cursor: pointer;
	border: none;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 80%;
	background-image: url(../img/menu.png);
	background-color: #2C1F86;
	z-index: 3000;
}

#menu.choice{
	background-color: #4EB43F;
	background-image: url(../img/pull.png);
}

/**************************************************
 shipperHanger
**************************************************/
.shipperHanger{
	margin: 0;
	padding: 30px 15px;
	background: url("../img/bg_ship.png") repeat 0 0;
	text-align: center;
}

.shipperHanger img{ vertical-align: middle;}

/**************************************************
 pageTop
**************************************************/
#pageTop{
	position: fixed;
	display: flex;
	justify-content: flex-end;
	margin:  0 0 0 auto;
	width: 60px;
	height: 60px;
  background: #70AF3A;
	cursor: pointer;
	z-index: 2100;
	right: 10px;
	bottom: -80px;
	-webkit-transition: 0.2s ease-out;
	-moz-transition: 0.2s ease-out;
	-o-transition: 0.2s ease-out;
	-ms-transition: 0.2s ease-out;
}

#pageTop img{
	transition: .3s ;
	transform: rotateZ( 0deg ) ;
}
#pageTop img:hover{ transform: rotateZ( 360deg );}

/**************************************************
 footer
**************************************************/
footer{
	margin: 30px 0 0 0;
  background: #F5F6F7;
  border-top: 1px solid #EDEEEF;
}

footer .inner{
  max-width: 800px;
	margin: 0 auto;
	display:-webkit-box;
	display:-moz-box;
	display:-ms-box;
	display:-webkit-flexbox;
	display:-moz-flexbox;
	display:-ms-flexbox;
	display:-webkit-flex;
	display:-moz-flex;
	display:-ms-flex;
	display:flex;
	-webkit-box-lines: multiple;
	-moz-box-lines: multiple;
	-webkit-box-pack: justify;/*--- AndroidÃ£Æ’â€“Ã£Æ’Â©Ã£â€šÂ¦Ã£â€šÂ¶Ã§â€Â¨ ---*/
	-ms-flex-pack: justify;/*--- IE10 ---*/
	-webkit-justify-content: space-between; /* Safari */
	justify-content: space-between;
	-webkit-box-align: center;/*--- Androidブラウザ用 ---*/
	-ms-flex-align: center;/*--- IE10 ---*/
	-webkit-align-items: center;/*--- safari（PC）用 ---*/
	align-items: center;
	flex-wrap: wrap;
}

footer .map{ margin: -20px 0 0 0;}

.ft_add{ width: 50%;}

.add_title{
	font-size: 24px;
	font-size: 2.4rem;
  font-family: '新ゴ M', sans-serif;
}

footer p{
	margin: 0;
	padding: 8px 0;
	font-size: 15px;
	font-size: 1.5rem;
}

footer p a{ color: #2C1F86;}
footer p a:hover{
  color: #00A3D9;
  text-decoration: none;
}

/**************************************************
 Responsive
**************************************************/

@media (min-width: 751px) {
    a[href*="tel:"] {
        pointer-events: none;
        cursor: default;
        text-decoration: none;
    }
}

@media screen and (max-width: 640px){
	
	hr { margin: 20px 0;}
	
	.alignleft,.alignright,.aligncenter,.alignnone{
		width: auto;
		margin: 0 auto 10px auto;
		float: none;
		display: block; 
	}	
	p .aligncenter{	margin: 0 auto;}
	
	.moreBtn a{ min-width: inherit;}

	/** header ********************/
	header{
		display: block;
		width: 100%;
    max-width: none;
		height: 60px;
		margin: auto;
		padding: 0;
	}
	
	h1{
		display: inline-block;
		width: auto;
		margin: 10px;
		height: 40px;
		line-height: 0;
	}
	
	h1 img{
		width: auto;
		height: 100%;
		margin: 0 5px 0 0;
		vertical-align: middle;
	}
  
  h1 img.pc{ display: none;}
  h1 img.sp{ display: block;}
	
  .icon,
  .jimin{ display: none;}
	
	#menu{ display: block;}
	
	/** globalNavi ********************/
	#globalNavi{
		position: fixed;
		top: 60px;
		right: 0;
		z-index: 1000;
		width: 280px;
		height: 100%;
		background-color: #F5F6F7;
    border-top: none;
		transition: all 0.2s;
		transform: translate(280px);
	}
	
	#globalNavi.open { transform: translate(0);}
	
	#globalNavi ul{
    flex-wrap: wrap;
    width: 100%;
    padding: 0;
  }
	
	#globalNavi ul li{
    display: block;
		width: 100% !important;
		margin: 0;
    border-bottom: 1px dotted #CCCCCC;
		text-align: left;
	  font-size: 15px;
	  font-size: 1.5rem; 
	}  

  #globalNavi ul li br{ display: none;}

  #globalNavi ul li:last-child{ border: none;}
	
	#globalNavi ul li.inq{ margin: 0;}
	
	#globalNavi ul li.tel{ margin: 0;}
	
	#globalNavi ul li a{
		display: block;
		width: 100%;
    padding: 
    20px 15px;
		border-radius: 0;
	}
	#globalNavi ul li a:hover{ border-radius: 0;}	
	#globalNavi ul li a::after{ display: none;}
	

	/** pageTop ********************/	
	#pageTop{
		width: 40px;
		height: 40px;
	}

	/** footer ********************/
  footer .inner{ padding: 15px;}
  
  footer .map{
    width: 100%;
    text-align: center;
  }
  footer .map img{ width: 40%;}
  
  footer .add{
    width: 100%;
    text-align: center;
  }
  
  footer p{
	  font-size: 13px;
	  font-size: 1.3rem;  
  }
  
}