@charset "utf-8";

/* Acordion Faq */
.tab {
  position: relative;
  margin-bottom: 1px;
  width: 100%;
/*  color: #fff; */
  overflow: hidden;
}
input[type="checkbox"][name="tabs"] {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
label[for="tab-uno"] {
  position: relative;
  display: block;
  padding: 0 0 0 3em;
/*  background: #000; */
  font-weight: bold;
  line-height: 3;
  cursor: pointer;
/*  background-color: rgba(1,84,160,1); */
}
label[for="tab-dos"] {
  position: relative;
  display: block;
  padding: 0 0 0 3em;
/*  background: #000; */
  font-weight: bold;
  line-height: 3;
  cursor: pointer;
/*  background-color: rgba(1,84,160,1); */
}
label[for="tab-tres"] {
  position: relative;
  display: block;
  padding: 0 0 0 3em;
/*  background: #000; */
  font-weight: bold;
  line-height: 3;
  cursor: pointer;
/*  background-color: rgba(1,84,160,1); */
}

.tab-content {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height .35s;
  -o-transition: max-height .35s;
  transition: max-height .35s;
  color: #000;
}

.tab-content p {
  margin: 1em;
}
/* :checked */
input:checked ~ .tab-content {
  max-height: 100%;
}
/* Icon */
label::before {
  position: absolute;
/*  right: 0; */
  top: 0;
  display: block;
  width: 3em;
  height: 3em;
/*  line-height: 3; */
  line-height: 4;
  text-align: center;
  -webkit-transition: all .35s;
  -o-transition: all .35s;
  transition: all .35s;
}
input[type=checkbox][name="tabs"] + label::before {
    content: "＋";
    color: #ffffff;
    background: #333333;
    padding: 0px 5px 10px 5px;
    border-radius: 40px;
    margin-left: -38px;
}
input[type=checkbox][name="tabs"]:checked + label::before {
  content: "－";
/*  transform: rotate(315deg); */
}

/* TB、PC用指定 */
@media screen and (min-width: 768px) {
input[type=checkbox][name="tabs"] + label::before {
    content: "＋";
    color: #ffffff;
    background: #333333;
    padding: 0px 5px 10px 5px;
    border-radius: 40px;
    /*margin-left: 250px!important;*/
}
}

.kiyakuwaku { margin-left: 0px; }


/* TB、PC用指定 */
@media screen and (min-width: 768px) {
.kiyakuwaku {
    margin-left: 250px!important;
}
}
