@charset "UTF-8";
/*------------
2026.04.17
-------------*/
.schedule_card ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px; }
  .schedule_card ul li {
    width: 31%;
    position: relative;
    background: #ffffff;
    border: 1px solid #296982;
    border-radius: 5px; }
    @media screen and (max-width: 768px) {
      .schedule_card ul li {
        width: 46%; } }
    .schedule_card ul li a {
      display: block;
      width: 100%;
      height: 100%;
      text-decoration: none;
      padding-bottom: 3em; }
      .schedule_card ul li a dt {
        font-family: 'Zen Antique', sans-serif;
        text-align: center;
        background: #296982;
        color: #fff2df;
        margin-bottom: 10px;
        padding: 0.3em 0;
        font-size: 24px;
        letter-spacing: 0.1em; }
      .schedule_card ul li a dd {
        padding: 0 1em;
        color: #523623; }
      .schedule_card ul li a btn {
        position: absolute;
        width: 90%;
        bottom: 10px;
        left: 0;
        right: 0;
        margin: 0 auto;
        background: #b0361f;
        display: block;
        text-align: center;
        border-radius: 5px;
        color: #fff;
        font-weight: 700; }
        @media screen and (max-width: 768px) {
          .schedule_card ul li a btn {
            font-size: 80%; } }
        .schedule_card ul li a btn::after {
          display: inline-block;
          content: "";
          background: url("../images/icon_blank.svg");
          width: 0.9em;
          height: 0.9em;
          margin-left: 0.5em; }

.u_line {
  border-bottom: #d18d7f solid 1px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 20px; }

.read-more-3 {
  position: relative; }

.read-more-3 p {
  position: relative;
  max-height: 10em;
  /* 開く前に見せたい高さを指定 */
  margin-bottom: 10px;
  overflow: hidden;
  transition: max-height 1s; }

.read-more-3:has(:checked) p {
  max-height: 100vh; }

.read-more-3 p::after {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(180deg, rgba(255, 243, 232, 0) 0, rgba(255, 243, 232, 0.9) 50%, rgba(255, 243, 232, 0.9) 0, #fff3e8);
  content: ''; }

.read-more-3:has(:checked) p::after {
  content: none; }

.read-more-3 label {
  display: flex;
  align-items: center;
  gap: 0 4px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: .1em 1.2em;
  border-radius: 1px;
  background-color: #296982;
  color: #fff;
  font-size: 14px;
  transition: 0.3s;
  border-radius: 5px; }

.read-more-3 label:hover {
  background-color: #fff;
  color: #296982;
  cursor: pointer;
  transition: 0.3s; }

.read-more-3:has(:checked) label {
  display: none; }

.read-more-3 label::after {
  display: inline-block;
  width: 10px;
  height: 5px;
  background-color: #fff;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: ''; }

.read-more-3 label:hover::after {
  background-color: #296982; }

.read-more-3 input {
  display: none; }

/*# sourceMappingURL=schedule_card.css.map */
