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

/* ----- clearfix ----- */

.cf:before,.cf:after {content:"";display:table;}
.cf:after {clear:both;}
.cf {*zoom:1;}

/* ----- text ----- */

.caption {
    font-size: 10px;
}

a {
	color: inherit;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
    color: #fff;
    text-decoration: underline;
}

a.active {
    color: #000;
}

a.underline{
    text-decoration: underline;
}

::selection {
	color: #fff;
	background: #a5a190;
}

::-moz-selection {
	color: #fff;
	background: #a5a190;
}

/* ----- image ----- */

.ri{
	width:100%;
}






/* -----------------------------------------
body
--------------------------------------------*/

html,body{
	height: 100%;
}

body {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 0.72em;
    line-height: 2.2;
    letter-spacing: 0.12em;
    -webkit-text-size-adjust: 100%;
}
body {
  background-color: #e74c3c;
  animation: bg-color 20s infinite;
  -webkit-animation: bg-color 20s infinite;
}
@-webkit-keyframes bg-color {
  0% { background-color: #e74c3c; }
  20% { background-color: #f1c40f; }
  40% { background-color: #1abc9c; }
  60% { background-color: #3498db; }
  80% { background-color: #9b59b6; }
  100% { background-color: #e74c3c; }
}
@keyframes bg-color {
  0% { background-color: #e74c3c; }
  20% { background-color: #f1c40f; }
  40% { background-color: #1abc9c; }
  60% { background-color: #3498db; }
  80% { background-color: #9b59b6; }
  100% { background-color: #e74c3c; }
}



#particles-js{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
	opacity: 1;
    z-index: 3;
}


.wrapper {
    position: relative;
    top: 0;
    z-index: 999;
    color: #fff;
    height: 100%;
    width: 100%;
	padding: 5%;
}

/* -----------------------------------------
header
--------------------------------------------*/

header {
    height: 100px;
}

#logo-area {
    height: 100%;
    float: left;
}

#logo {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 20px;
}

#logo > img {
    width: 40px;
    display: block;
    float: left;
    margin-top: -8px;
    margin-right: 12px;
}

/* -------- nav --------*/

nav {
    float: right;
}

nav ul li {
    float: left;
    margin-right: 50px;
    font-weight: bold;
}


nav ul li:last-child {
    margin-right: 0px;
}

nav ul li a{
    text-decoration: none;
}

nav ul li .line{
    width: 0%;
	height: 2px;
    display: block;
    background-color: #ffffff;
    opacity: 0;
}



/* -----------------------------------------
contents
--------------------------------------------*/

section {
    margin: 60px 0 0;
    padding-top: 30px;
}

#contact{
    margin-bottom: 250px;
}


.h2-line {
    background: white;
    display: block;
    height: 1px;
    width: 8px;
    margin: 15px 0;
}

#ap-6 li {
    width: 16.66%;
    float: left;
    list-style: none;
    padding: 30px;
    text-align: center;
position: relative;

}


span.circle-6 {
    position: absolute;
    width: 100px;
    display: block;
    height: 100px;
    top: 42%;
    left: 50%;
    margin: -50px 0 0 -50px;
    opacity: 0;
    border-radius: 100%;
    border: 1px solid #fff;
}

#ap-6 li h3 {
    margin-top: 25px;
}





table {

  width: 100%;
}
table th,
table td {
    text-align: left;
    font-weight: normal;
}
table th {
    text-align: left;
    vertical-align: top;
    width: 15%;
}

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

  table td {
    display: block;
    text-align: left;
  }
	table th {
	    display: block;
	    border-top: none;
	    border-bottom: none;
	    width: 100%;
	    font-weight: bold;
	}
}






/*-----------------------------------------------
mail area
-----------------------------------------------*/


/*reset*/

input, textarea, select {
    letter-spacing: 0.1em;
    box-sizing: border-box;
    border-radius: 0px;
    border-bottom: 1px solid #fff;

}

input:focus,textarea:focus{ 
	outline: none;
}

select:focus{
	outline: none;
}








/*reset*/


.input_text {
    width: 40%;
    height: 35px;
    -webkit-transition: all 500ms;
    transition: all 500ms;
    background: none;
}

.input_text:focus{
    -webkit-transition: all 500ms;
    transition: all 500ms;
 
}

.input_select {
    height: 40px !important;
    width: 90px;
}

.input_textarea {
    width: 70%;
    -webkit-transition: all 500ms;
    transition: all 500ms;
    margin-top: 10px;
}

.input_textarea:focus{
    -webkit-transition: all 500ms;
    transition: all 500ms;
}

.property {
    width: 15%;
    float: left;
    margin-top: 7px;
}

.select-c {
    margin-right: 5px;
    margin-top: 13px;
}



.sample input{
	display: none;
}

.sample label {
    display: inline-block;
    position: relative;
    cursor: pointer;
    margin-left: 11px;
    padding: 10px 20px;
    color: #ffffff;
    text-align: center;
    line-height: 1;
}

.sample label:before {
    position: absolute;
    content: "";
    top: 50%;
    left: -10px;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    background: #ffffff;
    border-radius: 10%;
}

.sample input[type="radio"]:checked + label:after {
    position: absolute;
    content: "";
    top: 50%;
    left: -4px;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    border-radius: 15%;
  animation: bg-color 20s infinite;
  -webkit-animation: bg-color 20s infinite;
}






.m-textarea{
    margin-top: 30px;
}


.w100{
	margin-bottom: 10px;
}

/*send area*/




#send-btn {
    margin-top: 40px auto;
    width: 85%;
    float: right;
}

.send-block{
    width: 170px;
}

.send-block .line{
	margin-top: -10px;
	height: 4px;
    display: block;
    background-color: #ffffff;
    opacity: 0;
    width: 0%;
}


.send {
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: 0.2em;
    border: none;
    cursor: pointer;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -ms-transition: 0.5s;
    transition: 0.5s;
    z-index: 5;
    display: block;
    line-height: 0;
}


.confirm-txt{
	width: 100%;
	clear: both;
	background-color: #e7e7e7;
	padding: 9px;
	font-size: 0.75rem;
	font-weight: normal;
	font-family: '繝偵Λ繧ｮ繝手ｧ偵ざ Pro W3','Hiragino Kaku Gothic Pro',sans-serif;
	letter-spacing: 0.1em;
	box-sizing: border-box;
}

.mt{
	margin-top: 30px;
}





@media only screen and (max-width: 768px) {
	
#ap-6 li {
    width: 33.3333%;
  }
	
#ap-6 li h3 {
    margin-top: 4px;
}
	
nav {
    float: right;
    display: none;
}
	
	
}	



@media only screen and (max-width: 480px) {
section {
    margin: 30px 0 0;
}

	
		
#ap-6 li {
    width: 50%;
}

#ap-6 li h3 {
    margin-top: 4px;
}
	
nav {
    float: right;
    display: none;
}


.property {
    width: 100%;
    margin-top:0px; 

}	

.input_text {
    width: 100%;
	height: auto;
}	

.input_textarea {
    width: 100%;
    margin-top: 0;
}

#send-btn {

    width: 100%;
}
.send-block .line {
    display: none !important;
}
 
.send {
    font-size: 2rem; 
 
}	
}



