@charset "UTF-8";
/*!
 * Accordion v2.8.0
 * Simple accordion created in pure Javascript.
 * https://github.com/michu2k/Accordion
 *
 * Copyright 2017-2019 Michał Strumpf
 * Published under MIT License
 */
#typeC_wrapper .ac {
  margin-top: 10px;
  box-sizing: border-box;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #ddd;
}
#typeC_wrapper .ac > .ac-q {
  font-size: 18px;
  color: #111;
  margin: 0;
  text-decoration: none;
  display: block;
  cursor: pointer;
  position: relative;
}
#typeC_wrapper .ac-q-plus {
  position: absolute;
  border: 1px solid #A60034;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  display: block;
  height: 22px;
  width: 22px;
  /* right: 20px; */
  bottom: 13px;
  top: 10px;
}
@media screen and (max-width: 767px) {
  #typeC_wrapper .ac > .ac-q {
    padding: 10px 40px 10px 10px;
  }
  #typeC_wrapper .ac-q-plus {
    margin-left: 90%;
  }
}
/*1195px～768px*/
@media screen and (max-width: 1195px) and (min-width: 768px) {
  #typeC_wrapper .ac > .ac-q {
    padding: 10px 40px 10px 10px;
  }
  #typeC_wrapper .ac-q-plus {
    margin-left: 96%;
  }
}
@media screen and (min-width: 1196px) {
  #typeC_wrapper .ac > .ac-q {
    padding: 10px 30px 10px 10px;
  }
  #typeC_wrapper .ac-q-plus {
    margin-left: 96%;
  }
}
/*.ac>.ac-q::before{*/
#typeC_wrapper .ac > .ac-q > .ac-q-plus::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  right: 0px;
  bottom: 0;
  left: 0;
  margin: auto;
  margin-left: 10%;
  width: 16px;
  height: 2px;
  /*background-color: #A60034;*/
  transition: 0.3s;
  border: 1px solid #A60034;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
}
#typeC_wrapper .ac > .ac-q > .ac-q-plus::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  margin-left: 10%;
  width: 16px;
  height: 2px;
  background-color: #A60034;
  transition: 0.2s;
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  /*	content: '+';
   text-align: center;
   width: 20px;
   right: 10px;
   top: 50%;
   -webkit-transform: translate(0,-50%);
   transform: translate(0,-50%);
   position: absolute;
   color: #A60034;
   border-bottom-left-radius: 50%;
   border-bottom-right-radius: 50%;
   border-top-left-radius: 50%;
   border-top-right-radius: 50%;
   border: 1px solid #A60034;
   height: 20px;
   line-height: 100%;
   margin: 0px;
   padding: 0px;
   font-size: 18px;*/
}
#typeC_wrapper .ac > .ac-a {
  overflow: hidden;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
#typeC_wrapper .ac > .ac-a p {
  font-size: 16px/1.5;
  color: #444;
  margin: 0;
  padding: 10px;
  font-weight: 200;
}
#typeC_wrapper .ac.js-enabled > .ac-a {
  visibility: hidden;
}
#typeC_wrapper .ac.is-active > .ac-a {
  visibility: visible;
}
#typeC_wrapper .ac.is-active > .ac-q > .ac-q-plus::after {
  display: none;
  /*content: '';
   line-height: 100%;
   font-size: 18px;
   margin: 0px;
   padding-right: 0px;
   padding-bottom: 8px;
   padding-left: 0px;*/
}
/*.ac>.ac-q::after{*/
