/*＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
					CSS Stylesheet
				Author @ Crisp Code
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊*/

@charset "UTF-8";


/* フォントを追加する場合以下を記入
@font-face {
 	font-family: ' **任意のフォント名** ';
 	src: url('../font/**ファイル名**.eot?') format('oldIE'), url('../font/**ファイル名**.woff') format('woff'), url('../font/**ファイル名**.ttf') format('truetype');
}
*/

html,
body {
	width: 100%;
	height: 100vh;
	
   background-color:#f5ecd4;
    background-color:white;
   font-size:18px;
   margin:0px;
}

a {
	text-decoration: none;
	font-style: normal;
  color:black;
}

li {
  list-style: none;
}

.clear {
  clear: both;
}

/*＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
						Header
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊*/

/*＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
						Section1
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊*/


.contact-box {
  width:80%;
  margin:0px auto;
  margin-bottom:70px;
}

.contact-left {
  width:50%;
  height:500px;
  margin:0px auto;
}

.contact-left form {
  width:100%;
  border:none;
}


.contact-left p {
	padding-top:15px;
  padding-bottom: 20px;
  font-size:16px;
 
}

.wide {
	width:100%;
    border: solid 3px black;
    resize: none;
}

.contact-left input[type=text], .contact-left input[type=radio], .contact-left textarea {
	transition:all 0.7s;
  outline:0;
	
}

.contact-left input[type=radio] {
	margin-right:5px;
}

.color {
	background-color:white;
    height: 35px;
    border: solid 0.5px black;
    overflow: auto;
}

.contact-left input:focus, .contact-left textarea:focus {
	background-color:white;
	border:2px solid black;
}

input[type=radio] {
	display:none;
}

.check_css {
  -webkit-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
  position: relative;
  display: inline-block;
  padding: 0px 42px 0px 0px;
  vertical-align: middle;
  cursor: pointer;
	font-weight:300;
}

.check_css:after {
  -webkit-transition: border-color 0.2s linear;
  transition: border-color 0.2s linear;
  position: absolute;
  top: 50%;
  right: 15px;
  display: block;
  margin-top: -10px;
  width: 16px;
  height: 16px;
  content: '';
	border-radius: 2px;
	background-color:#f5ecd4;
	z-index:10;
}

.check_css:before {
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  position: absolute;
  top: 40%;
  right: 20px;
  display: block;
  margin-top: -7px;
  width: 5px;
  height: 9px;
  border-right: 0.5px solid black;
  border-bottom: 0.5px solid black;
  content: '';
  opacity: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
	z-index:20;
}

input[type=radio]:checked + .check_css:before {
  opacity: 1;
}

input[type=radio]:checked + .check_css:after {
  background-color:rgba(0,0,0,0);
	border:1px solid #ccc;
}

.contact-left textarea {
  height:200px;
}

.sub {
	background-color:white;
	font-weight:100;
  outline:0;
	border:none;
	transition:all 0.2s;
	width:30%;
	height:24px;
	margin-left:0px;
	margin-top:15px;
    border:solid 0.5px black;

}

.sub:hover {

  cursor:pointer;
}

/*＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
						Footer
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊*/
