@charset "UTF-8";/*!
 * for information page
.pb-5-origin {
  padding-bottom: 5px;
}

.dashed-line {
  position: relative;
}

.dashed-line::after {
  content: "";
  display: inline-block;
  height: 2px;
  background-image: repeating-linear-gradient(to right, #ed6560 0 10px, transparent 10px 20px);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: initial;
}

.news-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}

@media(min-width: 767px){
  .news-link {
    flex-direction: row;
    gap: 175px;
    justify-content: center;
  }
}

.news-title {
  display: flex;
  align-items: center; /* Vertically center the icon and text */
  /* gap: 16px;           Optional spacing between icon and text
} */


.news-title__text {
  color: #000;
  font-size: 20px;
  font-weight: bold;
}

.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-item {
  display: flex;
  align-items: flex-start;
  border-bottom: 1px dashed #d4b2b2;
  padding: 0.5rem 0;
}

.news-item__date {
  margin-right: 25px;
  font-size: 16px;
}

.news-item__text {
  font-size: 18px;
}

.table-of-contents {
  margin: 0 auto;
}

@media (min-width: 767px) {
  .table-of-contents {
    max-width: 772px;
  }
}

.table-of-contents li {
  list-style: none;
}

.table-of-contents li > a {
}

/* scroll menu */
.scroll-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 20px 0; /* vertical spacing only */
  max-width: 100%;
}

.scroll-menu li {
  width: 47%; /* slight gap between two columns */
  display: flex;
}

.scroll-menu a {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 6px 10px;
  background-color: #fff;
  border: 2px solid #ed6560;
  color: #ed6560;

  font-weight: bold;
  font-family: "Zen Maru Gothic", serif;
  text-align: center;
  text-decoration: none;

  line-height: 1.4;
  transition: background-color 0.3s;
}



.scroll-menu a:hover {
  /* background-color: #e0e0e0; */
}

.scroll-link .text {
  margin-right: 16px;
}

.scroll-link .text .small {
  font-size: 12px;
}

.scroll-link .icon {
  transform: scale(-0.8, 1);
}

/* media item */

.card {
  display: flex;
  flex-direction: column; 
  gap: 24px; 
}

.card__title {
  font-weight: bold;
  font-size: 24px;
  color: #ed6560;
  margin-top: 0;
  margin-bottom: 24px;
  text-align:center;

}

.card__desc {
  font-family: Yu Gothic;
  color: #000;
  font-size: 16px;
}

.information__section{
  margin-top: -120px;
  padding-top: 120px;
  min-height: 50vh;
}

/* Change to horizontal layout on larger screens */
@media (min-width: 767px) {
  .scroll-menu a {
    padding: 10px;
  }

  .scroll-link .text .small {
    font-size: inherit;
  }
  .card {
    display: flex;
    flex-direction: column;
  }
  
  .card--information {
    flex-direction: row;
    align-items: center;
    gap: 48px;
  }

  .card__image {
    flex: 0 0 auto; /* prevents image from stretching */
    width: 366px; /* optional: fixed image width */
  }

  .card__content {
    flex: 1; /* content takes the remaining space */
  }

  .card.flip {
    flex-direction: row-reverse;
  }

  .card__title {
    font-size: 34px;
    text-align: left;
  }

  .card__desc {
    font-size: 18px;
  }
}

.card__image {
  border-radius: 10px;
  aspect-ratio: 366 / 250;

  overflow: hidden;
}

.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

section {
  background-color: #FFFCF4;
}

section.section-links {
  padding: 12px 0 24px;
  position: relative;
  z-index: 9999;
}

section.department .card {
  padding: 48px 0;
}

@media(min-width: 767px){
  section.section-links {
    padding: 24px 0 24px;
  }
  
  section.department .card {
    padding: 60px 0;
  }
}


@media(min-width: 1099px){
  section > .container {
    width: 1030px;
  }
}

section.breadcrumb {
  background-color: #FFFCF4;
  padding: 10px 0;
  margin-bottom: 0px;
}

#breadcrumb-block {
  display: flex;
  flex-direction: row;
  list-style: none;
}
#breadcrumb-block li {
  padding: 0 15px;
  display: inline-block;
  position: relative;
}

#breadcrumb-block li:first-child{
  padding-left: 0;
}

#breadcrumb-block li::after {
  content: ">";
  font-size: 20px;
  position: absolute;
  right: -8px;
  top: 40%;
  transform: translateY(-50%)
  
}

#breadcrumb-block li:last-child::after {
  display: none;
}
