@charset "UTF-8";
/* CSS Document */

/* common */
#under_eyecatch {
  background-image: url("/assets/image/activity/bg-eyecatch.png");
  background-position: center;
  background-size: cover;
  min-height: 160px;
}
#under_eyecatch h3 {
  line-height: 1.5;
}
#under_eyecatch .eyecatch-box {
  bottom: -10%;
  left: 0;
  right:0;  
}
h3 {font-size: .9rem;}
.card { 
  border-radius: 5px;
  border: none;
}
.object-fit {
  object-fit: contain;
  object-position: center;
  width: 100%;
}





@media(min-width:768px) {
  h3 { font-size: 1rem;}
  #under_eyecatch { min-height: 234px;}
}



@media(max-width:767px) {
  .accordion {
    margin-inline: auto;
    position: relative;
    width: 100%;
  }
  .accordion-title {
    cursor: pointer;
  }
  .accordion-content {
    display: none;

  }
  .accordion-content p {
    font-size: 13px;
    line-height: 1.5;
  }

  /* 矢印 */
  .accordion-title {
    position: relative;
  }
  .accordion-title::after {
    font-family: "Font Awesome 5 Free";
    content: '\f054'!important;
    font-weight: 900;
    content: "";
    display: block;
    height: 26px;
    width: 26px;
    line-height: 26px;
    position: absolute;
    right: 25px;
    top: -5px;
    color: white;
    background-color: #80AECD;
    transform: rotate(90deg);
    transition: transform .3s ease-in-out, top .3s ease-in-out;
  }
  .accordion-title.open::after {
    transform: rotate(-90deg);
  }
}