/* 簡易リセットCSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* アコーディオン全体 */
  .accordion {
    max-width: 800px;
    margin: 0 auto;
  }
  
  /* アコーディオン */
  .accordion__item {
    /* border: 1px solid #ccc; */
    margin-top: 10px;
    cursor: pointer;
  }
  
  /* アコーディオンのタイトル */
  .accordion__title {
    position: relative;
    padding: 15px 60px 15px 20px;
    font-weight: bold;
    cursor: pointer;
  }
  
  /* (+)アイコン */
  .accordion__title::before,
  .accordion__title::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    background-color: #3abec1;
    width: 20px;
    height: 4px;
    transition: all 0.3s;
  }
  
  .accordion__title::after {
    transform: rotate(90deg);
  }
  
  /* アコーディオンのコンテンツ */
  .accordion__content {
    padding: 0 20px 15px 20px;
    display: none;
    cursor: pointer;
  }
  
  .accordion__content.is-open {
    display: block;
  }
  
  /* アコーディオン展開時の(-)アイコン */
  .accordion__item.is-active .accordion__title::before {
    transform: rotate(180deg);
  }
  
  .accordion__item.is-active .accordion__title::after {
    transform: rotate(180deg);
    opacity: 0;
  }
  .accordion__title{
    width: 90%;
    border-radius: 60px;
    margin: 0.1rem auto;
    padding: 3rem 0;
    text-align: center;
    background-color: #FF8B20;
    color: #fff;
    font-size: large;
    font-weight: bold;
}
.accordion__content{
    width: 100%;
    border-radius: 10px;
}
.accordion__content a{
    width: 100%;
    border-radius: 10px;
    margin: 0.5rem 0;
    /* text-decoration: underline; */
    color: darkred;
    font-weight: bold;
    display: block;
    padding: 0.5rem 0 0.5rem 6rem;
    /* text-align: center; */
    /* border: 1px solid orange; */
    font-size: medium;
}
.data_buttons{
  text-align: left;

}