@charset "UTF-8";

* {
  box-sizing: border-box;
	-webkit-box-sizing: border-box;
	word-break: break-all;
	font-smoothing: antialiased;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-appearance: none;
	}

html {
	font-size: 62.5%;
	}

body {
  font-size: 14px;
  font-size: 1.4rem;
	color: #333;
	line-height: 1.5;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	position: relative;
	}
	
p {
	line-height: 24px;
	}
	
/*ヘッダー
--------------------------------------------*/
header {
	}
	
header .inner {
	padding: 25px 0;
	}
	
header .inner ul li {
	float: left;
	margin-left: 20px;
	}
	
header .inner ul li:first-child {
	margin-left: 0;
	}
	
h1 {
	font-size: 10px;
	margin: 0 0 10px 0;
	letter-spacing: 1px;
	}
	
header p a {
	font-size: 10px;
	color: #333;
	text-decoration: none;
	}
	
header .icon {
	background: url(../img/arrow01.png) no-repeat ;
	background-position: left center;
	font-size: 10px;
	text-decoration: none;
	padding-left: 10px;
	}


/*nav
--------------------------------------------*/
nav {
	width: 100%;
	height: 35px;
	margin-top: 10px;
	}

nav ul {
	width: 960px;
	margin: auto;
	}

nav ul li {
	width: 192px;
	text-align: center;
	float: left;
	border-right: 1px solid #999;
	}

nav ul li:first-child {
	border-left: 1px solid #999;
	}

nav ul li a {
	color: #333;
	position: relative;
  display: block;
  text-decoration: none;
	letter-spacing: 2px;
	font-size: 15px;
	}
	
nav ul li a:hover,
nav ul li.ac a {
	color: #ad007f;
	}	

nav ul li a::before {
	content: '';
	position: absolute;
	bottom: -13px;
	left: 0;
	width: 100%;
	height: 2px;
	transform: scaleX(0);
	-webkit-transform:scaleX(0);
	background: #6a0078;
	background: -moz-linear-gradient(left, #6a0078 0%, #c4007c 100%);
	background: -webkit-linear-gradient(left, #6a0078 0%,#c4007c 100%);
	background: linear-gradient(to right, #6a0078 0%,#c4007c 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6a0078', endColorstr='#c4007c',GradientType=1 );
	transition: all .3s ease;
	}

nav ul li a:hover::before,
nav ul li.ac a::before {
	transform: scaleX(1);
	-webkit-transform:scaleX(1);
	}
	
#navBtn {
	display: none;
	}

/*フォーム
--------------------------------------------*/
form .textField { width:250px;}
form .textArea { width:480px; height:200px; resize: vertical;}
form .telephone { width:200px;}
.formBtn {
	width: 200px;
	padding: 10px;
	border: none;
	border-radius: 5px;
	color: #fff !important;
	text-decoration: none !important;
	background-color: #ffcc33;
}

.backBtn {
	width: 200px;
	padding: 10px;
	border: none;
	border-radius: 5px;
	color: #fff !important;
	text-decoration: none !important;
	background-color: #ddd;
}

table.formTable {
	width: 100%;
	}
	
table.formTable th {
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: bold;
	width: 30%;
	padding: 5px 30px 10px 10px;
	vertical-align: top;
	}
	
table.formTable td {
	width: 70%;
	padding-bottom: 30px;
	}
	
table.formTable th b {
	color: red;
	margin-left: 5px;
	}
	
table.formTable span {
	font-size: 12px;
	color: #999;
	margin-left: 10px;
	}
	
table.formTable input[type=text],
table.formTable textarea,
table.formTable select {
  border: none;
  background: #f5f5f5;
  padding: 10px 10px;
  border-radius: 4px;
	}


/*footer
------------------------------------------*/
footer {
	background: url(../img/footer_bg.png) repeat-x;
	margin-top: 30px;
	}

footer .inner {
	color: #666;
	}

footer ul {
	width: 600px;
	font-size: 13px;
	padding: 15px 0;
	}

footer ul li {
	float: left;
	width: 140px;
	margin: 3px 0;
	}

footer ul li a {
	color: #FFF;
	background: url(../img/arrow02.png) no-repeat left center;
	padding-left: 15px;
	text-decoration: none;
	}

footer .pageTop {
	display: inline-block;
	background: url(../img/arrow03.png) no-repeat 10px center #666;
	padding: 5px 10px 5px 30px;
	position: absolute;
	top: 0;
	right: 0;
	color: #fff;
	text-decoration: none;
	}

footer p {
	font-size: 12px;
	}

footer p.address {
	margin: 20px 0;
	}

footer p.address strong {
	font-size: 14px;
	display: block;
	}

footer p.copyright {
	bottom: 0;
	right: 0;
	position: absolute;
	}


@media screen and (max-width:480px) {
	h1,.textLink {
		display: none;
		}
		
	header .inner {
		padding: 10px;
		}
		
	header .inner img {
		width: 224px;
		}

	nav ul li:first-child {
		border-left: none;
		border-top: 1px solid #ccc;
		}
		
	nav {
		position: absolute;
		height: auto;
		margin: 0;
		z-index: 100;
		}
		
	nav ul {
		width: 100%;
		display: none;
		z-index: 100;
		}
		
	nav ul li {
		float: none;
		width: 100%;
		border-bottom: 1px solid #ccc;
		border-right: none;
		}
		
	nav ul li a::before {
		display: none;
		}
		
	nav ul li:first-child {
		border-left: none;
		}
		
	nav ul li a {
		padding: 15px;
		background-color: rgba(255,255,255,0.92);
		}
	
	#navBtn {
		position: absolute;
		top: 12px;
		right: 10px;
		background: #000;
		border-radius: 5px;
		color: #FFF;
		padding: 5px;
		display: inline-block;
		z-index: 10;
		}
	
	/*footer
	------------------------------------------*/
	footer {
		background: url(../img/footer_bg.gif) repeat-x;
		margin-top: 30px;
		}
	
	footer .inner {
		height: auto;
		padding: 0;
		text-align: center;
		}
	
	footer ul {
		width: initial;
		padding: 0;
		margin-left: -1px;
		background: #000;
		}
	
	footer ul li {
		float: left;
		width: 50%;
		margin: 0;
		}
		
	footer ul li:first-child{
		width: 100%;
		}
	
	footer ul li a {
		display: block;
		padding: 10px 10px 10px 10px;
		border-bottom: 1px solid #FFF;
		border-left: 1px solid #FFF;
		background: none;
		}
	
	footer .pageTop {
		display: block;
		background: url(../img/arrow03.png) no-repeat center 15px #ddd;
		text-align: center;
		padding: 28px 10px 10px 10px;
		position: static;
		}
	
	footer p {
		text-align: center;
		}
	
	footer p.address {
		bottom: 0;
		left: 0;
		}
	
	footer p.copyright {
		font-size: 10px;
		padding: 10px;
		margin: 0;
		position: static;
		border-top: 1px solid #ccc;
		}
		
		
	/*form
	------------------------------------------*/
	form .textArea {
		width: 100%;
	}
	
	form .textField {
    width: 100%;
	}
	form .telephone {
		width: 100%;
	}
	table.formTable th{
		width: 100% !important;
		display: block;
		padding: 10px;
		margin-bottom: 10px;
		background-color: #f2efd2;
		}
		
	table.formTable td{
		width: 100%;
		display: block;
		padding: 0 5px;
		margin-bottom: 15px;
		}
		
	table.formTable span {
		display: block;
		margin: 5px 0 0 0;
		}
			
	.formBtn {
		width: 100%;
		padding: 10px 50px;
		}
	
	.backBtn {
		width: 100%;
		padding: 10px 50px;
		}
}
