@charset "UTF-8";
section#sessionPlan {
  max-width: 920px;
  width: 95%;
  margin: 0 auto;
}
section#sessionPlan * {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
section#sessionPlan #terms {
  border: 2px solid #EE4054;
  border-radius: 10px;
  padding: 20px 40px;
}
section#sessionPlan #terms .term {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
section#sessionPlan #terms .term + .term {
  margin-top: 30px;
}
section#sessionPlan #terms .term .termName {
  width: 120px;
  text-align: right;
  font-weight: 700;
  font-size: 14px;
}
section#sessionPlan #terms .term ul {
  list-style: none;
}
section#sessionPlan #terms .term ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.5em;
}
section#sessionPlan #terms .term ul li input {
  margin-top: 0.6em;
}
section#sessionPlan #terms .term input[type=checkbox] {
  background-color: #FDE2CC;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 1em;
  height: 1em;
  position: relative;
}
section#sessionPlan #terms .term input[type=checkbox]:checked:before {
  position: absolute;
  top: 1px;
  left: 4px;
  transform: rotate(50deg);
  width: 4px;
  height: 8px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  content: "";
}
section#sessionPlan #terms .term.goalList ul {
  display: flex;
  gap: 1.5em;
}
section#sessionPlan #terms .buttons {
  display: flex;
  gap: 60px;
}
section#sessionPlan #terms .buttons button {
  outline: none;
  height: 40px;
  border-radius: 20px;
  margin-top: 40px;
  cursor: pointer;
}
section#sessionPlan #terms .buttons button.reSet {
  border: 1px solid #D43F1E;
  color: #D43F1E;
  width: 130px;
  background-color: #fff;
}
section#sessionPlan #terms .buttons button.done {
  background-color: #D43F1E;
  color: #fff;
  width: 240px;
  border: none;
}
section#sessionPlan #archiveList {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 60px;
  width: 920px;
}
section#sessionPlan #archiveList .listItem a {
  display: block;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  border-top: 3px solid #D43F1E;
  color: #000;
  text-decoration: none;
  padding: 20px;
  width: 452px;
  min-height: 100%;
}
section#sessionPlan #archiveList .listItem a li {
  list-style: none;
}
section#sessionPlan #archiveList .listItem a span {
  display: block;
}
section#sessionPlan #archiveList .listItem a .listTarget { /* ← lsit から list に修正 */
  display: flex;
  align-items: flex-start;
}
section#sessionPlan #archiveList .listItem a .listTarget .title {
  white-space: nowrap;
  width: 50px;
}
section#sessionPlan #archiveList .listItem a .listTarget ul li {
  display: block;
  font-weight: 700;
  color: #D43F1E;
  width: 362px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
section#sessionPlan #archiveList .listItem a .listGoal {
  display: flex;
  margin-top: 15px;
  gap: 10px;
}
section#sessionPlan #archiveList .listItem a .listGoal li {
  border: 1px solid #000;
  height: 30px;
  padding: 5px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
}
section#sessionPlan #archiveList .listItem a .listTitle {
  font-size: 1.2em;
  font-weight: 700;
  margin-top: 10px;
}
section#sessionPlan #archiveList .listItem a .listInfo { /* ← 追加（JavaScriptで使用） */
  margin-top: 5px;
  color: #666;
}
section#sessionPlan #archiveList .listItem a .listTopics {
  padding-left: 1em;
  margin-top: 10px;
}
section#sessionPlan #archiveList .listItem a .listTopics li {
  list-style: circle;
}

.li-no-decoration {
  padding-left: 0 !important;
}
.li-no-decoration:before {
  content: none !important;
}

.Topics_ck {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}
.Topics_ck li {
  margin: 8px 0;
  border-radius: 6px;
  transition: all 0.3s;
  position: relative;
  padding-left: 40px !important;
}
.Topics_ck li::before {
  position: absolute;
  border-radius: 0 !important;
  top: 4px !important;
  background: #fff !important;
  left: 4px !important;
  width: 4px !important;
  height: 8px !important;
  content: url(/images/sess-plan-slide/icon_check.png) !important;
}
.Topics_ck li.selected {
  font-weight: bold;
}
.Topics_ck li.selected:before {
  position: absolute !important;
  border-radius: 0 !important;
  top: 4px !important;
  background: #fff !important;
  left: 4px !important;
  width: 4px !important;
  height: 8px !important;
  content: url(/images/sess-plan-slide/icon_check-a.png) !important;
}

.listGoal-blog {
  display: flex;
  margin-top: 15px;
  gap: 10px;
}
.listGoal-blog li {
  border: 1px solid #000;
  height: 30px;
  padding: 5px 15px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
}

.modal-trigger {
  cursor: pointer;
  display: block;
}

.modal-trigger img {
  transition: opacity 0.3s;
}

.modal-trigger:hover img {
  opacity: 0.8;
}

.image-modal {
  display: none; /* 初期状態は非表示 */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  animation: fadeIn 0.3s;
  /* 中央配置のための設定 */
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* モーダルが開いている時のクラス */
.image-modal.is-open {
  display: flex;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.modal-content {
  display: block;
  max-width: 90%;
  max-height: 85vh;
  -o-object-fit: contain;
     object-fit: contain;
  animation: zoomIn 0.3s;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
  }
  to {
    transform: scale(1);
  }
}
#modalCaption {
  margin-top: 20px;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  font-size: 16px;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
  z-index: 10000;
}

.modal-close:hover,
.modal-close:focus {
  color: #bbb;
}

/* レスポンシブ対応 */
@media only screen and (max-width: 700px) {
  .modal-content {
    max-width: 95%;
    max-height: 80vh;
  }
  .modal-close {
    top: 10px;
    right: 15px;
    font-size: 30px;
  }
  #modalCaption {
    font-size: 14px;
    width: 90%;
  }
}
/*# sourceMappingURL=map/style.css.map */
