@import url('main.css');
@import url('socialbuttons_sp.css');
@import url('base_sp.css');
@import url('common_sp.css');
@import url('em.css');
@import url('em_sp.css');
@import url('tokushu.css');
@import url('special.css');

.qaOC_Block{
    width:100%;
    margin: 4rem auto;
}

.qaListWrapper{
    max-width:960px;
    margin: 0 auto;
    background: #f7f6e6;
    padding:2rem;
}


.qaColumnLink{
    margin: 4rem auto;
    max-width:600px;
    padding-bottom: 5rem;
}

.qaColumnLink a{
    display: block;
    background:#ffa220;
    border-radius:1rem;
    padding: 1rem;
    box-shadow:0 3px 0px rgb(176, 93, 15);
}

.qaColumnLink p{
    text-align: center;
    color: #fff;
    font-weight: 800;
}

.qaTitle h3{
    text-align: center;
    font-size:2rem;
    font-weight:700;
    color:#ff5f20;
    margin:2rem 0;
}

/*=====================アコーディオン　ここから=====================*/

.accordion{
  max-width: 800px;
  margin: 0 auto;
}
.accordion:not(:first-of-type) {
  margin-top: 30px;
}
/* --- details --- */
.accordion__item{
  
}

/* 表示されるデフォルトの三角形アイコンを消します */
summary {
  display: block;
  cursor: pointer;
}
summary::-webkit-details-marker {
  /* Safariで表示されるデフォルトの三角形アイコンを消します */
  display: none;
}
/* --- summary --- */
.accordion__title{
  position: relative;
  font-size: 18px;
  line-height: calc(26 / 18);
  font-weight: 600;
  color:#303030;
  background-color: #ffffff;
  padding:13px 60px 13px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* --- アイコン --- */
.accordion__icon {
  position: absolute;
  top: 50%;
  right: 4%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
/* --- ＋の縦 --- */
.accordion__icon-bar {
  transform: translateY(50%);
  display: block;
  width: 20px;
  height: 2px;
  background-color: #303030;
}
/* --- ＋の - 部分 --- */
.accordion__icon-bar:nth-of-type(2) {
  transform: translateY(-50%) rotate(-90deg);
  transition: transform .3s;
}

/* アコーディオンが開いた時のスタイル */
details[open] .accordion__icon-bar:nth-of-type(2) {
  transform:translateY(-50%) rotate(0deg);
}

/* --- <details>タグ直下であるコンテンツ部分には上下のpaddingを指定しないことがポイントです。
上下paddingを指定するとアニメーションするときにカクついてしまう --- */;
.accordion__content {
  overflow: hidden;
}
/* --- アコーディオン開閉時の内容 --- */
.accordion__answer{
  font-size: 16px;
  font-weight: 500;
  line-height: calc(24 / 16);
  letter-spacing: 0.1em;
  color: #333333;
  padding: 20px;
  background-color: rgb(232, 231, 217);
}

@media screen and (max-width:768px){
  .accordion__title{
    font-size:1.4rem;
  }
}

/*=====================アコーディオン ここまで=====================*/

