﻿@charset "utf-8";

/*---------------------------------------------------------
    全ページ共通CSS
----------------------------------------------------------*/

html {
	background-image:linear-gradient(-179deg, rgba(156, 229, 229, 0.37) 0%, #efd3c5 100%);
	background-color:#eee;	
	}
	
#wrapper {
	width:100%;
	overflow:hidden;
	position:relative;
	}
	

#fade {
	width: 100%;
	height: 100%;
	display: none;
	position: absolute;
	background-image:linear-gradient(-179deg, rgba(156, 229, 229, 0.37) 0%, #efd3c5 100%);
	background-color:#eee;	
	top: 0px;
	left: 0px;
	z-index: 11;
}

.loader {
	width: 30px;
	height: 30px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -15px;
	margin-top: -15px;
	z-index: 12;
}
	
#fullpage {
	width:96%;
	margin:0 auto;
	}
	
.fp-slides {
	width:960px;
	margin:0 auto;
	}
	
#slide1 {
	text-align:center;
	}
	
#slide1 img.face {
	width:20%;
	}
	
#slide1 h1 {
	margin:20px auto 10px;	
	}
	
#slide1 h1 span {
	display:block;
	font-size:11px;	
	}
	
#slide1 p {
	margin-bottom:20px;	
	}
	
  #slide1 p span {
    display: inline-block;
  }
	
.circle {
	margin:-45% auto 0;
	position:fixed;
	top:0;
	z-index:-1;
	text-align:center;
	width:100%;
	}
	
.circle2 {
	margin:0 auto;
	text-align:center;
	width:100%;
	}
	
.circle2 img {
	width:100%;
	}
	
.scroll-pane ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-left: 0;
  width: 96%;
  margin-bottom: 30px;
}
	
.scroll-pane li {
  width: 22%;
  margin-bottom: 30px;
	}
	
.scroll-pane li a {
	width:100%;
  display: inline-block;
  position: relative;
}

.scroll-pane li img {
	width:100%;
	}
  .scroll-pane li h3,
  .scroll-pane li p {
    padding: 0;
    margin: 0;
    white-space: normal;
  }
	
.scroll-pane li.closed h3 {
	text-decoration:line-through;
}
	
.jspPane span {
    display: block;
    font-size: 9px;
    padding-top: 15px;
}
	
#footer {
    bottom: 3%;
    margin: 0 auto;
    position: fixed;
    width: 100%;
    z-index: 100;
	text-align:center;
	}
	
form {
    text-align: left;
    width: 700px;
	display:block;
    margin:10px auto  35px;
}
form dl {
    width: 100%;
}
form dt {
    clear: left;
    float: left;
    font-size: 100%;
    line-height: 1.3;
    margin: 0 0 10px;
    width: 150px;
}
form dt .astarisk, form dt .eng {
    color: #CEBFA7;
    font-size: 90%;
}
form dt .astarisk {
    padding-right: 3px;
    vertical-align: super;
}
form dd {
    list-style: none outside none;
    margin: 5px 0 40px 200px;
    width: 500px;
}
form input {
    padding: 2%;
    width: 96%;
}
form textarea {
    height: 100px;
    padding: 2%;
    width: 96%;
}
form div {
    text-align: right;
    width: 100%;
}
form div button {
    background-color: #AE9670;
    border: medium none;
    color: #FFFFFF;
    padding: 10px 15px;
}
form div button:hover {
    cursor: pointer;
}

input,textarea,select {
	font-family:"Futo Go B101",sans-serif;
    outline: none;
	border:none;
    *font-size:small;
    *font:x-small;
	line-height:1.8;
	letter-spacing:.1em;
    color: #9d866d;
    min-height: 100%;
	text-align:justify;
	text-justify:inter-ideograph;
    font-size: 100%;
    padding: 1%;
	opacity:0.7;
}

input:focus,textarea:focus {
	opacity:1;
	background-color:#fff;
}

select option {
    padding : 0 0.5em;
}
	
.fb a,.fp-controlArrow {
    transition: all 0.1s linear 0s;
}
.fb a:hover,.fp-controlArrow:hover  {
    opacity: 0.6;
}	

.spin_infinite {
/* keyframes に任意の名前を付ける */
  -moz-animation-name: rotate1;
  -webkit-animation-name: 'rotate1';
  animation-name: 'rotate1';
  -goog-ms-animation-name: 'rotate1'; 
 
 /* 1動作(ここでは1回転)あたりの秒数 */
  -moz-animation-duration: 100s;
  -webkit-animation-duration: 100s;
  animation-duration: 100s;
  -goog-ms-animation-duration: 100s;
 
/* 動作の向き、初期値はnormal 、逆再生は alternate */
  -moz-animation-direction: normal;
  -webkit-animation-direction: normal;
  animation-direction: normal;
  -goog-ms-animation-direction: normal;
  
/* 動き方 linear, ease, easein, ease-out, ease-in-out */
  -moz-animation-timing-function: linear;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -goog-ms-animation-timing-function: linear;
  
/* 動作 (ここでは回転) の回数を数値で指定、無限ループは infinite */
  -moz-animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -goog-ms-animation-iteration-count: infinite;
}
 
@-webkit-keyframes 'rotate1' {
  from {
  /* 最初の回転角 */
    -moz-transform: rotate(-360deg);
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
    -goog-ms-transform: rotate(-360deg);
  }
  /* 1動作の最後 ( 1duration 後) の回転角 */
  to {
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -goog-ms-transform: rotate(0deg);
  }
}
 
@-moz-keyframes rotate1 {
  from {
  /* 最初の回転角 */
    -moz-transform: rotate(-360deg);
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
    -goog-ms-transform: rotate(-360deg);
  }
  /* 1動作の最後 ( 1duration 後) の回転角 */
  to {
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -goog-ms-transform: rotate(0deg);
  }
}

.spin_infinite2 {
/* keyframes に任意の名前を付ける */
  -moz-animation-name: rotate2;
  -webkit-animation-name: 'rotate2';
  animation-name: 'rotate2';
  -goog-ms-animation-name: 'rotate2'; 
 
 /* 1動作(ここでは1回転)あたりの秒数 */
  -moz-animation-duration: 2s;
  -webkit-animation-duration:2s;
  animation-duration: 2s;
  -goog-ms-animation-duration: 2s;
 
/* 動作の向き、初期値はnormal 、逆再生は alternate */
  -moz-animation-direction: normal;
  -webkit-animation-direction: normal;
  animation-direction: normal;
  -goog-ms-animation-direction: normal;
  
/* 動き方 linear, ease, easein, ease-out, ease-in-out */
  -moz-animation-timing-function: linear;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -goog-ms-animation-timing-function: linear;
  
/* 動作 (ここでは回転) の回数を数値で指定、無限ループは infinite */
  -moz-animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -goog-ms-animation-iteration-count: infinite;
}
 
@-webkit-keyframes 'rotate2' {
  from {
  /* 最初の回転角 */
    -moz-transform: rotate(-360deg);
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
    -goog-ms-transform: rotate(-360deg);
  }
  /* 1動作の最後 ( 1duration 後) の回転角 */
  to {
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -goog-ms-transform: rotate(0deg);
  }
}
 
@-moz-keyframes rotate2 {
  from {
  /* 最初の回転角 */
    -moz-transform: rotate(-360deg);
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
    -goog-ms-transform: rotate(-360deg);
  }
  /* 1動作の最後 ( 1duration 後) の回転角 */
  to {
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -goog-ms-transform: rotate(0deg);
  }
}

/* -------------------- common style -------------------- */

.share_nav dd a,.fc-state-default.fc-corner-left,.fc-state-default.fc-corner-right,.works a,input,textarea,select,.contact form div button,.media ul li a,#topcontrol p,.button,form div button  {
	-webkit-transition: 0.2s linear;
	-moz-transition: 0.2s linear;
	transition: 0.2s linear;
		}
		
.share_nav dd a:hover,.fc-state-default.fc-corner-left:hover,.fc-state-default.fc-corner-right:hover,.media ul li a:hover,#topcontrol p:hover,.button:hover,form div button:hover {
	filter:alpha(opacity=50); 
	-moz-opacity:0.50; 
	opacity:0.50;
	zoom:1.0;
}

.works a:hover {
	text-decoration:none;
	background-color:#574a46;
	color:#f9f8f8;
	}

.col_2,#slide3_tab2_pane1,#slide3_tab2_pane2 {
	width:46%;
	padding:0 2% 0 0;
	}

.f_left {
	float:left;
	}
	
.f_right {
	float:right;
	}
	
.l_table {
	display: table;
	width: 100%;	
	}
	
.l_cellmax {
	display:table-cell;
	vertical-align:top;
	width:100%;
	}
	
.clear {
	clear:both;
}

/* ------------------- margin style -------------------- */

.mgn_0 {
	margin:0;
	}

.mgn_top10 {
	margin-top:10px;
	}
	
.mgn_top15 {
	margin-top:15px;
	}

.mgn_top20 {
	margin-top:20px;
	}

.mgn_top30 {
	margin-top:30px;
	}
	
.mgn_top40 {
	margin-top:30px;
	}
	
.mgn_bottom10 {
	margin-bottom:10px;
	}
	
.mgn_bottom20 {
	margin-bottom:20px;
	}
	
.mgn_topbottom10 {
	margin:10px 0;
	}

.ind_left20 {
	margin-left:20px;
	}
	
.ind_right5 {
	margin-right:5px;
	}
	
.ind_right10 {
	margin-right:10px;
  }
  
  .jspHorizontalBar {
    height: 0;
}
	
/* ------------------------------- clear ------------------------------- */

/* CLEAR FIX*/
.clearfix:after {nt: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;}
	
.clearfix {display: inline-block;}
/* Hides from IE-mac \*/

* html .clearfix { height: 1%;}

.clearfix {display: block;}
/* End hide from IE-mac */
