@charset "UTF-8";
main#feature2024winter {
  color: #727272;
}

.bg-deepgray {
  background-color: #e0e0e0;
}

.bg-deepyellow {
  background-color: #f0ee8c;
}

.bg-deepred {
  background-color: #d8907b;
}

.text-deepred {
  color: #9e3a3f;
}

.border-deepblue {
  border-bottom: 2px solid;
}

.text-end {
  text-align: right;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-checkbox {
  display: none;
}

.accordion-header {
  cursor: pointer;
  position: relative;
  padding: 10px;
}

.accordion-header::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 20px;
  font-weight: bold;
  transition: transform 0.3s;
}

.accordion-checkbox:checked ~ .accordion-content {
  max-height: 2000px;
}

.accordion-checkbox:checked ~ .accordion-header::after {
  content: "-";
}

/* スマホ */
@media only screen and (max-width: 750px) {

}
