@charset "utf-8";

/* -----------------------------------------------------------------
 section
----------------------------------------------------------------- */
.section_wrap:first-of-type {
  margin-top: var(--margin_size_S);
}
.section_wrap .section_title {
  margin-top: var(--margin_size_XXS);
  font-weight: 700;
  font-size: 1.38rem;
}
.section_wrap .section_body {

}
.section_wrap .bg_pale {
  padding-bottom: var(--margin_size_S);
  background: var(--color_bg_pale_bl02);
  color: var(--color_txt_base);
}
.section .bg_pale a {
  color: var(--color_txt_base);
}

/* -----------------------------------------------------------------
 list_topic
----------------------------------------------------------------- */
.list_topic {
  display: flex;
  justify-content: center;
  grid-template-columns: repeat(1, 1fr);
  gap:var(--margin_size_XS);
  margin-top: var(--margin_size_XS);
  padding-top: var(--margin_size_S);
}
.list_topic .item {
  padding-bottom: 1.8rem;
  background: #fff;
}
.list_topic .item .body {
  padding:1.8rem 1.4rem 0;
  line-height: 1.6;
  font-size: .85rem;
}
.list_topic .item .body .num {
  font-size: 1.15rem;
  color: var(--color_main);
}
.list_topic .item .body .title {
  margin-top: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
}
.list_topic .item .body .text {
  margin-top: 1rem;
  line-height: 1.8;
  font-size: .85rem;
}
.list_topic .item .body .deco_under_line {
  background: linear-gradient(#FFED00, #FFED00) no-repeat;
  background-size: 100% 3px;
  background-position: 0 100%;
}
.list_topic .item .cmn_btn_link01 {
  margin-top: 2rem;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .list_topic {
    flex-direction: column;
    max-width: 580px;
  }
}
@media print, screen and (min-width: 768px) {
  .list_topic {
    flex-wrap: wrap;
}
  .list_topic .item {
    flex: calc((100% - var(--margin_size_XS)) / 2) 0 0;
  }
  
}

/* -----------------------------------------------------------------
 .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) {

}



