@charset "utf-8";

li.header_list--mega #menu_bar07 + label::before {
  transform: rotate(135deg) translateY(50%);
  left: 18px;
}
#menu_bar07 + .label_list + .header_list--child {
  max-height: 2200px;
}
#menu_bar07:checked + .label_list + .header_list--child {
  max-height: 0;
  transition: all 0.3s;
}
#menu_bar07:checked + .label_list::before {
  transform: rotate(45deg) translateY(-50%) !important;
  transition: all .3s;
  left: 10px;
}

.pv_h1 {
  h1 {
    font-size: 2.8rem;
    @media screen and (max-width: 767px) {
      font-size: 2rem;
    }
  }
}
/* ------------------
pagevisual
------------------ */
.pv_h1 {
  background: url("../img/pv_h1.webp")no-repeat center;
  background-size: cover;
}

.main_txt:not(:last-child) {
  padding-bottom: 1em;
}
.sio_example {
  max-width: 800px;
  width: 100%;
  height: 70%;
  padding: 50px;
  margin: auto;
  border: 1px solid black;
  @media screen and (max-width: 767px) {
    padding: 40px 5%;
  }
}
.article_child {
  width: 100%;
  max-width: 880px;
  margin: 0 auto 56px;
  &.black_hr {
    padding-block: 40px;
    @media screen and (max-width: 767px) {
      padding-bottom: 0;
    }
  }
}
.article_child.mb_0 {
  margin-bottom: 0;
}
.page_img {
  border: 1px solid #999;
}
.bold {
  font-weight: bold;
}
.mt30 {
  margin-top: 30px;
}
.mt40 {
  margin-top: 40px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb30 {
  margin-bottom: 30px;
}
.cmn_under {
  a {
    display: inline-block;
    text-decoration: underline;
    padding-left: 1em;
    text-indent: -1em;
  }
}


/* table（表）の記述 */
.cmn_table--outer {
  overflow: auto;
  width: 100%;
  margin-block: 30px;
  table {
    width: 100%;
  }
  thead th,
  tbody td {
    padding: 10px 24px;
  }
  thead th {
    font-weight: bold;
    background: var(--bg-color);
    border-right: 1px solid #000;
    text-align: center;
  }
  tbody td {
    border-right: 1px solid #000;
  }
  thead th:first-child,
  tbody td:first-child {
    border-left: 1px solid #000;
  }
  tr {
    border-top: 1px solid #000;
  }
  tr:last-child {
    border-bottom: 1px solid #000;
  }
  @media screen and (max-width: 767px) {
    &.multiple table {
      width: 800px;
    }
  }
}

.cmn_num {
  width: 100%;
  padding-block: 40px;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  position: relative;
}

.indent_list li {
  text-indent: -1em;
  padding-left: 1em;
  &::before {
    content: "・";
  }
}
/* 色付きリスト */
.cmn_color--list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px 16px;
  li {
    width: calc(50% - 8px);
    background: linear-gradient(270deg, #BFD9FB 53.29%, #BFE8F1 100%);
    padding: 50px 32px 32px;
    min-height: 330px;
  }
  p.example {
    width: 100%;
    background: #fff;
    border-radius: 20px;
    color: #000;
    text-align: center;
    padding: 10px;
  }
  @media screen and (max-width: 767px){
    flex-direction: column;
    gap: 16px;
    li {
      width: 100%;
      padding: 32px 5%;
      min-height: auto;
    }
  }
}

.cmn_table--outer2 thead th,td {
  text-align: center;
}

/*contents*/
.contents {
  width: 100%;
  max-width: 960px;
  margin: 64px auto 0;
  &:last-child {
    margin-bottom: 80px;
  }
}
.contents_heading {
  width: 100%;
  color: var(--theme-color);
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 4.8px;
  border-bottom: 4px solid var(--theme-color);
  padding-bottom: 16px;
  margin-bottom: 40px;
}

.article_child--name {
  height: 40px;
  background: var(--theme-color);
  color: #fff;
  letter-spacing: 4.8px;
  font-size: 2.4rem;
  line-height: 1.5;
  margin-bottom: 20px;
  padding-left: 16px;
  display: flex;
  align-items: center;
  & span {
    background: #D4C68C;
    color: var(--theme-color);
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    width: 30px;
    height: 30px;
    padding-left: 4px;
    margin-right: 0.5em;
  }
}
.article_child--flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  & p {
    max-width: 520px;
  }
}
.cmn--flex {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  @media screen and (max-width: 767px) {
    flex-direction: column;
    align-items: center;
  }
}
/*見出し（トップ用）*/
.center_txt {
  text-align: center;
}
.cmn_heading {
  width: 100%;
  font-size: 2rem;
  padding-bottom: 0.5em;
  margin-bottom: 1em;
  position: relative;
  &::after {
    content: "";
    width: 100%;
    height: 2px;
    display: block;
    background: linear-gradient(90deg, #7FB8A3 0%, #00A4C5 100%);
    position: absolute;
    bottom: 0;
    left: 0;
  }
  /* 見出し（トップ用／中央寄せ） */
  &.center_txt {
    padding-bottom: 0;
  }
  &.center_txt::after {display: none;}
  &.center_txt span {
    position: relative;
    padding-bottom: 0.5em;
  }
  &.center_txt span::after {
    content: "";
    width: 100%;
    height: 2px;
    display: block;
    background: linear-gradient(90deg, #7FB8A3 0%, #00A4C5 100%);
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
/* 下層ページコンテナ（枠線あり） */
.article_child.page_container--border {
  border: 1px solid black;
  padding: 50px;
  @media screen and (max-width: 767px) {
    padding: 25px 5%;
  }
}
/* 下層ページコンテナ（まとめ箇所） */
.page_container--summary {
  width: 100%;
  background: linear-gradient(90deg, #7FD1E2 0%, #7FB3F7 100%);
  padding: 60px 0;
}
.page_container--summary .page_container {margin-bottom: 0;}
.summary_block {
  width: 100%;
  background: #fff;
  border: 1px solid black;
  padding: 50px;
  @media screen and (max-width: 767px) {
    padding: 40px 5%;
  }
}
.summary_measure--ttl {
  color: var(--theme-color);
  font-size: 2rem;
  margin-bottom: 20px;
}
.summary_measure--link {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px 24px;
  a {
    width: calc(50% - 12px);
    color: #000;
    background: linear-gradient(270deg, #7FD1E2 40.12%, #7FB8A3 100%);
    border-radius: 20px;
    padding: 10px;
    text-align: center;
  }
  @media screen and (max-width: 767px) {
    flex-direction: column;
    gap: 16px;
    a {
      width: 100%;
    }
  }
}
.dotted {
  position: relative;
  display: block;
  padding: 30px 0;
  span {
    position: absolute;
    width: 100%;
    height: 1px;
    display: block;
    border: 1px dotted black;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
  }
}

/* iPad縦 */
@media screen and (orientation: portrait) and (min-width: 768px){}

@media screen and (max-width: 767px){
  
  /*contents*/
  .contents {
    margin-top: 40px;
    &:last-child {
      margin-bottom: 48px;
    }
  }
  .contents_heading {
    margin: 0 auto 28px;
    font-size: 2rem;
    letter-spacing: 2.4px;
    padding-bottom: 8px;
  }
  .article_child {
    width: 90%;
    margin-bottom: 40px;
  }
  .article_child--name {
    height: auto;
    padding: 8px;
    padding-left: 16px;
    font-size: 2rem;
    letter-spacing: 2.4px;
    display: flex;
    align-items: flex-start;
    & span {
      min-width: 30px;
      margin-top: 4px;
    }
  }
  .article_child--flex {
    flex-direction: column-reverse;
    align-items: center;
    gap: 1em;
  }
}