/* CSS Document */
h4 {
  font-size: 1.5em;
  text-align: center;
}
.cp_qa *, .cp_qa *:before, .cp_qa *:after {
  font-family: 'FontAwesome', sans-serif;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.cp_qa {
  margin: 0 auto;
  background: #ffffff;
}
.cp_qa input {
  display: none;
}
/* カテゴリー */
.cp_qa #cp_content1, .cp_qa #cp_content2, .cp_qa #cp_content3, .cp_qa #cp_content4 {
  display: none;
  padding: 20px 0 5em 0;
  border-top: 1px solid #dddddd;
}
.cp_qa label.cp_tabitem {
  display: inline-block;
  margin: 0 0 -1px;
  padding: 15px 25px;
  text-align: center;
  color: #bbbbbb;
  border: 1px solid transparent;
}
.cp_qa label.cp_tabitem:before {
  margin-right: 10px;
}
/*.cp_qa label.cp_tabitem[for*='1']:before { content: '\f2bd'; }
.cp_qa label.cp_tabitem[for*='2']:before { content: '\f15c'; }
.cp_qa label.cp_tabitem[for*='3']:before { content: '\f0f4'; }
.cp_qa label.cp_tabitem[for*='4']:before { content: '\f001'; }
.cp_qa label.cp_tabitem:hover {
cursor: pointer;
color: #888888;
}*/
label.question {
  /*text-indent: -1em;*/
  margin: 0 1em 0 1.5em;
}
label.question:hover {
  text-decoration: underline;
}
.cp_qa input:checked + label[for*='conttab'] {
  color: #555555;
  border: 1px solid #dddddd;
  border-bottom: 1px solid #ffffff;
}
/* --ブロックのバーの色 */
.cp_qa input:checked + label[for*='conttab1'] {
  border-top: 5px solid #03A9F4;
}
.cp_qa input:checked + label[for*='conttab2'] {
  border-top: 5px solid #FF5722;
}
.cp_qa input:checked + label[for*='conttab3'] {
  border-top: 5px solid #E91E63;
}
.cp_qa input:checked + label[for*='conttab4'] {
  border-top: 5px solid #E91E63;
}
/* QAブロック */
.cp_qa #cp_conttab1:checked ~ #cp_content1, .cp_qa #cp_conttab2:checked ~ #cp_content2, .cp_qa #cp_conttab3:checked ~ #cp_content3, .cp_qa #cp_conttab4:checked ~ #cp_content4 {
  display: block;
}
.cp_qa .cp_qain {
  overflow-x: hidden;
  margin: 0 auto;
  color: #333333;
}
.cp_qa .cp_qain .cp_actab {
  padding: 10px 0;
  border-bottom: 1px dotted #cccccc;
}
/* 質問 */
/*.circle{
  display: inline-block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: skyblue;
  text-align:center;
  line-height: 80px;
}*/
.cp_qa .cp_qain label {
  position: relative;
  display: block;
  width: 100%;
  /*padding: 0 2em 0 0;*/
  cursor: pointer;
  font-size: 1em;
  font-weight:bold;
  margin: 0 1em 0 3em;
  text-indent: -1em;
}
/* ＋アイコン モバイルだけの方がいいかも */
.cp_qa .cp_qain .cp_plus {
  font-size: 1em;
  line-height: 30px;
/*  position: absolute;*/
  z-index: 5;
  margin-top: 5px;
  text-align: center;
  display: inline-block;
  width: 1em;
  font-weight: bold;
}
.cp_plus_a {
  font-size: 1em;
  line-height: 30px;
  position: absolute;
  z-index: 5;
  margin-top: 0;
  margin-left: 0;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  /*----------------------------------------------------作業中---------------------------------------------------------*/
  color: #FFF;
  text-align: center;
  background: #FF99FF;
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-weight: bold;
  margin: 14px 0;
}
/* 答え */
.cp_qa .cp_qain .cp_actab-content {
  position: relative;
  overflow: hidden;
  height: 0;
  margin: 0 5em 0 4em;
  /*padding: 14px 0;*/
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  opacity: 0;
}
.answer_a {
  margin: 0.5em 0 0 3em;
  padding: 14px 0;
}

.setting_cookie{
	margin:2% 0 5% 10%;
	width:80%;
}

/* 質問を開いた時の仕様 */
.cp_qa .cp_qain .cp_actab input[type=checkbox]:checked ~ .cp_actab-content {
  height: auto;
  opacity: 1;
}
/* 質問をクリックした時の▼アイコンの動き */
.cp_qa .cp_qain .cp_actab input[type=checkbox]:checked + label .cp_plus {
-webkit-transform: rotate(90deg);
transform: rotate(90deg);
transform-origin: 0% 50%;
}
@media screen and (max-width: 650px) {
  h4 {
    font-size: 1em;
  }
  .cp_qa .cp_qain label {
    font-size: 1.1em;
    font-weight: bold;
	margin: 0 1em 0 2em;
    text-indent: -1em;
    padding: 0 2em 0 0;
  }
  .cp_qa .cp_qain .cp_plus {
    font-size: 1em;
    line-height: 22px;
/*    position: absolute;*/
    z-index: 5;
    text-align: center;
    display: inline-block;
    width: 1em;
}
  /* 答え */
  .cp_qa .cp_qain .cp_actab-content {
    position: relative;
    overflow: hidden;
    height: 0;
    margin: 0 1em 0 0.3em;
    /*padding: 14px 0;*/
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
    opacity: 0;
  }
  .answer_a {
    margin: 0.5em 0 0 2em;
    padding: 14px 0;
  }
  .setting_cookie{
	margin: 2% 0 5% 0;
	width:100%;
  }
  .cp_qa label.cp_tabitem {
    font-size: 0.8em;
    display: inline-block;
    margin: 0 0 -1px;
    padding: 5px 10px;
    text-align: center;
    color: #bbbbbb;
    border: 1px solid transparent;
    vertical-align: top;
    width: calc(90% / 3);
    height: 3rem;
  }
  .cp_qa .cp_qain .cp_actab {
    font-size: 0.8em;
    padding: 10px 0;
  }
  .cp_plus_a {
    font-size: 1em;
    line-height: 22px;
    position: absolute;
    z-index: 5;
    margin-top: 0;
    margin-left: 0;
    -webkit-transition: 0.2s ease;
    transition: 0.2s ease;
    /*----------------------------------------------------作業中---------------------------------------------------------*/
    color: #FFF;
    text-align: center;
    background: #FF99FF;
    display: inline-block;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-weight: bold;
    margin: 20px 0;
  }
  /*label:before {
font-size: 18px;
margin: 0;
}*/
}
@media screen and (max-width: 400px) {
  .cp_qa label.cp_tabitem {
    padding: 5px 5px;
    width: calc(90% / 3);
    height: 4rem;
  }
  .cp_qa label.cp_tabitem:before {
    margin-right: 0px;
  }
}