@charset "utf-8";

/* -----------------------------------------------------------------
 section_wrap
----------------------------------------------------------------- */
.section_wrap {
  padding-bottom: var(--margin_size_M);
}
.section_wrap .text_intro {
  margin-top: 1em;
  line-height: 1.8;
  font-size: .8rem;
}
.section_wrap .section_img {
  margin-top: var(--margin_size_XXS);
}
.program_wrap .program:nth-of-type(even) {
  background: var(--color_bg_pale_bl02);
  color: var(--color_txt_base);
}
.program_wrap .program:nth-of-type(even) a {
  color: var(--color_txt_base);
}

/* -----------------------------------------------------------------
 .cmn_scroll_wrap
----------------------------------------------------------------- */
.cmn_scroll_wrap {
  width: 100%;
  margin-top: var(--margin_size_XXS);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth; 
  padding-bottom: 1.5rem;
}
.cmn_scroll_wrap::-webkit-scrollbar {
  height: 3px;
  background: var(--color_bg_light_bl);
}
.cmn_scroll_wrap::-webkit-scrollbar-thumb {
  background: var(--color_main);
}
.cmn_scroll_wrap::-webkit-scrollbar-thumb:hover {
  background: var(--color_main);
  cursor: grab;
}
@media screen and (max-width: 767px) {
  .cmn_scroll_wrap {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media print, screen and (min-width: 768px) {
  .cmn_scroll_wrap {
    width: min(1510px,90.66vw);
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* -----------------------------------------------------------------
 .table_time
----------------------------------------------------------------- */
.table_time {
  height: auto;
  max-inline-size: none;
  margin-left: auto;
  margin-right:auto;
  border-collapse: collapse;
  border: none;
}
.table_time th,
.table_time td {
  padding: .6rem .3rem;
  border: #d3d3d3 1px solid;
  text-align: center;
}
.table_time .header th {
  border-right: #82b6c4 1px solid;
  border-bottom: #fff 1px solid;
  background: var(--color_bg_light_bl);
  color: var(--color_main);
}
.table_time .header .title {
  background: var(--color_bg_light_bl);
  font-size: .93rem;
}
.table_time .cont .title {
  text-align: left;
}

/* 最外周セルの外側の線だけ消す */
.table_time tr:first-child th {
  border-top: none;
}
.table_time th:first-child,
.table_time td:first-child {
  border-left: none;
}
.table_time th:last-child,
.table_time td:last-child {
  border-right: none;
}

@media screen and (max-width: 767px) {
  .table_time {
    width: 50rem;
    min-width: calc(100vw - 4.67vw - 4.67vw);
    margin-left: 4.67vw;
    margin-right: 4.67vw;
  }
  .table_time th,
  .table_time td {
    font-size: .78rem;
  }
}
@media print, screen and (min-width: 768px) {
 .table_time {
/*    width: 100%;*/
    height: auto;
  }
  .table_time th,
  .table_time td {
    padding: .6rem .5rem;
  }
}

/* -----------------------------------------------------------------
 .section_cont
----------------------------------------------------------------- */
.section_cont {
  display: flex;
  flex-direction: column;
  gap:var(--margin_size_XS-S);
}
/* -----------------------------------------------------------------
 .section_item
----------------------------------------------------------------- */
.section_item {
  margin-top: 2rem;
  display: flex;
}
.section_item .thumbnail {
}
.section_item .body {
}
.section_item .body >.title {
  font-weight: 700;
  font-size: 1.38rem;
  color: var(--color_main);
}
.section_item .body >.info {
  margin-top: 1em;
  display: flex;
  flex-wrap: wrap;
  gap: .8rem 1.5rem;
}
.section_item .body >.info .item {
  display: flex;
  gap: .8rem;
}
.section_item .body >.info .item .ico.place img {
  width: 1.15rem;
  height: 1.15rem;
}
.section_item .body >.info .item .ico.calendar img {
  width: 1.05rem;
  height: 1.05rem;
}
.section_item .body >.info .item .label {
  font-weight: 700;
}
.section_item .body >.text {
  margin-top: 1.3em;
  line-height: 2;
}
.section_item .body .cmn_btn_link01 {
  margin-top: 1.5rem;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .section_item {
    flex-direction: column;
  }
  .section_item .body >.title {
    margin-top: 1.5em;
  }
}
@media print, screen and (min-width: 768px) {
  .section_item {
    gap: min(3rem,5vw);
  }
  .section_item .thumbnail {
    flex: 1 0 50%;
  }
}

/* -----------------------------------------------------------------
 .modal_item
----------------------------------------------------------------- */
.modal_wrap {
  padding: 0;
}
.modal_item {
  display: flex;
}
.modal_item .thumbnail {
}
.modal_item .body >.title {
  font-weight: 700;
  font-size: 1.38rem;
  color: var(--color_main);
}
.modal_item .body >.text {
  margin-top: 1rem;
  line-height: 2;
}
.modal_item .body >.info {
  margin-top: 1em;
  display: flex;
  gap: 1.5rem;
}

@media screen and (max-width: 767px) {
  .modal_item {
    flex-direction: column;
  }
  .modal_item .body {
    padding: max(1.88rem,4vw);
  }
  .modal_item .body >.title {
  }

}
@media print, screen and (min-width: 768px) {
  .modal_item {
    position: relative;
    padding: max(1.88rem,4vw);
    gap: max(1.88rem,4vw);
  }
  .modal_item .thumbnail {
    flex: 0 0 50%;
  }
}
/* -----------------------------------------------------------------
 テーブル（cmn_table01）
----------------------------------------------------------------- */
.modal_item .table_info {
  width: 100%;
  margin-top: 1.5rem;
  border-top: 1px solid #ccc;
  border-collapse: collapse;
}
.modal_item .table_info tr {
  margin-bottom: 0;
  border-bottom: none;
}

.modal_item .table_info th,
.modal_item .table_info td {
  width: auto;
  padding: 0.8em 0;
  border-bottom: 1px solid #d3d3d3;
  vertical-align: top;
}

.modal_item .table_info th {
  padding-left: 1rem;
  background: transparent;
  text-align: left;
  font-weight: bold;
  width: 7rem;
}

.modal_item .table_info td {
  padding-right: 1rem;
  line-height: 1.8;
  font-size: .92rem;
}
@media screen and (max-width: 767px) {
}
@media print, screen and (min-width: 768px) {

}

