

/* --------------------------------------- */
.accordionItem h4{font-family: "GSanSerif-B" !important ; 
font-size: 30px; font-size: 3rem; padding-bottom: 1.5%;  font-weight: bold;
}
.accordionItem h5{font-family: "ゴシックMB101 B" !important ; 
font-size: 16px; font-size: 1.6rem; margin-top: 1.5%;  font-weight: bold;
}

.accordionItem strong{font-family: "ゴシックMB101 B" !important ; 
font-size: 16px; font-size: 1.6rem; font-weight: bold;  display: inline-block; padding-bottom:10px; 
}

.accordionItem .wrap{text-decoration: underline;pointer-events:auto !important;cursor: pointer}
.accordionItem .wrap:hover{text-decoration: none;}
.accordion dd > div p{
    float: right;
    margin: 0 0px 20px 15px;
    padding-bottom: 10px;
    width: 50%;
    font-size: 12px; font-size: 1.2rem;
    line-height: 100%;
}

.accordionTitle ul{
    display: table;
    padding:0px 40px 0px 40px;
    width: 100%;
    font-size: 14px; font-size: 1.4rem;
    pointer-events: none;
}
.accordionTitle ul li{
    display: table-cell;
    border-left: 1px dashed #fff;
}

.accordionTitle ul li:first-child{
    font-size:18px; font-size:1.8rem;
    border: none;
    width:40%;
    text-align: left;
    padding-left: 60px;
}
.accordionTitle ul li:nth-child(2){
 text-align: 30;
    width: 20%;
}
.accordionTitle ul li:nth-child(3){
    width: 30%;
}
.accordionTitle ul li:nth-child(4){
 text-align:  right;
 width: 8%;
}
.accordion dl {
}
.accordion dt > a {
  text-align: center;
  font-weight: 700;
  padding: 1.2em;
  display: block;
  text-decoration: none;
  color: #fff;
  width: 100%; 
  height: 100%;
  -webkit-transition: background-color 0.5s ease-in-out;
}
.accordion dd {
  background-color: #fff;
  color:#fafafa;
  font-size: 1em;
  line-height: 1.5em;
}
.accordion dd > div {
  padding: 3em;
  color: #111;
  font-size: 14px; font-size: 1.4rem;
  line-height: 180%;
}

.accordion {
  position: relative;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 2em 0 2em 0;
}

.accordionTitle {
  background-color: #161616;
  border-bottom: 1px solid #ecf1d7;
}
.accordionTitle ul:before {
  content: "+";
  font-size: 1.5em;
  line-height: 0.5em;
  float: left;
  -moz-transition: -moz-transform 0.3s ease-in-out;
  -o-transition: -o-transform 0.3s ease-in-out;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
}
.accordionTitle:hover {
  background-color: #077d6b;
}

.accordionTitleActive {
  background-color:#077d6b;
}
.accordionTitleActive:before {
  -webkit-transform: rotate(-225deg);
  -moz-transform: rotate(-225deg);
  transform: rotate(-225deg);
}

.accordionItem {
  height: auto;
  overflow: hidden;
}
@media all {
  .accordionItem {
    max-height: 80em;
    -moz-transition: max-height 1s;
    -o-transition: max-height 1s;
    -webkit-transition: max-height 1s;
    transition: max-height 1s;
  }
}
@media screen and (min-width: 48em) {
  .accordionItem {
    max-height: auto;
    -moz-transition: max-height 0.5s;
    -o-transition: max-height 0.5s;
    -webkit-transition: max-height 0.5s;
    transition: max-height 0.5s;
  }
}

.accordionItemCollapsed {
  max-height: 0;
}

.animateIn {
  -webkit-animation-name: accordionIn;
  -webkit-animation-duration: 0.65s;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-direction: normal;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: both;
  -webkit-animation-delay: 0s;
  -moz-animation-name: normal;
  -moz-animation-duration: 0.65s;
  -moz-animation-iteration-count: 1;
  -moz-animation-direction: alternate;
  -moz-animation-timing-function: ease-in-out;
  -moz-animation-fill-mode: both;
  -moz-animation-delay: 0s;
  animation-name: accordionIn;
  animation-duration: 0.65s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-timing-function: ease-in-out;
  animation-fill-mode: both;
  animation-delay: 0s;
}

.animateOut {
  -webkit-animation-name: accordionOut;
  -webkit-animation-duration: 0.75s;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-direction: alternate;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: both;
  -webkit-animation-delay: 0s;
  -moz-animation-name: accordionOut;
  -moz-animation-duration: 0.75s;
  -moz-animation-iteration-count: 1;
  -moz-animation-direction: alternate;
  -moz-animation-timing-function: ease-in-out;
  -moz-animation-fill-mode: both;
  -moz-animation-delay: 0s;
  animation-name: accordionOut;
  animation-duration: 0.75s;
  animation-iteration-count: 1;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
  animation-fill-mode: both;
  animation-delay: 0s;
}

@-webkit-keyframes accordionIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.8);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
  }
}
@-moz-keyframes accordionIn {
  0% {
    opacity: 0;
    -moz-transform: scale(0.8);
  }
  100% {
    opacity: 1;
    -moz-transform: scale(1);
  }
}
@keyframes accordionIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@-webkit-keyframes accordionOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.8);
  }
}
@-moz-keyframes accordionOut {
  0% {
    opacity: 1;
    -moz-transform: scale(1);
  }
  100% {
    opacity: 0;
    -moz-transform: scale(0.8);
  }
}
@keyframes accordionOut {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.8);
  }
}


@media only screen and (max-width: 767px) {
.list_midashi{
    display: table;
    width: 96%;
    font-size:90%;
    font-family: "Gothic MB101 Bold	" !important ; 
    font-weight: bold;
    margin:10px 0px 6px 10px !important; 
}
.list_midashi li{
    vertical-align: middle;
}    
.list_midashi li:nth-of-type(1){
    padding-left: 50px;   
}
.list_midashi li:nth-of-type(2){
    padding-left: 50px;   
}
.list_midashi li:nth-of-type(3){
    padding-left:10px;   
}

.accordion dt > a {
    font-size: 100%;
}
.accordionTitle ul{
    display: table;
    padding:0px 5px !important;
    width: 100%; 
    pointer-events: none;
}
.accordionTitle ul li{
    display: table-cell;
    border-left: 1px dashed #fff;
    padding: 0 2%;
    font-size:80% !important;
}

.accordionTitle ul li:first-child{
    border: none;
    width:40%;
    text-align: left;
    padding-left: 10px !important;
}
.accordionTitle ul li:nth-child(2){
 text-align: 30;
    width: 20%;
}
.accordionTitle ul li:nth-child(3){
    width: 30%;
}
.accordionTitle ul li:nth-child(4){
 text-align:  right;
 width: 8%;
    white-space: nowrap;
}
.accordionTitle ul:before {
  content: "+";
  font-size: 1.2em !important;
    
}
.accordion dd {
  background-color: #fff;
  color:#fafafa;
  font-size: 1em;
  line-height: 1.5em;
}
.accordion dd > div {
  padding:1.5em 1em !important;
  color: #111;
  font-size: 14px; font-size: 1.4rem !important;
  line-height: 160% !important;
}
.accordionItem h4{
font-size: 20px !important;padding-bottom: 1.5%;  font-weight: bold;
}
.accordionItem strong{font-size: 14px; padding-bottom:10px; 
}
.accordion dd > div p{
    float: none;
    margin: 0px 0px 15px 0px;
    padding-bottom: 10px;
    width: 100%;
    font-size: 12px; font-size: 1.2rem;
    line-height: 110%;
}
.accordionItem h5{margin-top: 2.5%;
}
}