@charset "utf-8";
/* CSS Document */
.staff-page .header .container-fluid .navmenu ul li:nth-child(4) a{
	color: var(--accent-color) !important;
	font-weight: bold;
}
.staff-page .footer .footer-links .footer-nav-list-01 li:nth-child(4) a{
	color: var(--accent-color) !important;
}
.main {
  margin: 110px 0 0 0;
}
@media (max-width: 1200px) {
  .main {
    margin: 90px 0 0 0;
  }
}
/*--------------------------------------------------------------
# background
--------------------------------------------------------------*/
.background-green {
  background: #EAF5F0;
}
.background-green::before {
  border-color: transparent #EAF5F0 transparent transparent;
}
.background-blue {
  background: #ecf7fc;
}
.background-blue::before {
  border-color: transparent #ecf7fc transparent transparent;
}
.background-orange {
  background: #fef9f3;
}
.background-orange::before {
  border-color: transparent #fef9f3 transparent transparent;
}
/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.daily-schedule {
  padding: 20px 0;
}
.daily-schedule .comments-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}
.daily-schedule .comments-header .title {
  color: var(--heading-color);
  font-size: 32px;
  margin: 0;
}
.author-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-bottom: 2em;
  margin-bottom: 2em;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.author-info .author-details {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.author-info .author-details .author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}
.author-info .author-details .info h4 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--heading-color);
}
.author-info .author-details .info .role {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}
.daily-schedule .comments-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.daily-schedule .comment-thread {
  position: relative;
}
.daily-schedule .comment-thread:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 47px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, color-mix(in srgb, var(--accent-color), transparent 40%), color-mix(in srgb, var(--accent-color), transparent 90%));
  z-index: 0;
}
@media (min-width: 768px) {
  .daily-schedule .comment-thread:not(:last-child)::after {
    left: 12px;
  }
}
.daily-schedule .comment-box {
  position: relative;
  transition: all 0.3s ease;
}
.daily-schedule .comment-box.reply {
  margin-left: 50px;
  margin-top: 25px;
}
@media (min-width: 768px) {
  .daily-schedule .comment-box.reply {
    margin-left: 70px;
  }
}
.daily-schedule .comment-wrapper {
  display: flex;
  gap: 20px;
  position: relative;
}
.daily-schedule .avatar-wrapper {
  position: relative;
  flex-shrink: 0;
  margin-top: 0.8em;
}
.daily-schedule .avatar-wrapper img {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  object-fit: cover;
  border: 3px solid var(--surface-color);
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
@media (min-width: 768px) {
  .daily-schedule .avatar-wrapper img {
    width: 70px;
    height: 70px;
  }
}
.daily-schedule .avatar-wrapper img:hover {
  transform: scale(1.05);
}
.daily-schedule .avatar-wrapper .status-indicator {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #4CAF50;
  border: 2px solid var(--surface-color);
  z-index: 1;
}
.daily-schedule .comment-content {
  flex: 1;
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 15px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}
.daily-schedule .comment-content:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}
.daily-schedule .comment-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}
.daily-schedule .comment-header .user-info h4 {
  color: var(--heading-color);
  margin: 0 0 5px;
}
.daily-schedule .avatar-wrapper .time-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 20px;
  font-weight: 500;
}
.daily-schedule .comment-body p {
  color: var(--default-color);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .daily-schedule .comments-header {
    margin-bottom: 30px;
  }
  .daily-schedule .comments-header .title {
    font-size: 24px;
  }
  .daily-schedule .comment-content {
    padding: 20px;
  }
  .daily-schedule .comment-header .user-info h4 {
    font-size: 16px;
  }
  .daily-schedule .comment-header .user-info .time-badge {
    font-size: 13px;
  }
  .daily-schedule .comment-body p {
    font-size: 14px;
  }
  .daily-schedule .comment-actions .action-btn {
    padding: 6px 12px;
    font-size: 13px;
  }
}
/* --------------------------------------------------
 * コメント・吹き出しレイアウト
 * -------------------------------------------------- */
.comment-avatar {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
  background-color: #fff;
}
.comment-bubble {
  position: relative;
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 10px;
}
.comment-bubble p {
  margin: 0;
  line-height: 1.6;
}
.bubble-left::before {
  content: "";
  position: absolute;
  top: 20px;
  left: -15px;
  border-style: solid;
  border-width: 10px 15px 10px 0;
}
.bubble-right::before {
  content: "";
  position: absolute;
  top: 20px;
  right: -15px;
  border-style: solid;
  border-width: 10px 0 10px 15px;
}
@media (min-width: 992px) {
  .text-end-lg {
    text-align: right;
    padding-right: 15px;
  }
}
.bubble-right {
  position: relative;
  background-color: #f0f8f4;
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 10px;
}
.bubble-right::before {
  content: "";
  position: absolute;
  top: 20px;
  right: -15px;
  border-style: solid;
  border-width: 10px 0 10px 15px;
  border-color: transparent transparent transparent #f0f8f4;
}
.staff-name{
	font-size: 18px;
	font-weight: 500;
    color: rgb(51, 51, 51);
    margin: 5px 0px 0px;
}
#daily-schedule-1, #daily-schedule-2 {
  scroll-margin-top: 130px;
}
@media (max-width: 1200px) {
  #daily-schedule-1, #daily-schedule-2 {
    scroll-margin-top: 105px;
  }
}