@charset "utf-8";

body{
	margin: 0;
}

/*=================================================

	Q&A

=================================================*/
.cp_qa *, .cp_qa *:after, .cp_qa *:before {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.cp_qa {
	margin: 0 0 50px 0;
	padding: 50px 0 0 0;
	border-top: 1px solid #fff;
}
.cp_qa .cp_actab {
	position: relative;
	overflow: hidden;
	width: 100%;
	margin-bottom: 1px;
	color: #00838F;
	background: #E4F4F2;
	border-radius: 10px 10px 0 0;
}
.cp_qa .cp_actab input {
	position: absolute;
	opacity: 0;
}
/* 質問 */
.cp_qa .cp_actab label {
	font-size: 1.3em;
	font-weight: bold;
	line-height: 1.6;
	position: relative;
	display: block;
	margin: 0 0 0 0;
	padding: 1em 1em 0.8em 1em;
	cursor: pointer;
	border-bottom: 1px solid #fff;
}
.cp_qa .cp_actab label:hover {
	color: #333;
}
/* 答え */
.cp_qa .cp_actab .cp_actab-content {
	overflow: hidden;
	max-height: 0;
	-webkit-transition: max-height 0.5s ease;
	        transition: max-height 0.5s ease;
	color: #000;
	background: #FFF3E2;
}
.cp_qa .cp_actab .cp_actab-content p {
	font-size: 1em;
	line-height: 170%;
	font-weight: bold;
	margin: 1em;
	padding-left: 1.5em;
}

.cp_actab-content-title{
	font-size: 1.6em;
	line-height: 100%;
	font-weight: bold;
	color: #B91543;
}
/* 質問を開いた時の仕様 */
/* --アイコン */
.cp_qa .cp_actab input:checked ~ label {
	color: #00838F;
}
/* --答えの高さ */
.cp_qa .cp_actab input:checked ~ .cp_actab-content {
	max-height: 40em;
}
/* 質問をクリックした時のアイコンの動き */
.cp_qa .cp_actab label::after {
	line-height: 1.6;
	position: absolute;
	top: 50%;
	right: 0;
	display: block;
	width: 3em;
	margin-top: -12.5px;
	-webkit-transition: all 0.5s ease;
	        transition: all 0.5s ease;
	text-align: center;
}
.cp_qa .cp_actab input[type=checkbox] + label::after {
	content: '▼';
}
.cp_qa .cp_actab input[type=checkbox]:checked + label::after {
	-webkit-transform: rotateX(180deg);
	transform: rotateX(180deg);
}

/*=================================================

	入力フォーム

=================================================*/
#formWrap {
	max-width: 1100px;
	margin:0 auto;
	line-height:120%;
	font-size:100%;
}
table.formTable{
	width:100%;
	margin:0 auto 20px auto;
	border-collapse:collapse;
}
table.formTable td,table.formTable th{
	border:1px solid #ccc;
	padding:20px;
}
table.formTable th{
	width:30%;
	font-weight:normal;
	background:#efefef;
	text-align:left;
}

select{
	padding: 10px;
}

input{
	padding: 10px;
}

button{
	margin: 0px 0px 10px 0;
	border-width: 2px;
    border-style: inset;
    border-color: -internal-light-dark(rgb(118, 118, 118), rgb(133, 133, 133));
    border-image: initial;
}

.submit-box{
	margin: 10px 0px 0px 10px
}

.submit-box input[type=checkbox] {
	width: 16px;
	height:	16px;
	margin: 0px 10px 0px 10px;
	-moz-transform: scale(1.4);
	-webkit-transform: scale(1.4);
	transform:		scale(1.4);
}

.radio-btn{
	margin: 10px;
}

.radio-text{
	line-height: 100%;
}

.disabled-btn{
	padding: 10px;
}

.must {
    display: block;
    background-color: #C00;
    padding: 4px 5px;
    font-size: 10px;
    color: #FFF;
    float: left;
    margin: 0px 5px;
    border-radius: 4px;
    box-shadow: 0px 0px 5px #ccc;
}

.inquiry_text{
	line-height: 200%;
}

.inquiry_text_indent{
	text-indent: 2.5em;
}

form textarea {
	padding:5px;
	font-size:110%;
}

.submit_btn{
	margin: 10px auto 20px auto;
}

.error_messe{
	color: #FF0004;
	margin: 0;
	padding: 25px 0 0 0;
}
/*　簡易版レスポンシブ用CSS（必要最低限のみとしています。ブレークポイントも含め自由に設定下さい）　*/
@media screen and (max-width:572px) {
	img{
		width: 100%;
	}
	
.cp_qa {
	margin: 0 0 30px 0;
	padding: 0px 0 0 0;
	border-top: 1px solid #fff;
}

/* 質問 */
.cp_qa .cp_actab label {
	font-size: 1.1em;
	font-weight: bold;
	line-height: 1.2;
	position: relative;
	display: block;
	margin: 0 0 0 0;
	padding: 1em 1em 0.8em 0.5em;
	cursor: pointer;
	border-bottom: 1px solid #fff;
}

/* 答え */
.cp_qa .cp_actab .cp_actab-content p {
	font-size: 1em;
	line-height: 135%;
	font-weight: bold;
	margin: 1em;
	padding-left: 0.5em;
}

.cp_actab-content-title{
	font-size: 1.3em;
	line-height: 130%;
	font-weight: bold;
	color: #B91543;
}
	
#formWrap {
	width:100%;
	margin:0 auto;
}
table.formTable th, table.formTable td {
	width:auto;
	display:block;
}
table.formTable th {
	margin-top:5px;
	border-bottom:0;
}
form input[type="text"], form textarea, select {
	width:100%;
	padding:5px;
	font-size:110%;
	display:block;
}
form input[type="submit"], form input[type="reset"], form input[type="button"] {
	display:block;
	width:100%;
	height:40px;
}
}

@-moz-document url-prefix() { //Firefoxだけに適用させる
 
  .date-edit span {
    position: relative;
  }
 
  .date-edit span::before {
    content: "";
    border: solid 1px #cdcdcd;
    height: 26px;
    width: 110px;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
    margin: auto;
    bottom: 0;
  } 
}

/*===========================================================================================================================================
=============================================================================================================================================

	タブレット2

=============================================================================================================================================
===========================================================================================================================================*/
@media screen and (max-width: 950px) {
img{
		width: 100%;
}
	
	
}