@charset "UTF-8";
/*-------------------------------------------------------------------------
  Clearfix
/*-----------------------------------------------------------------------*/
/* 横並び */
@media (min-width: 769px) {
  .items {
    display: flex;
    justify-content: center;
  }
  .item {
    padding: 15px;
    font-weight: bold;
    color: #fb538e;
    font-size: 24px;
    vertical-align: center;
    margin: auto;
    text-align: center;
  }
  .accordion-006 summary {
    font-size: 18px;
  }
  .btn-song {
    font-size: 20px;
  }
  /* ボタン下注釈 */
  .btn-attention {
    font-size: 11px;
    text-align: right;
  }
}
@media (max-width: 768px) {
  .items {
    flex-direction: column;
  }
  .item {
    padding: 10px 15px;
    font-weight: bold;
    color: #fb538e;
    font-size: 16px;
    vertical-align: center;
    margin: auto;
    text-align: center;
  }
  .accordion-006 summary {
    font-size: 15px;
  }
  .btn-song {
    font-size: 15px;
  }
  /* ボタン下注釈 */
  .btn-attention {
    font-size: 10px;
    text-align: left;
  }
}
/* 改行 */
.br-sp {
  display: none;
}
@media (max-width: 600px) {
  .br-sp {
    display: block;
  }
}
.br-pc {
  display: block;
}
@media (max-width: 600px) {
  .br-pc {
    display: none;
  }
}
/* アコーディオン */
.accordion-006 {
  width: 100%;
  margin-bottom: 7px;
}
.accordion-006 summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1em;
  color: #ffffff;
  background-color: #121b58;
  font-weight: 600;
  cursor: pointer;
  border-radius: 5px;
}
.accordion-006 summary::-webkit-details-marker {
  display: none;
}
.accordion-006 summary::after {
  content: '+';
  font-size: 24px;
  color: #ffffff;
  margin-left: 10px;
  transform: none !important;
  transition: transform 0.3s;
}
.accordion-006[open] summary::after {
  content: '−';
  transform: none !important;
}
/* 矢印ボタン */
/* .accordion-006 summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-bottom: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  content: '';
  transition: transform .3s;
}
.accordion-006[open] summary::after {
  transform: rotate(225deg);
}*/
.accordion-006 p {
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: .3em 2em 1.5em;
  color: #ffffff;
  transition: transform .5s, opacity .5s;
}
.accordion-006 h3 {
  border: solid 3px #121b58;
  background-color: #feea75;
  color: #121b58;
  border-radius: 50px;
  max-width: 320px;
  font-size: 17px;
  text-align: center;
  font-weight: bold;
  padding: 7px;
  margin: 15px 5px 5px;
}
.accordion-006[open] p {
  transform: none;
  opacity: 1;
}
/* 角丸ボタン */
.btn-song {
  border-radius: 100px;
  display: block;
  width: 100%;
  padding: 15px;
  box-sizing: border-box;
  background: linear-gradient(to right, #F5B215, #8F680C);
  color: #FFF;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  margin: 15px auto 7px;
}
.btn-song:hover {
  color: #FFF;
}