@charset "utf-8";

/*-------------------------------------
.secInfo
-------------------------------------*/
#mud .secInfo {
  background: #f8f8ff;
}
#mud .secInfo .infoTitle {
  font-weight: bold;
  color: #0068b6;
}

@media only screen and (max-width: 767px) {
  #mud .secInfo .mainWrap {
    position: relative;
  }

  #mud .secInfo .infoTitle {
    padding: 10px 0 15px 0;
    font-size: 1.5em;
  }
  #mud .secInfo .infoDetail {
    font-size: 1.05em;
    line-height: 170%;
    padding: 0 0 30px 0;
  }
  #mud .secInfo .boxDetail {
    background-size: 11px;
    background-position: left 15px center;
    font-size: 1.05em;
    line-height: 30px;
    padding: 10px 0 10px 35px;
  }
}
@media print, screen and (min-width: 768px) {
  #mud .secInfo {
    padding-top: 40px;
    padding-bottom: 39px;
  }
  #mud .secInfo .mainWrap {
    position: relative;
  }
  #mud .secInfo .infoTitle {
    font-size: 1.8em;
    padding-top: 40px;
    padding-bottom: 10px;
  }
  #mud .secInfo .infoDetail {
    font-size: 1.05em;
    line-height: 180%;
    padding-bottom: 70px;
  }
}

/*-------------------------------------
.secPoint
-------------------------------------*/
#mud .secPoint .subTitle {
  background: url(../../shared/images/icoPoint.svg) left center no-repeat;
  font-weight: bold;
}
#mud .secPoint .boxPoint .pointTitle {
  font-weight: bold;
}
#mud .secPoint .boxPoint .txtNum {
  color: #3fa9f5;
}
#mud .secPoint .boxPoint .pointDetail a:hover {
  color: #0068b6;
  text-decoration: underline;
}
#mud .secPoint .boxCheck .checkList {
  background: url(../../shared/images/icoCheck.svg) left top no-repeat;
}
#mud .secPoint .boxCheck .checkList .checkTitle {
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  #mud .secPoint {
    padding: 35px 0 0 0;
  }
  #mud .secPoint .subTitle {
    padding: 10px 0 10px 35px;
    background-size: 30px;
    font-size: 1.5em;
  }
  #mud .secPoint .boxPoint {
    padding-bottom: 25px;
  }
  #mud .secPoint .boxPoint .pointTitle {
    display: table;
    font-size: 1.3em;
    margin-bottom: 10px;
  }
  #mud .secPoint .boxPoint .txtNum {
    display: table-cell;
    width: 55px;
    text-align: left;
    font-size: 1.7em;
    vertical-align: top;
  }
  #mud .secPoint .boxPoint .txtTitle {
    display: table-cell;
    text-align: left;
    vertical-align: top;
    padding-top: 10px;
  }
  #mud .secPoint .boxPoint .pointDetail {
    padding-bottom: 23px;
    font-size: 1.05em;
    line-height: 160%;
  }
  #mud .secPoint .boxCheck {
    padding-top: 20px;
    padding-bottom: 15px;
  }
  #mud .secPoint .boxCheck .checkList {
    padding-left: 40px;
    background-size: 30px;
    background-position-y: 0px;
    padding-bottom: 10px;
  }
}
@media print, screen and (min-width: 768px) {
  #mud .secPoint {
    padding: 50px 0 0 0;
  }
  #mud .secPoint .subTitle {
    padding: 10px 0 10px 40px;
    font-size: 1.8em;
    margin-bottom: 20px;
  }
  #mud .secPoint .boxPoint {
    padding: 0 0 40px 0;
  }
  #mud .secPoint .boxPoint:last-of-type {
    padding-bottom: 30px;
  }
  #mud .secPoint .boxPoint .txtArea {
    width: 100%;
    padding: 0 50px 0 0;
  }
  #mud .secPoint .boxPoint .pointTitle {
    font-size: 1.5em;
  }
  #mud .secPoint .boxPoint .txtNum {
    font-size: 1.8em;
    display: block;
    float: left;
    line-height: 110%;
  }
  #mud .secPoint .boxPoint .txtTitle {
    display: block;
    float: left;
    padding: 6px 0 0 15px;
  }
  #mud .secPoint .boxPoint .pointDetail {
    font-size: 1.1em;
    line-height: 170%;
    padding-top: 5px;
  }
  #mud .secPoint .boxCheck {
    padding-top: 20px;
  }
  #mud .secPoint .boxCheck .checkList {
    padding-left: 40px;
    background-size: 30px;
    background-position-y: 2px;
    padding-bottom: 7px;
  }
  #mud .secPoint .boxPoint .photoArea {
    max-width: 70%;
  }
}
@media print {
  /* 印刷レイアウト崩れ対策 */
  #mud .secPoint .boxPoint .photoArea {
    width: 400px;
  }
}

/*-------------------------------------
.sec
-------------------------------------*/

#mud {
  .secPoint {
    .boxPoint {
      .sdgs {
        width: 100%;
        display: flex;
        justify-content: center;
        .photoArea {
          width: 100%;
          display: grid;
          margin-top: 12px;
          grid-template-columns: repeat(7, 1fr);
        }
      }
      .calendar {
        display: flex;
        flex-direction: column;
        row-gap: 20px;
        margin-top: 12px;

        img {
          width: 70%;
        }
      }
    }
  }
  ul {
    margin-top: 8px;
    padding-inline-start: 30px;
    li {
      list-style: disc;
    }
  }
  .btnInformationList {
    text-align: center;
    border: 1px solid #0068b6;
    padding: 9px 40px;
    color: #0068b6;
    font-size: 16px;
    font-weight: bold;
    position: relative;
    transition: 0.3s;
    display: inline-block;
  }
  .btnInformationList::after {
    display: block;
    position: absolute;
    content: " ";
    width: 18px;
    height: 10px;
    top: calc(50% - 5px);
    right: 15px;
  }
  .btnInformationList:hover {
    background-color: #0068b6;
    color: #ffffff;
  }
}
@media only screen and (max-width: 767px) {
  #mud {
    .secPoint {
      .boxPoint {
        .sdgs {
          .photoArea {
            grid-template-rows: auto auto auto;
            grid-template-columns: repeat(3, 1fr);
          }
        }
        .calendar {
          img {
            width: 100%;
          }
        }
      }
    }
  }
}
