@charset "UTF-8";
html{
  height: 100%;
}
body{
  position:fixed;
	*font-size: small;
	*font: x-small;
	font-size: 14px;
	line-height: 1.5;
	color: #606a70;
	font-family: 'Noto Sans JP', sans-serif;
	text-align: center;
	width: 100%;
  height: 100%;
	margin: 0;
	padding: 0;
	background: #f2f2f2;
}
body *,
body *::before,
bory *::after{
  box-sizing: border-box;
}
body.over{overflow:hidden;}
h1,h2,h3,h4,h5,p,ul,ol,li,img,table,th,td,dl,dt,dd{margin: 0px;padding: 0px;font-size: 14px;}
li{list-style-type: none;}
table{border-collapse: collapse;}
a{cursor: pointer;color: #000;text-decoration: none;}
img{vertical-align: top;border: 0;max-width: 100%;height: auto;}
a img{vertical-align: bottom;-webkit-backface-visibility: hidden;-ms-backface-visibility: hidden;backface-visibility: hidden;}
input {-webkit-appearance: none;-moz-appearance: none;appearance: none;border-radius: 0;}
input[type="text"] {line-height: 1.5;}
button {-webkit-appearance: none;-moz-appearance: none;appearance: none;padding: 0;border: none;background-color: transparent;cursor: pointer;}
button{
	font-size: 14px;
	line-height: 1.5;
	font-family: 'Noto Sans JP', sans-serif;
}
select {box-sizing: border-box;white-space: nowrap;}
input[type="text"]:focus,select:focus{outline: 0;}
:focus {outline: 0;}
#wrap {
  position: relative;
  text-align: left;
  overflow: hidden;
  height: 100%;
}
.spOnly{
  display: none;
}
@media only screen and (max-width:767px) {
.spOnly{
  display: block;
}
}


/*------------------------------------------------------------
	header
------------------------------------------------------------*/
header{
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
}
header .logo{
  padding: 30px 0 0 50px;
}
header .logo img{
  width: 250px;
}
header ul{
  position: absolute;
  right: 20px;
  top: 20px;
}
header ul li button{
  background: #606a70;
  color: #fff;
  height: 40px;
  width: 120px;
  border-radius: 4px;
  font-size: 14px;
}
@media only screen and (max-width:768px) {
header{
  height: 60px;
}
header .logo{
  padding: 25px 0 0 20px;
}
header .logo img{
  width: 180px;
}
header ul{
  right: 50px;
  top: 15px;
}
header ul li button{
  height: 30px;
  width: 80px;
  font-size: 12px;
}
}


/*------------------------------------------------------------
	menuBtn
------------------------------------------------------------*/
#menuBtn{
  display: none;
}
@media only screen and (max-width:768px) {
#menuBtn{
  display: block;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 5px;
  right: 0;
  cursor: pointer;
}
#menuBtn::before,
#menuBtn::after{
  content: "";
  width: 22px;
  height: 2px;
  background: #3a4351;
  position: absolute;
  top: 50%;
  left: 50%;
  transition: transform .2s;
}
#menuBtn::before{
  transform: translate(-50%,-8px);
}
#menuBtn::after{
  transform: translate(-50%,6px);
}
#menuBtn.active::before{
  transform: translate(-50%,-1px) rotate(45deg);
}
#menuBtn.active::after{
  transform: translate(-50%,-1px) rotate(-45deg);
}
#menuBtn span{
  font-size: 0;
  display: block;
  width: 22px;
  height: 2px;
  background: #3a4351;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
#menuBtn.active span{
  display: none;
}
}


/*------------------------------------------------------------
	container
------------------------------------------------------------*/
#container{
  height: 100%;
  padding: 0 0 0 200px;
	transition: padding-left .4s cubic-bezier(.210, .60, .350, 1);
}
#container.menuNone{
  padding: 0;
}
@media only screen and (max-width:767px) {
#container,
#container.menuNone{
  padding: 60px 0 60px 0;
}
}


/*------------------------------------------------------------
	menu
------------------------------------------------------------*/
#menu{
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 200px;
  height: 100%;
  background: #f2f2f2;
  overflow-y: auto;
  overflow-x: hidden;
}
#menu p{
  padding-top: 30px;
  max-width: 125px;
  margin: 0 auto;
}
#menu ul{
  padding-left: 50px;
  margin-top: 115px;
}
#menu ul li{
  font-size: 12px;
  margin-top: 25px;
}
#menu ul li:first-child{
  margin-top: 0;
}
#menu ul li a.current{
  border-bottom: 2px solid #000;
  padding-bottom: 2px;
}
@media only screen and (max-width:767px) {
#menu{
  height: calc(100% - 60px);
  position: fixed;
  left: -200px;
  top: 60px;
  z-index: 101;
  transform: translateX(0);
	transition: transform .6s cubic-bezier(.210, .60, .350, 1);
}
#menu.active{
  transform: translateX(100%);
}
#menu ul{
  padding-left: 40px;
  margin-top: 40px;
}
#menu + #menuBg{
  display: none;
  content: "";
  width: 100%;
  height: calc(100% - 60px);
  position: fixed;
  left: 0;
  top: 60px;
  z-index: 1;
  background: rgba(0,0,0,.2);
}
}


/*------------------------------------------------------------
	contents
------------------------------------------------------------*/
#contents{
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
  height: 100%;
  padding: 60px;
  text-align: center;
  font-size: 0;
}
#contents::before{
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  width: 0;
}
#contents .inner{
  display: inline-block;
  vertical-align: middle;
  max-width: 1020px;
  width: 100%;
  margin: 0 auto;
  text-align: left;
}
#contents h1{
  font-size: 24px;
}
#contents h1 + p{
  font-size: 14px;
  margin-top: 5px;
}
#contents input[type="text"]{
  border: none;
  background: #fff;
  color: #3a4351;
  font-size: 20px;
  height: 50px;
  width: 100%;
  padding: 0 20px;
  border-radius: 4px;
  box-sizing: border-box;
  line-height: 50px;
}
#contents input[type="text"]::placeholder{
  color: #B3B3B3;
}
#contents input[readonly="readonly"]{
  border: none;
  background: transparent;
  color: #B3B3B3;
  font-size: 20px;
  height: 50px;
  width: 100%;
  padding: 0;
  border-radius: 4px;
  box-sizing: border-box;
}
#contents .radioBtn{
  font-size: 0;
  margin-top: -10px;
}
#contents .radioBtn li{
	position: relative;
	cursor: pointer;
	min-height: 50px;
  display: inline-block;
  margin: 10px 50px 0 0;
}
#contents .radioBtn li:last-child{
  margin-right: 50px;
}
#contents .radioBtn li input[type="radio"]{
	display: none;
}
#contents .radioBtn input[type="radio"] + label{
	display: block;
	padding: 14px 0 0 60px;
	line-height: 1;
	cursor: pointer;
  font-size: 20px;
  font-weight: bold;
}
#contents .radioBtn input[type="radio"] + label::before{
	content: "";
	display: block;
	width: 50px;
	height: 50px;
  background: #fff;
	border-radius: 50%;
	position: absolute;
	top: 0;
	left: 0;
}
#contents .radioBtn input[type="radio"] + label::after{
	content: "";
	display: none;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	position: absolute;
	top: 11px;
	left: 11px;
	background: #606a70;
}
#contents .radioBtn input[type="radio"]:checked + label::after{
	display: block;
}
#contents button{
  background: #606a70;
  color: #fff;
  font-weight: bold;
  height: 40px;
  width: 100%;
  border-radius: 4px;
  font-size: 14px;
}
#contents #sendBtn{
  display: block;
  width: 200px;
  margin: 30px 0 0 auto;
}
#contents .btn{
  background: #606a70;
  color: #fff;
  font-weight: bold;
  height: 40px;
  border-radius: 4px;
  font-size: 14px;
  line-height: 40px;
  text-align: center;
  display: block;
  width: 200px;
  margin: 30px 0 0 0;
}
#contents .selectBox{
	position: relative;
}
#contents .selectBox::after{
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: 16px;
	width: 6px;
	height: 6px;
	border-top: 2px solid #3A4351;
	border-right: 2px solid #3A4351;
	transform: rotate(135deg);
	margin-top: -6px;
}
#contents .selectBox select{
  height: 50px;
  width: 100%;
  background: #fff;
  font-size: 20px;
  padding: 0 40px 0 20px;
  border-radius: 4px;
	border: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}
@media only screen and (max-width:767px) {
#contents{
  display: block;
  padding: 0 20px 0 20px;
}
#contents h1{
  font-size: 20px;
}
#contents h1 + p{
  font-size: 13px;
}
#contents input[type="text"]{
  font-size: 14px;
  height: 40px;
  padding: 0 15px;
  line-height: 40px;
}
#contents input[readonly="readonly"]{
  font-size: 14px;
  height: 40px;
}
#contents .radioBtn li{
  min-height: 30px;
  margin: 10px 10px 0 0;
}
#contents .radioBtn input[type="radio"] + label{
	padding: 8px 0 0 40px;
  font-size: 14px;
}
#contents .radioBtn input[type="radio"] + label::before{
	width: 30px;
	height: 30px;
}
#contents .radioBtn input[type="radio"] + label::after{
	width: 16px;
	height: 16px;
	top: 7px;
	left: 7px;
}
#contents #sendBtn{
  margin: 30px auto 0;
}
#contents .btn{
  margin: 30px auto 0;
}
#contents .selectBox select{
  height: 40px;
  font-size: 14px;
  padding: 0 40px 0 15px;
}
}


/*------------------------------------------------------------
	listTable
------------------------------------------------------------*/
.listTable{
  width: 100%;
  margin-top: 10px;
}
.listTable th{
  font-size: 20px;
  padding: 20px 0 0 15px;
  white-space: nowrap;
}
.listTable td{
  padding: 20px 0 0 20px;
  font-size: 20px;
  font-weight: bold;
}
.listTable tr:first-child td input{
  width: calc(50% - 1em - 20px) !important;
  margin-left: 20px;
  margin-right: 10px;
}
.listTable tr:first-child td input:first-child{
  margin-left: 0;
}
@media only screen and (max-width:767px) {
.listTable th{
  font-size: 14px;
  padding: 10px 0 0 0;
}
.listTable td{
  padding: 10px 0 0 20px;
  font-size: 14px;
}
.listTable tr:first-child th{
  vertical-align: top;
  padding-top: 19px;
}
.listTable tr:first-child td input{  
  display: inline-block !important;
  width: calc(100% - 1em - 10px) !important;
  margin-left: 0;
  margin-top: 10px;
}
.listTable tr:first-child td input:first-child{
  margin-top: 15px;
  margin-top: 0;
}
}


/*------------------------------------------------------------
	projectTable
------------------------------------------------------------*/
.projectTable{
  width: 100%;
  margin-top: 30px;
}
.projectTable:first-child{
  margin-top: 0;
}
.projectTable th{
  padding: 0 0 10px 30px;
}
.projectTable th:last-child,
.projectTable td:last-child{
  padding-right: 60px;
}
.projectTable td{
  font-size: 20px;
  padding: 17px 0 17px 30px;
  border-top: 1px solid #B3B3B3;
  font-weight: bold;
  background: #fff;
}
.projectTable tr:first-child + tr td{
  border-top: none;
}
.projectTable th:nth-child(4),
.projectTable td:nth-child(4),
.projectTable td:last-child{
  padding-right: 30px;
  width: 100px;
}
#contents .projectTable td .btn{
  font-size: 14px;
  width: 100px;
  height: 40px;
  line-height: 40px;
  margin: 0 0 0 auto;
  cursor: pointer;
}
.projectTable .addRec td{
  font-size: 14px;
  font-weight: normal;
}
.projectTable .addRec td span{
  display: inline-block;
  margin-top: 7px;
}
@media only screen and (max-width:767px) {
.projectTable{
  position: relative;
  left: -20px;
  width: calc(100% + 40px);
}
.projectTable th{
  font-size: 13px;
  padding: 0 0 10px 10px;
}
.projectTable td{
  font-size: 13px;
  padding: 17px 0 17px 10px;
}
.projectTable th:nth-child(1),
.projectTable td:nth-child(1){
  padding-left: 20px;
}
.projectTable th:nth-child(4),
.projectTable td:nth-child(4),
.projectTable td:last-child{
  padding-right: 20px;
  width: 50px;
}
#contents .projectTable td .btn{
  font-size: 13px;
  width: 50px;
  height: 30px;
  line-height: 30px;
}
}


/*------------------------------------------------------------
	projectList
------------------------------------------------------------*/
.projectList{
  display: flex;
  margin-top: 30px;
}
.projectList .col{
  width: calc(35% - 20px);
  margin-right: 30px;
}
.projectList .col:nth-child(3n){
  margin-right: 0;
}
.projectList .col p{
  font-size: 14px;
  font-weight: bold;
  margin-top: 20px;
}
.projectList .col p:first-child{
  margin-top: 0;
}
.projectList .col input[type="text"],
.projectList .col .selectBox{
  margin-top: 10px;
}
.projectList .col input[type="text"]:first-child{
  margin-top: 31px;
}
.projectList .col .ttl{
  display: flex;
  padding: 0 30px;
}
.projectList .col .ttl p{
margin-top: 0;
}
.projectList .col .ttl p:nth-child(1){
  width: 330px;
  padding-left: 30px;
}
.projectList .col .ttl p:nth-child(2){
  width: calc(100% - 330px);
}
#contents .projectList .col #sendBtn{
  width: 100%;
  height: 50px;
}
@media only screen and (max-width:767px) {
.projectList{
  display: block;
}
.projectList .col{
  width: 100%;
  margin-right: 0;
  margin: 10px 0 0 0;
}
.projectList .col input[type="text"]:first-child{
  margin-top: 0;
}
.projectList .col p{
  margin-top: 10px;
}
#contents .projectList .col #sendBtn{
  margin: 20px auto 0;
  height: 40px;
}
}


/*------------------------------------------------------------
	projectDetail
------------------------------------------------------------*/
.projectDetail{
  display: flex;
  margin-top: 30px;
}
.projectDetail .col:nth-child(1){
  width: 35%;
  padding-right: 30px;
}
.projectDetail .col:nth-child(2){
  width: 65%;
}
.projectDetail .col p{
  font-size: 14px;
  font-weight: bold;
  margin-top: 20px;
}
.projectDetail .col p:first-child{
  margin-top: 0;
}
.projectDetail .col input[type="text"]{
  margin-top: 10px;
}
.projectDetail .col .ttl{
  display: flex;
  padding: 0 30px;
}
.projectDetail .col .ttl p{
margin-top: 0;
}
.projectDetail .col .ttl p:nth-child(1){
  width: 330px;
  padding-left: 30px;
}
.projectDetail .col .ttl p:nth-child(2){
  width: calc(100% - 330px);
}
#contents .projectDetail .col #sendBtn{
  margin: 80px auto 0;
  width: 100%;
  height: 60px;
}
#contents .inner .projectDetail .preset_pTag{
  background: #fff;
  color: #3a4351;
  font-size: 20px;
  height: 50px;
  width: 100%;
  padding: 0 20px;
  border-radius: 4px;
  line-height: 50px;
  margin-top: 10px;
}
@media only screen and (max-width:767px) {
.projectDetail{
  display: block;
}
.projectDetail .col:nth-child(1){
  width: 100%;
  padding-right: 0;
}
.projectDetail .col:nth-child(2){
  width: 100%;
  margin-top: 40px;
}
.projectDetail .col p{
  margin-top: 10px;
}
#contents .projectDetail .col #sendBtn{
  margin: 20px auto 0;
  height: 40px;
  width: 200px;
}
#contents .inner .projectDetail .preset_pTag{
  font-size: 14px;
  height: 40px;
  padding: 0 15px;
  line-height: 40px;
}
}


/*------------------------------------------------------------
	project
------------------------------------------------------------*/
#project .ttl{
  position: absolute;
  left: 30px;
  top: 80px;
}
#project .ttl .backLink{
  font-size: 14px;
}
@media only screen and (max-width:767px) {
#project .ttl{
  position: relative;
  left: 0;
  top: 0;
  margin-bottom: 30px;
}
#project .ttl .backLink{
  font-size: 13px;
}
}


/*------------------------------------------------------------
	layout
------------------------------------------------------------*/
#layout .ttl{
  position: absolute;
  left: 50px;
  top: 80px;
}
#layout .ttl h1 span{
  font-weight: normal;
  font-size: 20px;
}
#layout .ttl .backLink{
  font-size: 14px;
  margin-top: 10px;
}
#layout  #contents .inner{
  max-width: 1120px;
}
#layout .note{
  position: absolute;
  left: 30px;
  bottom: 70px;
}
#layout .note p{
  font-size: 12px;
}
@media only screen and (max-width:767px) {
#layout .ttl{
  position: relative;
  left: 0;
  top: 0;
}
#layout .ttl h1 span{
  display: block;
  font-size: 14px;
}
#layout .ttl .backLink{
  font-size: 13px;
  margin-top: 5px;
}
#layout .note{
  position: relative;
  left: 0;
  bottom: 0;
  margin-top: 30px;
}
}


/*------------------------------------------------------------
	layoutList
------------------------------------------------------------*/
.layoutList{
  display: flex;
  justify-content: center;
  margin-top: 80px;
}
.layoutList.row{
  flex-wrap: wrap;
  margin-top: 40px;
}
.layoutList .col{
  transform: translateY(20px);
  opacity: 0;
	transition: opacity .6s cubic-bezier(.210, .60, .350, 1),transform .6s cubic-bezier(.210, .60, .350, 1);
}
.layoutList.row .col{
  width: 25%;
  margin-top: 40px;
}
.layoutList.fade .col{
  opacity: 1;
  transform: translateY(0);
}
.layoutList.fade .col:nth-child(2){
  transition-delay: .1s;
}
.layoutList.fade .col:nth-child(3){
  transition-delay: .2s;
}
.layoutList.fade .col:nth-child(4){
  transition-delay: .3s;
}
.layoutList.fade .col:nth-child(5){
  transition-delay: .4s;
}
.layoutList.fade .col:nth-child(6){
  transition-delay: .5s;
}
.layoutList.fade .col:nth-child(7){
  transition-delay: .6s;
}
.layoutList.fade .col:nth-child(8){
  transition-delay: .7s;
}
.layoutList .col p{
  font-size: 15px;
  text-align: center;
  opacity: 1;
}
.layoutList .col p strong{
  font-size: 24px;
  display: block;
  font-weight: normal;
  line-height: 1;
  margin-top: -5px;
}
.layoutList .col p span{
	line-height: 2.4em;
}
@media only screen and (max-width:767px) {
.layoutList{
  margin-top: 0;
  flex-wrap: wrap;
}
.layoutList.row{
  margin-top: 0;
}
.layoutList .col{
  width: 50%;
  margin-top: 10px;
}
.layoutList.row .col{
  width: 50%;
  margin-top: 10px;
}
.layoutList .col img{
display: block;
  width: calc(100% - 10px);
  margin: 0 auto;
}
.layoutList .col p{
  font-size: 12px;
}
.layoutList .col p strong{
  font-size: 18px;
}
}


/*------------------------------------------------------------
	modal
------------------------------------------------------------*/
.modal{
  display:none;
}
#memoModal{
  background: rgba(242,242,242,.95);
  position:fixed;
  top:0;
  left:0;
  z-index: 10;
  width:100%;
  height:100%;
  text-align: center;
  overflow-y: auto;
  font-size: 0;
  padding: 0 40px;
}
.modal .close{
  position: absolute;
  right: 25px;
  top: 25px;
  font-size: 16px;
  z-index: 103;
  line-height: 1;
  cursor: pointer;
}
.modal .modalInner{
  max-width: 800px;
  margin: 0 auto;
}
.modal::before{
	display: inline-block;
	vertical-align: middle;
	height: 100%;
	content: "";
}
.modal .modalInner{
	display: inline-block;
	z-index: 101;
	position: relative;
	margin: 0 auto;
	text-align: left;
	vertical-align: middle;
	max-width: 800px;
	width: 100%;
  box-sizing: border-box;
}
.modal .close span{
  position: relative;
  top: -2px;
  display: inline-block;
  vertical-align: middle;
  width: 60px;
  height: 60px;
  margin-left: 15px;
}
.modal .close span::before, .modal .close span::after{
  content: "";
  display: block;
  position: absolute;
  background: #000;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 1px;
  margin-top: -1px;
  margin-left: -30px;
}
.modal .close span::before {
  transform: rotate(-45deg);
}
.modal .close span::after {
  transform: rotate(45deg);
}
.modal h2{
  font-size: 20px;
}
.modal h3{
  font-size: 16px;
  margin-top: 5px;
}
.modal h4{
  font-size: 16px;
  margin-top: 25px;
}
.modal p{
  font-size: 14px;
  line-height: 2;
  margin-top: 3px;
}
.modal #simLink{
  background: #606a70;
  color: #fff;
  font-weight: bold;
  height: 60px;
  border-radius: 4px;
  font-size: 14px;
  display: block;
  width: 300px;
  margin: 30px 0 0 auto;
  text-align: center;
  line-height: 60px;
}
@media only screen and (max-width:767px) {
#memoModal{
  padding: 0 20px;
}
.modal #simLink{
  width: 100%;
  margin: 30px auto 0;
  line-height: 60px;
}
.modal .close{
  right: 15px;
  top: 25px;
  font-size: 14px;
}
.modal .close span{
  width: 20px;
  height: 20px;
}
.modal .close span::before,
.modal .close span::after{
  width: 20px;
  margin-left: -15px;
}
}


/*------------------------------------------------------------
	footer
------------------------------------------------------------*/
footer{
  position: absolute;
  left: 200px;
  bottom: 0;
  z-index: 2;
  height: 60px;
  padding: 0 0 0 30px;
}
.menuNone footer{
  left: 0;
  padding: 0 0 0 30px;
}
footer p{
  font-size: 12px;
  margin-top: 3px;
}
footer p:first-child{
  margin-top: 0;
}
@media only screen and (max-width:768px) {
footer{
  left: 0;
  padding: 15px 0 0 20px;
}
.menuNone footer{
  padding: 15px 0 0 20px;
}
footer p{
  font-size: 10px;
  margin-top: 0;
}
}


/*------------------------------------------------------------
	movie_list
------------------------------------------------------------*/
#movie_List h1{
  text-align: center;
}
#movie_List .thumb{
  display: flex;
  justify-content: space-between;
  max-width: 990px;
  margin: 25px auto 0;
  padding-bottom: 40px;
}
#movie_List .thumb li{
  width: calc(50% - 15px);
  margin-top: 30px;
}
#movie_List .thumb li a{
  display: block;
  color: #606a70;
}
#movie_List .thumb li a p{
  font-size: 16px;
  font-weight: bold;
  margin-top: 12px;
}
#movie_List .movie{
  position: relative;
  max-width: 656px;
  margin: 25px auto 0;
}
#movie_List .movie::before{
  content: "";
  display: block;
  padding-top: 56.25%;
}
#movie_List .movie iframe{
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
#movie_List .movie .back{
  margin-top: 25px;
}
#movie_List .movie .back a{
  font-size: 14px;
  font-weight: bold;
  color: #606a70;
}
@media only screen and (max-width:1023px) {
#movie_List .thumb{
  display: block;
  margin-top: 25px;
}
#movie_List .thumb li{
  width: 100%;
  margin-top: 30px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
}
@media only screen and (max-width:768px) {
#movie_List .thumb{
  display: flex;
}
#movie_List .thumb li{
  width: calc(50% - 15px);
}
}
@media only screen and (max-width:680px) {
#movie_List .thumb{
  display: block;
  margin-top: 0;
}
#movie_List .thumb li{
  max-width: 335px;
  width: 100%;
  margin-top: 30px;
}
#movie_List .thumb li a p{
  font-size: 14px;
  margin-top: 10px;
}
}


/*------------------------------------------------------------
	select
------------------------------------------------------------*/
#contents .selectTxt{
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
#contents .selectTxt + .selectTxt{
  margin-top: 100px;
}
#contents .selectTxt p{
  font-size: 16px;
  font-weight: bold;
}
#contents .selectTxt input[type="text"]{
  margin-top: 15px;
}
#contents .selectTxt .btn{
  display: block;
  background: #606a70;
  color: #fff;
  font-weight: bold;
  height: 60px;
  width: 100%;
  border-radius: 4px;
  font-size: 14px;
  line-height: 60px;
  max-width: 320px;
  margin: 20px auto 0;
}
@media only screen and (max-width:768px) {
#layout.select #contents::before{
  display: none;
}
#contents .selectTxt,
#contents .selectTxt + .selectTxt{
  margin-top: 40px;
}
#contents .selectTxt p{
  font-size: 15px;
}
#contents .selectTxt .btn{
  max-width: 100%;
}
#contents .selectTxt input[type="text"]{
  margin-top: 10px;
}
#contents .selectTxt .btn{
  margin: 15px auto 0;
}
}