@charset "utf-8";
/* CSS Document */
/*** common ***/
.fweightbold {
  font-weight: bold;
}
/*** header ***/
/*** main ***/
/* slider */
.mv {
  display: flex;
  width: 100%;
  align-items: start;
}
.mv .slide {
  width: 100%;
  margin-right: 20px;
  border: 1px solid #ccc;
  position: relative;
  aspect-ratio: 16 / 9;
}
.mv .slide-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
}
.mv .slide-item img {
  width: 100%;
}
.mv .slide-btn {
  width: 200px;
}
.mv .slide-btn li {
  display: flex;
  border: 1px solid #ccc;
  cursor: pointer;
}
.mv .slide-btn li:nth-of-type(n+2) {
  margin-top: 14px;
}
.mv .slide-btn p {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0 14px;
  border-right: 1px solid #ccc;
}
.mv .slide-btn img {
  width: 100%;
}
@media (max-width: 767px) {
  .mv {
    display: block;
  }
  .mv .slide-btn {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .mv .slide-btn li {
    width: calc((100% - 10px * 2) / 3);
  }
  .mv .slide-btn li:nth-of-type(n+2) {
    margin-top: 0;
  }
}
/* event table */
#event h2 {
  text-align: center;
  background: none;
  padding-left: 0;
  border-bottom: none;
}
#event h2 span {
  display: inline-block;
  text-align: center;
  padding: 1rem 5rem;
  border-top: 5px solid #8fc71e;
  border-bottom: 5px solid #8fc71e;
}
#event table {
  display: block;
  font-size: 1.5rem;
  overflow-y: scroll;
  height: 350px;
  border: 1px solid #ddd;
  border-collapse: separate;
}
@media only screen and (max-width: 767px) {
  #event table {
    word-break: break-all;
  }
  #event h2 span {
    padding: 1rem;
  }
}
#event table th {
  text-align: center;
  background: #8fc71e;
  color: white;
  position: sticky;
  top: 0;
  vertical-align: middle;
  border: none;
  border-bottom: 1px solid #ddd;
}
#event table th:not(:last-child) {
  border-right: 1px solid #ddd;
}
#event table td {
  vertical-align: middle;
  border: none;
}
#event table tr td {
  border-bottom: 1px solid #ddd;
}
#event table td:not(:last-child) {
  border-right: 1px solid #ddd;
}
#event table td.noeve {
  text-align: center;
  vertical-align: middle;
  border: none;
  padding: 3rem 0;
}
#event table td.ryokin {
  text-align: center;
}
#event table td.status {
  text-align: center;
}
/* table1 */
#event .table1 {
  height: 100%;
  max-height: 350px;
  min-height: 200px;
}
#event .table1 th.date {
  width: 14%;
}
@media only screen and (max-width: 767px) {
  #event .table1 {
    max-height: none;
    overflow: auto;
  }
  #event .table1 td.date {
    width: 20%;
  }
}
#event .table1 th.title {
  width: 60%;
}
#event .table1 th.ryokin {
  width: 8%;
}
#event .table1 th.fee {
  width: 9%;
}
#event .table1 th.status {
  width: 9%;
}
/* table2 */
#event .table2{
  height: 100%;
  max-height: 300px;
  min-height: 200px;
}
@media only screen and (max-width: 767px){
  #event .table2{
    max-height: none;
    overflow: auto;
  }
}
#event .table2 th.date {
  width: 14%;
}
@media only screen and (max-width: 767px) {
  #event .table2 td.date {
    width: 21%;
  }
  #event .table2 th.applydate {
    width: 20%;
  }
}
#event .table2 th.title {
  width: 46%;
}
#event .table2 th.ryokin {
  width: 8%;
}
#event .table2 th.fee {
  width: 9%;
}
#event .table2 th.status {
  width: 9%;
}
/* イチオシプログラム、読みもの、ソーシャルメディア */
.ichioshi {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;/* 20250805 hata add */
}
.ichioshi li {
  margin-bottom: 3%;
}
.ichioshi a {
  border: 1px solid #ccc;
  display: block;
}
.ichioshi img {
  max-width: 100%;
}

.yomimono {
  display: flex;
  flex-wrap: wrap;
}
.yomimono li {
  margin-bottom: 3%;
}
.yomimono_item {
  border: 1px solid #ccc;
  padding: 2rem;
  height: 100%;
  background: #f9f9f9;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
}
.yomimono_inner {
  width: 100%;
}
.yomimono_inner h3 {
  margin-top: 10px;
}

.sns_list {
  display: flex;
  justify-content: center;
}
.sns_list li {
  max-width: 500px;
  width: 100%;
}
/*** footer ***/