@charset "utf-8";
/* CSS Document */

:root {
  --primary-color: #18b7cd;
  --secondary-color: #eb6e8f;
  --accent-color: #e8472a;
  --warning-bg: #F6F0CB;
  --warning-border: #FFB84D;
  --dl-btn: #FFB84D;
  --dl-btn-hover: #f5d7aa;
}

/*==============================================================================
　　　　　　　　　　　　　　　　　　登園停止報告書
==============================================================================*/
.report-list-container {
  list-style: none;
  padding: 0;
  width: 100%;
  position: relative;
  margin: 30px 0 0 0;
  background: url("../img/guide/01._dotline_s.gif") repeat-x top;
}
  @media screen and (max-width: 480px) {
    .report-list-container {
      list-style: none;
      padding: 0;
      width: 100%;
      position: relative;
      margin: 30px 0 0 0;
      background: url("../img/guide/01._dotline_s.gif") repeat-x top;
    }
  }
.list-item {
  display: flex;
  align-items: center;
  padding: 11px 0 11px;
  position: relative;
  background: url("../img/guide/01._dotline_s.gif") repeat-x bottom;
  pointer-events: auto;
}
.list-item:first-child {
  display: flex;
  align-items: center;
  padding: 18px 0 19px;
  position: relative;
  background: url("../img/guide/01._dotline_s.gif") repeat-x bottom;
}
 .list-item::before{
  content: "";
  position: absolute;
  left: 5px;
  top: 11px;
  width: 20px;
  height: 20px;
  background: url("../img/guide/report_icon.gif") no-repeat;
}
 .list-item:first-child::before{
  content: "";
  position: absolute;
  left: 5px;
  top: 19px;
  width: 20px;
  height: 20px;
  background: url("../img/guide/report_icon.gif") no-repeat;
}
.text {
  margin-left: 28px;
}
.text a {
}


/*ドロップエリア*/
.drop-area{
  padding: 0 0 20px 0;
  background: url(../img/guide/01._dotline_s.gif) repeat-x bottom #f6f6f6;
}
@media screen and (max-width: 520px) {
  .drop-area{
    padding: 0 0 20px 0;
  }
}

.drop-header{
  display: block;
  margin-bottom: 30px;
}



 .section {
   margin: 0 20px 25px 20px;
}
@media screen and (max-width: 520px) {
   .section {
     margin: 0 14px 25px 14px;
  }
}

 .drop-area h2 {
  font-weight: bold;
  font-size: 15px;
  margin-bottom: 10px;
}
.drop-area .drop-header h2{
  font-size: 18px;
  text-align: center;
  background: var(--accent-color);
  color: #ffffff;
  padding: 14px;
  margin: 0;
  /* border-radius: 18px; */
}
.subtitle {
  display: inline-block;
  font-size: 85%;
  padding-left: 1em;
  color: #ffffff;
}



.criteria-badge {
  display: inline-block;
  text-align: center;
  background: var(--warning-bg);
  color: var(--secondary-color);
  padding: 8px 15px;
  border-radius: 20px;
  margin-bottom: 15px;
  font-size: 15px;
}

.case-card {
  background: var(--warning-bg);
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 15px;
}
@media screen and (max-width: 520px) {
  .case-card{
    border-radius: 5px;
    padding: 20px 10px;
  }
}
.case-title {
  font-size: 16px;
  color: var(--primary-color);
  margin-bottom: 0.5em;
  display: flex;
  align-items: center;
}

.timeline-item {
  display: flex;
  margin-bottom: 12px;
  align-items: stretch;
}
@media screen and (max-width: 480px) {
  .timeline-item {
    margin-bottom: 8px;
      /*flex-direction: column;*/
  }
}

.day-label {
  background: var(--primary-color);
  color: #ffffff;
  padding: 8px 12px;
  border-radius: 8px;
  width: 180px;
  text-align: center;
  margin-right: 12px;
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 480px) {
  .day-label {
      /*margin-bottom: 8px;*/
      margin-right: 8px;
      width: 120px;
    display: block;
  }
}
.day-label .stop{
  background-color: var(--secondary-color);
  color: #ffffff;
  padding: 0.5em 0.8em;
  font-size: 11px;
  border-radius: 1em;
  line-height: 1em;
}
@media screen and (max-width: 480px) {
  .day-label .stop{
    display: inline-block;
    margin: 0 auto;
  }
}

.day-content {
  flex: 1;
  padding: 8px 12px;
  background: #ffffff;
  border-radius: 8px;
  display: flex;
  align-items: center;
}
.stop-status {
  background: #ffffff;
  color: var(--secondary-color);
  border-left: 3px solid var(--secondary-color);
  padding: 8px 12px;
  margin-top: 8px;
  font-weight: 500;
}
.day-content .stop{
  background-color: var(--secondary-color);
  color: #ffffff;
  padding: 0.5em 0.8em;
  font-size: 11px;
  border-radius: 1em;
  line-height: 1em;
}


.info-box {
  background: var(--warning-bg);
  border: 2px solid var(--warning-border);
  border-radius: 12px;
  padding: 20px 10px;
  margin-top: 15px;
}

.info-item {
  margin-bottom: 14px;
  padding-left: 1em;
  position: relative;
}

.info-item::before {
  content: '・';
  position: absolute;
  left: 0;
  font-weight: bold;
}

.info-item:last-child {
  margin-bottom: 0;
}

.highlight {
  background: linear-gradient(transparent 60%, rgba(255, 111, 0, 0.2) 60%);
  font-weight: bold;
  padding: 0 3px;
}

.key-point {
  background: #fff5f7;
  border: solid 2px var(--secondary-color);
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 15px;
}
strong.ttl{
  font-weight: bold;
  color: var(--secondary-color);
}
strong{
  font-weight: bolder;
}

.closing-note{
  font-size: 16px;
  margin-top: 40px;
}

.dllink-memo{
  margin: 0 0 1em 0;
}
a.dllink{
  background-color: var(--dl-btn);
  color: #ffffff;
  text-decoration: none;
  padding: 0.8em 2em;
  border-radius: 3em;
  transition: all 0.3s;
  display: inline-block;
  text-align: center;
  margin: 0 auto 20px auto;
}
a.dllink:hover,
a.dllink:active{
  background-color: var(--dl-btn-hover);
}








