/* for information.html */

.information-list-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px 40px;
  color: #333;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
}

.information-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.information-item {
  display: flex;
  align-items: center;
  padding: 25px 0;
  border-bottom: 1px solid #e0e0e0;
}

.information-item:last-child {
  border-bottom: none;
}

.information-item-date {
  flex-shrink: 0;
  width: 150px;
  font-weight: 600;
  color: #007AB7;
}

.information-item-title {
  flex-grow: 1;
  line-height: 1.6;
}

.information-list__name {
  font-weight: bold;
}

/* --- Responsive (SP) --- */
@media (max-width: 450px) {
  .information-list-container {
    padding: 10px 20px;
  }

  .information-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 0;
  }

  .information-item-date {
    margin-bottom: 8px;
    width: auto;
  }
}






.faq__inner {
  margin-bottom: 40px;
}

.faq_page__title {
  color: #333;
  font-size: 25px;
  margin-bottom: 20px;
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.faq-toggle-btn {
  padding: 8px 16px;
  cursor: pointer;
}

.faq-item {
  border: 2px solid #333;
  margin-bottom: 15px;
  border-radius: 5px;
  /* overflow: hidden; */
  transition: box-shadow 0.3s ease;
}

.faq-item.active {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 20px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  color: #333;
  background-color: #f9f9f9;
}

.btn-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  transition: transform 0.3s ease;
  display: block;
}

.faq-item.active .btn-icon {
  transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  background-color: #f9f9f9;
  color: #333;
  font-size: 16px;
  transition: max-height 0.2s ease-out, padding 0.2s ease-out;
}

.faq-item.active .faq-answer {
  max-height: 2000px;
  /* 十分な高さを確保 */
  padding: 20px;
  transition: max-height 0.4s ease-in, padding 0.3s ease-in;
}

@media (max-width: 450px) {
  .faq__inner {
    margin-bottom: 40px;
    padding: 0 20px;
  }

  .faq_page__title {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .faq-question {
    padding: 15px;
    font-size: 14px;
    line-height: 1.5;
  }

  .btn-icon {
    right: 5px;
    font-size: 24px;
  }

  .faq-answer {
    font-size: 13px;
    line-height: 1.6;
  }

  .faq-item.active .faq-answer {
    padding: 15px;
  }
}



.to-faq {
  text-align: right;
}

.to-faq__link {
}