@charset "UTF-8";

/*
-- CSS Information --
File Name: css3.css
Author: Koji Kamiya
Info:基本スタイル
---------------------
*/

/*リセット*/
* {
	margin: 0;
	padding: 0;
}
img {
	border: none;
}

html {
	height: 100%;
} 

body {
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", 'メイリオ' , Meiryo , Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	background-color: #FFF;
	height: auto;
	margin: 0;
	padding: 0;
	position: relative;
	min-height: 480px;
	min-width: 240px;
	-webkit-text-size-adjust: 100%;
	-mos-text-size-adjust: 100%;
	-o-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

/*躯体*/
header {
	width: 100%;
	height: auto;
	background-color: #FFF;
	float: left;
	position: fixed;
	left: 0;
	top: 0;
	border-bottom: solid thin #f5b2ac;
	/*box-shadow: 0 0 5px 5px rgba(0,0,0,0.2);*/
	z-index: 201;
}

nav {
	width: auto;
	height: auto;
	float: right;
}

main {
	width: auto;
	height: auto;
	margin: 0 auto;
	overflow: hidden;
	padding: 0;
	background-color: #FFF;
	clear: both;
	margin-top: 80px;
}

@media only screen and (max-width: 640px){
	
	main {
		margin-top: 60px;
	}


}

section {
	width: 100%;
	height: auto;
	background-color: #FFF;
	overflow: hidden;
}

article {
}

footer {
	text-align: center;
	line-height: 200%;
	max-width: 100%;
	height: 100%;
	margin: 0 auto;
	left: 0;
	bottom: 0;
	z-index: 201;
	border-bottom: solid thick #f5b2ac;
}

/*見出し*/
h1 {
	margin: 0;
	color: #FFF;
	font-size: x-large;
	line-height: 120%;
}

h2 {
	color: #f5b2ac;
	font-size: x-large;
	text-align: center;
	line-height: 180%;
	margin: 30px auto;
	padding: 20px 0 10px 0;
	clear: both;
}

h3 {
	color: #FFF;
	font-size: x-large;
	text-align: center;
	line-height: 180%;
	margin: 10px auto;
	clear: both;
}

h4 {
	color: #334;
	font-size: medium;
	line-height: 140%;
	margin: 0 0 10px 0;
	clear: both;
	border-bottom: thin #f5b2ac solid;
}

.lb-caption h4 {
	color: #f5b2ac;
}

h5 {
	color: #f5b2ac;
	font-size: small;
	line-height: 120%;
	margin: 0;
	clear: both;
}

h6 {
	color: #f5b2ac;
	font-size: x-small;
	line-height: 100%;
	margin: 0;
	clear: both;
}

/*段落*/
p {
    color: #334;
	line-height: 180%;
    margin: 0;
    padding: 0;
	/*text-align: left;*/
}

@media only screen and (max-width: 640px){
	p {
	line-height: 140%;
	}
}

.fill p {
	font-size: 16px;
    color: #FFF;
    margin: 0;
    margin: 0 0 20px 0;
    padding: 8px;
}

footer p {
	color: #f5b2ac;
	font-size: medium;
}

/*リンクテキスト*/
a {
	color: #f5b2ac;
	-webkit-transition: all 0.25s linear;
	-moz-transition: all 0.25s linear;
	-o-transition: all 0.25s linear;
	transition: all 0.25s linear;
}

.fill a {
	color: #FFF;
	-webkit-transition: all 0.25s linear;
	-moz-transition: all 0.25s linear;
	-o-transition: all 0.25s linear;
	transition: all 0.25s linear;
}

a:hover {
	color: #0CF;
}

/*コンテナ*/
.container {
	width: auto;
	max-width:  960px;
	height: 100%;
	margin: 0 auto;
	overflow: hidden;
}
/*@media only screen and (max-width: 960px){
	.container {
		width: auto;
		max-width: 960px;
		margin: 0 auto;
	}
}
@media only screen and (max-width: 479px){
	.container {
		min-width: 320px;
		width: auto;
		margin: 0 auto;
	}
}
*/
/*コンテンツ*/
.para {
	-webkit-background-size: 5px 5px;
	-moz-background-size: 5px 5px;
	background-size: 5px 5px;
	background-color: #FFF;
}

#header_content {
	width: auto;
	max-width:  960px;
	height: 100%;
	margin: 0 auto;
	overflow: hidden;
}

#header_logo a {
	background-image: url(../images/header_logo.svg);
	background-repeat: no-repeat;
	background-position: top left;
	width: 250px; /*ロゴに合せて変更*/
	height: 64px; /*ロゴに合せて変更*/
	float: left;
	margin: 8px;
	clear: both;
	-webkit-transition: all 1s linear;
	-moz-transition: all 1s linear;
	-o-transition: all 1s linear;
	transition: all 1s linear;
}

@media only screen and (max-width: 640px){
	#header_logo a {
		background-image: url(../images/header_logo_mini.svg);
		width: 200px;
		height: 40px; /*ロゴに合せて変更*/
		margin: 10px 8px;
	}
}

#header_text {
	display: block;
	width: auto;
	float: left;
	margin: 0;
}

.contents {
	width: auto;
	height: 100%;
	margin: 0 auto;
	overflow: hidden;
}

/*@media only screen and (max-width: 960px){
	
	main .contents {
		max-width:  640px;
		width: auto;
		height: 100%;
		margin: 0 auto;
		overflow: hidden;
	}
}*/

.center {
	text-align: center;
}

.right {
	text-align: right;
}

.left {
	text-align: left;
}

.nowrap {
    white-space: nowrap
}

.small {
	font-size: small;
}

.icon {
	font-size: 60px;
}

.clearfix {
	clear: both;
}

.single {
	float: left;
	width: 98%;
	min-height: auto;
	margin: 0 1% 60px 1%;
	padding: 0;
}

.double {
	float: left;
	width: 48%;
	min-height: auto;
	margin: 0 1% 60px 1%;
	padding: 0;
}

.triple {
	float: left;
	width: 31.3%;
	height: 100%;
	margin: 0 1% 60px 1%;
	padding: 0;
}

.quadruple {
	float: left;
	width: 24%;
	height: 100%;
	margin: 0 0.5% 60px 0.5%;
	padding: 0;
}

@media only screen and (max-width: 960px){
	
	.double {
		float: left;
		width: 98%;
		height: 100%;
		margin: 0 1% 30px 1%;
		padding: 0;
	}
	
	.triple {
		float: left;
		width: 31.3%;
		height: 100%;
		margin: 0 1% 30px 1%;
		padding: 0;
	}

	.quadruple {
		float: left;
		width: 48%;
		min-height: auto;
		margin: 0 1% 30px 1%;
		padding: 0;
	}
	
	.double:nth-child(odd),
	.quadruple:nth-child(odd) {
		clear: both;
	}
}

@media only screen and (max-width: 640px){
	
	.double,
	.triple,
	.quadruple
	 {
		float: left;
		width: 100%;
		height: 100%;
		margin: 0 0 30px 0;
		padding: 0;
	}

}

.top {
	line-height: 200%;
	width: auto;
	height: 100%;
	padding: 0;
	
}

.top img {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
}

.bottom {
	line-height: 200%;
	width: auto;
	height: 100%;
	padding: 0 20px;
}

.fill{
	background-color: #f5b2ac;
}

/*サムネイル*/
.thumb {
	width: 24.6%;
	margin: -0.5% 0 0 0;
	padding: 0 0.2% 0 0;
	float: left;
}

@media only screen and (max-width: 640px){

	.thumb {
		width: 49.5%;
		margin: -1% 0 0 0;
		padding: 0 0.5% 0 0;
	}

}

.thumb img {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
}

.thumb a {
	opacity: 1.0;
}

.thumb a:hover {
	opacity: 0.5;
}

.price {
	width: 100%;
	margin: 0 auto 20px auto;
}

.price tbody tr td {
    color: #336;
	padding-bottom: 0;
	border-bottom: solid thin #CCC;
}

.price tbody tr td:nth-child(even){
	/*color: #f5b2ac;*/
	text-align: right;
}

/*ブログフィードの取得*/
#rssArea article img {
	width: 100%;
	height:auto;
	margin: 10px 10px 0 auto;
	display: block;
}

#rssArea article a {
	text-decoration: none;
}

#rssArea article p {
	width: auto;
	height:auto;
	margin: 10px 10px 0 auto;
	clear: both;
}




@media only screen and (max-width: 960px){
	#rssArea div .quadruple:nth-child(odd){
		clear: both;
	}
}
	
.office tr th img {
	margin: 5px 5px 0 0;
}

.office tr td,
.open tr th,
.open tr td {
	font-weight: normal;
	text-align: left;
	padding: 10px 0 10px 0;
}

#contact form{
	max-width:  960px;
	margin: 0 auto;
	/*text-align: center;*/
}

#contact table {
	width:  100%;
	border: none;
	margin: 0 auto 10px;
}

#contact th {
	background-color: #EEE;
	max-width: 240px;
	text-align: left;
	font-size: small;
	font-weight: normal;
	margin: 0;
	padding: 0 0 0 2px;
	border: solid #DDD thin;
}

#contact td {
	background-color: #FFF;
	width: auto;
	text-align: left;
	font-size: small;
	margin: 0;
	padding: 0 0 0 2px;
	border: solid #DDD thin;
}

#contact form input,
#contact form textarea {
	width: 100%;
	margin: 0;
	padding: 0;
	border: none;
}

#contact form .btn {
	font-weight: normal;
	width: 80px;
	height: 30px;
	background-color: #EEE;
	border: solid #DDD thin;
	border-radius: 0;
	-webkit-transition: all 0.25s linear;
	-moz-transition: all 0.25s linear;
	-o-transition: all 0.25s linear;
	transition: all 0.25s linear;
}

#contact form .btn:hover {
	background-color: #FFF;
}

#main_image {
	width: 100%;
	height: auto;
	background-color: #FFF;
	overflow: hidden;
	height: 480px;
	background-image: url(../images/comp-493613.jpg);
	background-position: top center;
	background-repeat:no-repeat;
	-moz-background-size:cover;
	background-size:cover;
	position: relative;
	z-index: 15;
}

#catch {
	display: block;
	color: #FFF;
	text-align: center;
	overflow: auto;
	height: 100%;
	width: auto;
	margin: 96px 5% 0;
	z-index: 16;
	-moz-filter: drop-shadow(2px 2px 1px #888);
	-webkit-filter: drop-shadow(2px 2px 1px #888);
	filter: drop-shadow(2px 2px 1px #888);
}

#mark {
	background-image: url(../images/main_logo.svg);
	background-repeat: no-repeat;
	background-position: top left;
	overflow: auto;
	height: 180px;
	width: 300px;
	position: absolute;
	top: 250px;
	left: 50%;
	margin-top: -90px;
	margin-left: -150px;
	z-index: 16;
	-moz-filter: drop-shadow(2px 2px 1px #888);
	-webkit-filter: drop-shadow(2px 2px 1px #888);
	filter: drop-shadow(2px 2px 1px #888);
}

#section1 {
	min-height: 480px;
	background-color: #FFF;
	position: relative;
	z-index: 25;
	border-bottom: solid thin #f5b2ac;
}

#section2 {
	min-height: 480px;
	background-color: #F9F9F9;
	position: relative;
	z-index: 26;
	border-bottom: solid thin #f5b2ac;
}
#section3 {
	min-height: 480px;
	background-color: #FFF;
	position: relative;
	z-index: 27;
	border-bottom: solid thin #f5b2ac;
}
#section4 {
	min-height: 480px;
	background-color: #F9F9F9;
	position: relative;
	z-index: 28;
	border-bottom: solid thin #f5b2ac;
}
#section5 {
	min-height: 480px;
	background-color: #FFF;
	position: relative;
	z-index: 29;
}

/*トグルメニュー*/
/*--------------------------------
 Functional Styles (Required)
---------------------------------*/

.header { position: relative; }
#toggle, .toggle { display: none; }
.menu > li { list-style: none; float:left;	}

/* Nicolas Gallagher micro clearfix */
.clearfix:before, .clearfix:after { display: table; content: ""; }
.clearfix:after { clear: both; }

@media only screen and (max-width: 960px){
	.menu { display: none; opacity: 0; width: 100%; position: absolute; right: 0; }
	.menu > li { display: block; width: 100%; margin: 0; }
	.menu > li > a { display: block; width: 100%; text-decoration: none; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
	.toggle { display: block; position: relative; cursor: pointer; -webkit-touch-callout: none; -webkit-user-select: none; user-select: none; }
	#toggle:checked + div .menu { display: block; opacity: 1;}
}

/*--------------------------------
 Presentation Styles (Editable)
---------------------------------*/

nav{ 
	display: block; 
	float: right;
}

nav, .menu, .menu > li, .menu > li > a{ 
	height: 100%; 
}

.menu > li > a{
	display: block;
	padding: 32px 20px;
	text-decoration: none;
	font-weight: normal;
	font-size: 16px;
	color: #666;
	line-height: 1;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box; 
	box-sizing: border-box;
	-webkit-transition: all 0.25s linear;
	-moz-transition: all 0.25s linear;
	-o-transition: all 0.25s linear;
	transition: all 0.25s linear;
}

.menu > li > a:hover, .menu > li > a:focus, .menu > li > a.current{
	background: #F2F2F2;
	box-shadow: inset 0px -5px #f5b2ac;
	color: #f5b2ac;
	/*padding: 46px 20px 34px;*/
}

.toggle { 
	z-index: 2; 
}

@media only screen and (max-width: 960px){
	.menu{
		background: #FFFFFF;
		border-top: 1px solid #f5b2ac;
	}
	
	.menu, .menu > li, .menu > li > a{
		height: auto;
	}
	
	.menu > li > a{
		padding: 15px 15px;
	}
	
	.menu > li > a:hover, .menu > li > a:focus, .menu > li > a.current{
		background: #F2F2F2;
		box-shadow: inset 5px 0 #f5b2ac;
		padding: 15px 15px 15px 25px;
	}
	
	
	/*メニューボタンバーガーの場合*/
	.toggle .berger {
		display: block;
		width: 36px;
		height: 36px;
		margin: 16px 8px 32px;
		padding: 15px 5px;
		background: tranceparent;
		border-radius: 10px;
    		webkit-border-radius: 10px;
    		-moz-border-radius: 10px;
		-webkit-transition: all 0.5s linear;
		-moz-transition: all 0.5s linear;
		-o-transition: all 0.5s linear;
		transition: all 0.5s linear;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
	}
	
	.toggle .berger span{
		position: absolute;
		left: 0;
		width: 24px;
		height: 3px;
		margin: 2px 16px;
		background-color: #f5b2ac;
		border-radius: 1.5px;
	}
	
	.toggle .berger span:nth-of-type(1) {
		top: 12px;
	}
	.toggle .berger span:nth-of-type(2) {
		top: 20px;
	}
	.toggle .berger span:nth-of-type(3) {
		top: 28px;
	}
	
	.toggle .berger:hover{
		background: #FFF;
	}
	
	#toggle:checked + div .toggle .berger{
		
	}
	
	#toggle:checked + div .toggle .berger span:nth-of-type(1) {
		-webkit-transform: translateY(8px) rotate(-45deg);
		transform: translateY(8px) rotate(-45deg);
	}
	#toggle:checked + div .toggle .berger span:nth-of-type(2) {
		opacity: 0;
	}
	#toggle:checked + div .toggle .berger span:nth-of-type(3) {
		-webkit-transform: translateY(-8px) rotate(45deg);
		transform: translateY(-8px) rotate(45deg);
	}
	
	/*メニューボタン文字列の場合*/
	/*
	.toggle:after {
		content: attr(data-open);
		display: block;
		width: 48px;
		height: 48px;
		margin: 16px 10px;
		padding: 15px 5px;
		background: #f5b2ac;
		border-radius: 10px;
    		webkit-border-radius: 10px;
    		-moz-border-radius: 10px;
		text-align: center;
		font-size: 12px;
		color: #FFF;
		-webkit-transition: all 0.5s linear;
		-moz-transition: all 0.5s linear;
		-o-transition: all 0.5s linear;
		transition: all 0.5s linear;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
	}
	
	.toggle:hover:after{
		background: #0CF;
	}
	
	#toggle:checked + div .toggle:after{
		content: attr(data-close);
	}*/
}


@media only screen and (max-width: 640px){
	/*メニューボタンバーガーの場合*/
	.toggle .berger {
		margin: 6px 8px 16px;
	}
	
	/*.header > h1 { 
		text-align: center;
	}
	.header > h1, .nav, .toggle:after{ 
		float: none; 
	}
	.toggle:after { 
		text-align: center; width: 100%; 
	}*/
}

/*pageTop*/
#pageTop {
	position: fixed;
	z-index: 300;
	bottom: 40px;
	right: 50px;
    box-shadow:0 0 5px #fff, 0 0 5px #ccc, 0 0 1px #aaa;
    -webkit-box-shadow:0 0 5px #fff, 0 0 5px #ccc, 0 0 1px #aaa;
    -moz-box-shadow:0 0 5px #fff, 0 0 5px #ccc, 0 0 1px #aaa;
}
#pageTop a {
	width: 60px;
	height: 60px;
	display: block;
	text-align: center;
	text-decoration: none;
	color: #f5b2ac;
    border: 1px solid #f5b2ac;
    background-color: #FFF;
	opacity: 0.7;
	/* background color transition */
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
}
#pageTop a:hover {
	background: #f5b2ac;
	color: #FFF;
	opacity: 1.0;
}

/* arrow icon (span tag) */
#pageTop {
	font-size: 28px;
	line-height: 200%;
}

@media only screen and (max-width : 640px) {
	#pageTop {
		position: fixed;
		bottom: 10px;
		right: 30px;
	}
	#pageTop a {
		width: 40px;
		height: 40px;
	}
	#pageTop {
		margin-top: 7px;
		font-size: 20px;
	}
}
