:root {
  --scrollbarW: 0;
  --negLeading: calc((1em - 1lh) / 2);
  --transEasing: ease-in-out;
  --transDur: 0.3s;
  --transVals: var(--transDur) var(--transEasing);
  --designW_withSidenav: 1360;
  --designW: 1120;
  --designContW: 960;
  --contW: min(((var(--designContW) / var(--designW) * (100vw)) - (var(--sideNavW) * 1px) - (var(--scrollbarW) * 1px)), calc(var(--designContW) * 1px));
  --contSpace_hor: calc(((var(--htmlW) - var(--sideNavW)) * 1px - var(--contW)) / 2);
  --sideNavW: 240;
  --color_txt_base: #222;
  --color_txt_link: var(--color_main);
  --color_main: #0BA1A3;
  --blandcolor-main: #0BA1A3;
  --color_border_base: #D1EAEB;
  --color_gray_light: #F5FEFE;
  --color_sub: #E1F8FA;
  --ff_outfit: "Outfit", sans-serif;
  --color_tfootBg: #e1f8fa;
}
@media screen and (max-width: 767px) {
  :root {
    --designW: 375;
    --designContW: 335;
    --contW: calc(var(--designContW) / var(--designW) * (100vw - var(--scrollbarW) * 1px));
    --sideNavW: 0;
  }
}

:lang(en) {
  --negLeading: calc((1cap - 1lh) / 2);
}

/**
 * Layout
 */
.ly_wrapper {
  min-height: 100vh;
}
@media not all and (max-width: 767px), print {
  .ly_wrapper {
    display: grid;
    grid-template-columns: 240px 1fr;
    align-items: start;
  }
}

.ly_main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.ly_cont {
  padding-bottom: 100px;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .ly_cont {
    padding-top: 54px;
    padding-bottom: 64px;
  }
}
/**
 * Header
 */
.ly_header {
  padding-block: 0;
  background-color: #fff;
}
@media not all and (max-width: 767px), print {
  .ly_header {
    position: sticky;
    top: 0;
  }
}
@media screen and (max-width: 767px) {
  .ly_header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
  }
}
.ly_header_inner {
  margin: auto;
  width: var(--contW);
}
@media not all and (max-width: 767px), print {
  .ly_header_inner {
    width: 100% !important;
    text-align: center;
    padding: 24px 0;
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .ly_header_inner {
    height: 54px !important;
  }
}
.ly_header_logo {
  height: auto;
  transition: opacity 0.3s;
}
@media not all and (max-width: 767px), print {
  .ly_header_logo {
    width: 184px;
  }
}
@media screen and (max-width: 767px) {
  .ly_header_logo {
    width: 100px;
  }
  .ly_header_logo a {
    display: inline-block;
    height: 100%;
  }
  .ly_header_logo img {
    width: auto !important;
    max-height: 54px;
  }
}
.ly_header_logo:focus-visible {
  opacity: 0.6;
}
@media (any-hover: hover) {
  .ly_header_logo:hover {
    opacity: 0.6;
  }
}
.ly_header_logo img {
  width: 100%;
  height: auto;
}
.ly_header_menu {
  position: absolute;
  width: 23px;
  height: 19px;
  top: 17px;
  right: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--color_main);
  z-index: 1;
  transition-property: width, color, background-color;
  transition-duration: 0.3s;
}
.ly_header_menu .icon {
  display: block;
  width: 23px;
  height: 19px;
}
.ly_header_menu .icon span {
  position: relative;
  display: block;
  width: 100%;
  height: 1px;
  border-top: 1px solid currentColor;
}
.ly_header_menu .icon span::before, .ly_header_menu .icon span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  border-top: 1px solid currentColor;
  transition-property: top, left, transform;
  transition-duration: 0.3s;
  transform-origin: left;
}
.ly_header_menu .icon span::before {
  top: 9px;
}
.ly_header_menu .icon span::after {
  top: 18px;
}
.ly_header_menu:focus-visible {
  opacity: 0.6;
}
@media (any-hover: hover) {
  .ly_header_menu:hover {
    opacity: 0.6;
  }
}
@media not all and (max-width: 767px), print {
  .ly_header_menu {
    display: none;
  }
}
.ly_header_body {
  position: absolute;
  left: 0;
  width: 100%;
  background-color: #FBFBFB;
  opacity: 0;
  visibility: hidden;
  z-index: 10000000;
  overflow-y: auto;
  transition-property: opacity, visibility;
  transition-duration: var(--transDur);
  transition-timing-function: var(--transEasing);
  max-height: 100vh;
}
@media screen and (max-width: 767px) {
  .ly_header_body {
    padding-inline: 40px;
    background-color: #fff;
  }
}
@media not all and (max-width: 767px), print {
  .ly_header_body {
    opacity: 1;
    visibility: visible;
    padding: 0 28px;
    height: 100vh;
    display: flex;
    flex-direction: column;
  }
}
.ly_header_body .copyright {
  font-weight: 500;
  padding: 20px 0;
  margin-top: auto;
}
@media screen and (max-width: 767px) {
  .ly_header_body .copyright {
    padding: 0 0 30px;
  }
}
.ly_header_gNav {
  padding: 75px 0;
}
@media screen and (max-width: 767px) {
  .ly_header_gNav {
    padding: 68px 0;
  }
}
@media not all and (max-width: 767px), print {
  .ly_header_list {
    display: inline;
    text-align: left;
  }
}
.ly_header_list li {
  font-size: 0.9375rem;
  margin-bottom: 14px;
}
@media screen and (max-width: 767px) {
  .ly_header_list li {
    margin-bottom: 18px;
  }
}
.ly_header_list li:last-child {
  margin-bottom: 10px;
}
.ly_header_list li a {
  font-weight: 500;
  transition-property: color, background-color, opacity;
  transition-duration: 0.3s;
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: inherit;
}
.ly_header_list li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: var(--color_main);
  transition: width 0.3s ease;
}
.ly_header_list li a.active {
  color: var(--color_main);
  opacity: 1;
}
@media not all and (max-width: 767px), print {
  .ly_header_list li a:hover::after {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .ly_header.is_active {
    position: relative;
  }
  .ly_header.is_active .ly_header_menu .icon span {
    border-width: 0;
  }
  .ly_header.is_active .ly_header_menu .icon span::before {
    top: 2px;
    left: 5px;
    transform: rotate(45deg);
  }
  .ly_header.is_active .ly_header_menu .icon span::after {
    top: 18px;
    left: 5px;
    transform: rotate(-45deg);
  }
  .ly_header.is_active .ly_header_body {
    padding-bottom: 70px;
    opacity: 1;
    visibility: visible;
    max-height: none;
    height: 100svh;
  }
}

/**
 * Footer
 */
.ly_footer {
  padding-block: 40px;
  background-color: #edf2f4;
}
.ly_footer .bl_imgGroupList__bannerarea {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.el_wysiwyg tfoot th {
  color: var(--blandcolor-main);
  background-color: var(--color_tfootBg);
}
.el_wysiwyg tfoot td {
  color: var(--blandcolor-main);
  background-color: var(--color_tfootBg);
}

/**
 * Block
 */
.bl_contSet [class^=bl_] {
  font-size: 1.25rem;
}

.bl_wysiwyg p + p {
  margin-top: 1em;
}

.bl_imgAndBody p + p {
  margin-top: 1em;
}

.bl_breadcrumb {
  --_gap_col: 6px;
  --_gap_row: 6px;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .bl_breadcrumb {
    margin-bottom: 48px;
  }
}
.bl_breadcrumb ol {
  display: flex;
  gap: var(--_gap_row) var(--_gap_col);
  flex-wrap: wrap;
}
.bl_breadcrumb li {
  font-size: 0.75rem;
}
.bl_breadcrumb li:not(:first-child) {
  position: relative;
  padding-left: calc(var(--_gap_col) + 7px);
}
.bl_breadcrumb li:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5lh;
  translate: 0 -50%;
  rotate: -45deg;
  border-right: 1px solid;
  border-bottom: 1px solid;
  width: 5px;
  aspect-ratio: 1;
}
@media screen and (max-width: 767px) {
  .bl_breadcrumb li:not(:first-child)::before {
    margin-top: 1px;
  }
}
.bl_breadcrumb a {
  display: block;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.bl_breadcrumb a:focus-visible {
  text-decoration-color: transparent;
}
@media (any-hover: hover) {
  .bl_breadcrumb a:hover {
    text-decoration-color: transparent;
  }
}
.bl_breadcrumb li:last-child a {
  text-decoration: none;
  pointer-events: none;
}

.bl_pageHeader {
  margin-bottom: 24px;
  background-color: var(--color_sub);
}
@media screen and (max-width: 767px) {
  .bl_pageHeader {
    margin-bottom: 20px;
  }
}
.bl_pageHeader_inner {
  display: grid;
  align-items: center;
  padding-block: 50px;
  min-height: 270px;
}
@media screen and (max-width: 767px) {
  .bl_pageHeader_inner {
    min-height: 160px;
  }
}
.bl_pageHeader_title {
  font-size: 2.5rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .bl_pageHeader_title {
    font-size: 1.5rem;
  }
}

.bl_img {
  margin: auto;
  width: -moz-fit-content;
  width: fit-content;
}
.bl_img > div {
  border-radius: 4px;
  overflow: hidden;
}
.bl_img > div img {
  border-radius: inherit;
}
.bl_img__w100p {
  width: 100%;
}
.bl_img__w100p img {
  width: 100%;
}

a:has(> .bl_img) {
  display: block;
  margin: auto;
  width: -moz-fit-content;
  width: fit-content;
}

.bl_video iframe,
.bl_video video {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border-radius: 4px;
}
.bl_video figcaption {
  margin-top: 15px;
  contain: inline-size;
  font-size: 0.875rem;
}

.bl_fullimage {
  margin-top: 50px;
}
.bl_fullimage__image img {
  width: 100%;
  height: auto;
}
.bl_fullimage__image .pc-only {
  display: none;
}
@media (min-width: 769px) {
  .bl_fullimage__image .pc-only {
    display: block;
  }
  .bl_fullimage__image .sp-only {
    display: none;
  }
}

.bl_info {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .bl_info {
    margin-top: 64px;
  }
}

.bl_news {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .bl_news {
    margin-top: 64px;
  }
}

body:not(.pg_template) .bl_news .el_hdgMd, body:not(.pg_template) .bl_info .el_hdgMd {
  font-size: 1.75rem;
  font-weight: 600;
}

.bl_news .el_hdgMd {
  margin-bottom: 0;
}
.bl_news .bl_newsList_item {
  display: flex;
  padding: 30px 10px;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  align-self: stretch;
  border-bottom: 1px solid var(--color_border_base);
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}
.bl_news .bl_newsList_item.is-hidden {
  max-height: 0;
  opacity: 0;
  display: none;
}
.bl_news .bl_newsList_item.is-visible {
  max-height: 9999px;
  opacity: 1;
}
.bl_news .bl_newsList_item p.date {
  color: var(--color_main);
  font-weight: 500;
  line-height: 2;
}
.bl_news .bl_newsList_item p.txt {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  margin-top: 5px;
}
.bl_news .bl_newsBtn {
  display: grid;
  place-content: center;
  color: #fff;
  font-weight: 500;
}
.bl_news .bl_newsBtn_detail {
  position: relative;
  display: flex;
  width: 257px;
  min-width: 168px;
  padding: 14px 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 4px;
  border: 1px solid var(--color_main);
  background: var(--color_main);
  margin-top: 30px;
}
.bl_news .bl_newsBtn_detail::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 17px;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  background-color: #fff;
  -webkit-mask: url(../img/common/icon/icon_more.svg) no-repeat center;
  mask: url(../img/common/icon/icon_more.svg) no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.bl_news .bl_newsBtn_detail[hidden] {
  display: none;
}
@media not all and (max-width: 767px), print {
  @media (any-hover: hover) {
    .bl_news .bl_newsBtn_detail:hover {
      background: #fff;
      color: var(--color_main);
    }
    .bl_news .bl_newsBtn_detail:hover::before {
      background-color: var(--color_main);
    }
  }
}

.bl_info_body {
  margin-bottom: 1em;
  border-radius: 6px;
  padding: 36px 30px;
  background: var(--color_sub);
}
.bl_info_body p {
  font-size: 1.125rem;
}
.bl_info_body p strong {
  font-size: 1.25rem;
}
.bl_info_body p:not(:last-child) {
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .bl_imgGroupList__bannerarea {
    --_gap_col: 15px;
    --_gap_row: 10px!important;
    margin-top: 64px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media not all and (max-width: 767px), print {
  .bl_imgGroupList__bannerarea .bl_imgGroup .bl_img:not(:last-child) {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .bl_imgGroupList__bannerarea .bl_imgGroup .bl_img:not(:last-child) {
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 767px) {
  .bl_imgGroupList__bannerarea .bl_imgGroup_title:not(:last-child) {
    margin-bottom: 16px;
    padding-bottom: 16px;
  }
}
@media not all and (max-width: 767px), print {
  .bl_imgGroupList__bannerarea {
    --_gap_col: 18px;
    --_gap_row: 18px!important;
    margin-top: 50px;
    margin-bottom: 70px;
    grid-template-columns: repeat(5, 1fr);
  }
}
@media not all and (max-width: 767px), print {
  .bl_imgGroupList__bannerarea .bl_imgGroup_title {
    padding-bottom: 16px;
    font-size: 1.25rem;
  }
}
@media not all and (max-width: 767px), print {
  .bl_imgGroupList__bannerarea .bl_imgGroup_title:not(:last-child) {
    margin-bottom: 16px;
  }
}

.bl_contSet > :not(:first-child) {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .bl_contSet > :not(:first-child) {
    margin-top: 64px;
  }
}
.bl_contSet > .bl_hdgSet + * {
  margin-top: 0;
}

.bl_anchorLinkList {
  gap: 20px;
}
.bl_anchorLinkList:not([class*=bl_anchorLinkList__col]) {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .bl_anchorLinkList:not([class*=bl_anchorLinkList__col]) {
    gap: 16px;
    flex-direction: column;
  }
}
.bl_anchorLinkList[class*=bl_anchorLinkList__col] {
  display: grid;
}
@media screen and (max-width: 767px) {
  .bl_anchorLinkList[class*=bl_anchorLinkList__col] {
    gap: 15px 12px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media not all and (max-width: 767px), print {
  .bl_anchorLinkList__col3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media not all and (max-width: 767px), print {
  .bl_anchorLinkList__col4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media not all and (max-width: 767px), print {
  .bl_anchorLinkList__col5 {
    grid-template-columns: repeat(5, 1fr);
  }
}
.bl_anchorLinkList .el_anchorLink {
  height: 100%;
}

.bl_btnList {
  display: grid;
  gap: 20px;
}
.bl_btnList__col2 {
  grid-template-columns: repeat(2, 1fr);
}
@media not all and (max-width: 767px), print {
  .bl_btnList__col3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .bl_btnList__col3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media not all and (max-width: 767px), print {
  .bl_btnList__col4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .bl_btnList__col4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.bl_btnList_item .el_btn {
  width: 100%;
  height: 100%;
}
.bl_btnList_item[class*=bl_btnList_item__align] {
  display: flex;
}
.bl_btnList_item[class*=bl_btnList_item__align] .el_btn {
  width: -moz-fit-content;
  width: fit-content;
}
.bl_btnList_item__alignCenter {
  justify-content: center;
}
.bl_btnList_item__alignRight {
  justify-content: flex-end;
}

.bl_linkList {
  display: grid;
}
.bl_linkList__col2 {
  grid-template-columns: repeat(2, 1fr);
}
@media not all and (max-width: 767px), print {
  .bl_linkList__col3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .bl_linkList__col3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.bl_linkList__typeTxt {
  row-gap: 16px;
}
@media screen and (max-width: 767px) {
  .bl_linkList__typeTxt {
    row-gap: 12px;
  }
}
@media not all and (max-width: 767px), print {
  .bl_linkList__typeTxt.bl_linkList__col2 {
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .bl_linkList__typeTxt.bl_linkList__col2 {
    -moz-column-gap: 15px;
    column-gap: 15px;
  }
}
@media not all and (max-width: 767px), print {
  .bl_linkList__typeTxt.bl_linkList__col3 {
    -moz-column-gap: 36px;
    column-gap: 36px;
  }
}
@media screen and (max-width: 767px) {
  .bl_linkList__typeTxt.bl_linkList__col3 {
    -moz-column-gap: 15px;
    column-gap: 15px;
  }
}
.bl_linkList__typeBtn {
  border-left: 1px solid var(--color_border_base);
}
.bl_linkList__typeBtn > li {
  border-right: 1px solid var(--color_border_base);
  border-bottom: 1px solid var(--color_border_base);
}
.bl_linkList__typeBtn > li:nth-child(1) {
  border-top: 1px solid var(--color_border_base);
}
.bl_linkList__typeBtn.bl_linkList__col2 > li:nth-child(2) {
  border-top: 1px solid var(--color_border_base);
}
.bl_linkList__typeBtn.bl_linkList__col3 > li:nth-child(2) {
  border-top: 1px solid var(--color_border_base);
}
@media not all and (max-width: 767px), print {
  .bl_linkList__typeBtn.bl_linkList__col3 > li:nth-child(3) {
    border-top: 1px solid var(--color_border_base);
  }
}
.bl_linkList__typeBtn a {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 12px;
  height: 100%;
}
.bl_linkList__typeBtn a:focus-visible {
  background-color: var(--color_gray_light);
}
@media (any-hover: hover) {
  .bl_linkList__typeBtn a:hover {
    background-color: var(--color_gray_light);
  }
}
.bl_linkList__typeBtn a {
  --_linkIconColor: currentColor;
}
.bl_linkList__typeBtn a::after {
  display: inline-block;
  background-color: var(--_linkIconColor);
  -webkit-mask-position: 50%;
  mask-position: 50%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.bl_linkList__typeBtn a[target=_blank]::after, .bl_linkList__typeBtn a[href$=".pdf"]::after, .bl_linkList__typeBtn a[href*=".doc"]::after, .bl_linkList__typeBtn a[href*=".xls"]::after, .bl_linkList__typeBtn a[href*=".ppt"]::after, .bl_linkList__typeBtn a[href$=".zip"]::after {
  content: "";
  width: 17px;
  aspect-ratio: 17/16;
}
.bl_linkList__typeBtn a[target=_blank]::after {
  -webkit-mask-image: url("../img/common/icon/icon_blank.svg");
  mask-image: url("../img/common/icon/icon_blank.svg");
}
.bl_linkList__typeBtn a[href$=".pdf"]::after {
  -webkit-mask-image: url("../img/common/icon/icon_pdf.svg");
  mask-image: url("../img/common/icon/icon_pdf.svg");
}
.bl_linkList__typeBtn a[href*=".doc"]::after {
  -webkit-mask-image: url("../img/common/icon/icon_doc.svg");
  mask-image: url("../img/common/icon/icon_doc.svg");
}
.bl_linkList__typeBtn a[href*=".xls"]::after {
  -webkit-mask-image: url("../img/common/icon/icon_xls.svg");
  mask-image: url("../img/common/icon/icon_xls.svg");
}
.bl_linkList__typeBtn a[href*=".ppt"]::after {
  -webkit-mask-image: url("../img/common/icon/icon_ppt.svg");
  mask-image: url("../img/common/icon/icon_ppt.svg");
}
.bl_linkList__typeBtn a[href$=".zip"]::after {
  -webkit-mask-image: url("../img/common/icon/icon_zip.svg");
  mask-image: url("../img/common/icon/icon_zip.svg");
}
.bl_linkList__typeBtn a[href$=".zip"]::after {
  aspect-ratio: 1;
}
.bl_linkList__typeBtn a[target=_blank], .bl_linkList__typeBtn a[href$=".pdf"], .bl_linkList__typeBtn a[href*=".doc"], .bl_linkList__typeBtn a[href*=".xls"], .bl_linkList__typeBtn a[href*=".ppt"], .bl_linkList__typeBtn a[href$=".zip"] {
  --_linkIconColor: var(--color_main);
}
.bl_linkList__typeBtn a[target=_blank] .el_circleArrow, .bl_linkList__typeBtn a[href$=".pdf"] .el_circleArrow, .bl_linkList__typeBtn a[href*=".doc"] .el_circleArrow, .bl_linkList__typeBtn a[href*=".xls"] .el_circleArrow, .bl_linkList__typeBtn a[href*=".ppt"] .el_circleArrow, .bl_linkList__typeBtn a[href$=".zip"] .el_circleArrow {
  display: none;
}

.bl_imgAndBody {
  --_gap_col: 50px;
  --_gap_row: 30px;
  --_imgMaxW: calc(535 / 1080 * 100%);
}
@media screen and (max-width: 767px) {
  .bl_imgAndBody {
    --_gap_row: 24px;
  }
}
.bl_imgAndBody_inner {
  display: grid;
  gap: var(--_gap_row) var(--_gap_col);
}
@media not all and (max-width: 767px), print {
  .bl_imgAndBody__imgRight .bl_imgAndBody_inner:has(.bl_imgAndBody_img) {
    grid-template-columns: 1fr fit-content(var(--_imgMaxW));
  }
}
@media not all and (max-width: 767px), print {
  .bl_imgAndBody__imgRight .bl_imgAndBody_img {
    order: 1;
  }
}
@media not all and (max-width: 767px), print {
  .bl_imgAndBody__imgLeft .bl_imgAndBody_inner:has(.bl_imgAndBody_img) {
    grid-template-columns: fit-content(var(--_imgMaxW)) 1fr;
  }
}
@media not all and (max-width: 767px), print {
  .bl_imgAndBody[class*=bl_imgAndBody__imgFloat] .bl_imgAndBody_inner {
    display: block;
    margin-bottom: calc(var(--_gap_row) * -1);
  }
  .bl_imgAndBody[class*=bl_imgAndBody__imgFloat] .bl_imgAndBody_inner::after {
    content: "";
    display: block;
    clear: both;
  }
}
@media not all and (max-width: 767px), print {
  .bl_imgAndBody[class*=bl_imgAndBody__imgFloat] .bl_imgAndBody_img {
    padding-bottom: var(--_gap_row);
    max-width: var(--_imgMaxW);
  }
}
@media not all and (max-width: 767px), print {
  .bl_imgAndBody[class*=bl_imgAndBody__imgFloatRight] .bl_imgAndBody_img {
    float: right;
    margin-left: var(--_gap_col);
  }
}
@media not all and (max-width: 767px), print {
  .bl_imgAndBody[class*=bl_imgAndBody__imgFloatLeft] .bl_imgAndBody_img {
    float: left;
    margin-right: var(--_gap_col);
  }
}
@media not all and (max-width: 767px), print {
  .bl_imgAndBody[class*=bl_imgAndBody__imgFloat] .bl_imgAndBody_body {
    padding-bottom: var(--_gap_row);
  }
}
.bl_imgAndBody[class*=bl_imgAndBody__imgFloat] .bl_imgAndBody_hdg {
  overflow: hidden;
}

.bl_imgGroup .bl_img:not(:last-child) {
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .bl_imgGroup .bl_img:not(:last-child) {
    margin-bottom: 22px;
  }
}
.bl_imgGroup_title:not(:last-child) {
  margin-bottom: 22px;
}
.bl_imgGroup_title:last-child {
  margin-bottom: 0;
}
.bl_imgGroup_txt {
  line-height: 1.8;
}

.bl_imgGroupList {
  --_gap_row: 56px;
  display: grid;
  gap: var(--_gap_row) var(--_gap_col, 0);
}
@media not all and (max-width: 767px), print {
  .bl_imgGroupList__col2 {
    --_gap_col: 40px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .bl_imgGroupList__col3, .bl_imgGroupList__col4 {
    --_gap_col: 15px;
    --_gap_row: 40px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media not all and (max-width: 767px), print {
  .bl_imgGroupList__col3 .bl_imgGroup .bl_img:not(:last-child), .bl_imgGroupList__col4 .bl_imgGroup .bl_img:not(:last-child) {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .bl_imgGroupList__col3 .bl_imgGroup .bl_img:not(:last-child), .bl_imgGroupList__col4 .bl_imgGroup .bl_img:not(:last-child) {
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 767px) {
  .bl_imgGroupList__col3 .bl_imgGroup_title:not(:last-child), .bl_imgGroupList__col4 .bl_imgGroup_title:not(:last-child) {
    margin-bottom: 16px;
    padding-bottom: 16px;
  }
}
@media not all and (max-width: 767px), print {
  .bl_imgGroupList__col3 {
    --_gap_col: 36px;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media not all and (max-width: 767px), print {
  .bl_imgGroupList__col4 {
    --_gap_col: 24px;
    grid-template-columns: repeat(4, 1fr);
  }
}
@media not all and (max-width: 767px), print {
  .bl_imgGroupList__col4 .bl_imgGroup_title {
    padding-bottom: 16px;
    font-size: 1.25rem;
  }
}
@media not all and (max-width: 767px), print {
  .bl_imgGroupList__col4 .bl_imgGroup_title:not(:last-child) {
    margin-bottom: 16px;
  }
}

@media screen and (max-width: 767px) {
  .bl_table__spScroll {
    margin-inline: 0;
    padding: 0 var(--contSpace_hor) 1px;
    width: auto;
  }
}
@media screen and (max-width: 767px) {
  .bl_table__spScroll .el_wysiwyg {
    width: 200%;
  }
}
@media screen and (max-width: 767px) {
  .bl_table__spScroll table {
    width: 100%;
  }
}

.bl_videoGroup .bl_video:not(:last-child) {
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .bl_videoGroup .bl_video:not(:last-child) {
    margin-bottom: 22px;
  }
}
.bl_videoGroup_title:not(:last-child) {
  margin-bottom: 22px;
}
.bl_videoGroup_title:last-child {
  margin-bottom: 0;
}
.bl_videoGroup_txt {
  line-height: 1.8;
}

.bl_videoGroupList {
  --_gap_row: 56px;
  display: grid;
  gap: var(--_gap_row) var(--_gap_col, 0);
}
@media not all and (max-width: 767px), print {
  .bl_videoGroupList__col2 {
    --_gap_col: 40px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .bl_videoGroupList__col3, .bl_videoGroupList__col4 {
    --_gap_col: 15px;
    --_gap_row: 40px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media not all and (max-width: 767px), print {
  .bl_videoGroupList__col3 .bl_videoGroup .bl_video:not(:last-child), .bl_videoGroupList__col4 .bl_videoGroup .bl_video:not(:last-child) {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .bl_videoGroupList__col3 .bl_videoGroup .bl_video:not(:last-child), .bl_videoGroupList__col4 .bl_videoGroup .bl_video:not(:last-child) {
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 767px) {
  .bl_videoGroupList__col3 .bl_videoGroup_title:not(:last-child), .bl_videoGroupList__col4 .bl_videoGroup_title:not(:last-child) {
    margin-bottom: 16px;
    padding-bottom: 16px;
  }
}
@media not all and (max-width: 767px), print {
  .bl_videoGroupList__col3 {
    --_gap_col: 36px;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .bl_videoGroupList__col3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media not all and (max-width: 767px), print {
  .bl_videoGroupList__col4 {
    --_gap_col: 24px;
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .bl_videoGroupList__col4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media not all and (max-width: 767px), print {
  .bl_videoGroupList__col4 .bl_videoGroup_title {
    padding-bottom: 16px;
    font-size: 1.25rem;
  }
}
@media not all and (max-width: 767px), print {
  .bl_videoGroupList__col4 .bl_videoGroup_title:not(:last-child) {
    margin-bottom: 16px;
  }
}

.bl_dataTable {
  display: grid;
  grid-template-columns: minmax(200px, max-content) 1fr;
  gap: 0 2em;
}
@media screen and (max-width: 767px) {
  .bl_dataTable {
    grid-template-columns: minmax(100px, max-content) 1fr;
  }
}
.bl_dataTable_row {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: span 2;
  align-items: center;
  border-bottom: 2px solid;
  padding: 20px;
}
.bl_dataTable_row:nth-child(odd) {
  background-color: #ddd;
}
.bl_dataTable dt {
  font-weight: bold;
}

.bl_accordionList {
  display: grid;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .bl_accordionList {
    gap: 16px;
  }
}

.bl_accordion {
  border: 1px solid var(--color_border_base);
  border-radius: 6px;
  overflow: hidden;
}
.bl_accordion_head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  font-size: 1.0625rem;
  font-weight: 500;
  transition: background-color var(--transVals);
}
.bl_accordion_head:focus-visible {
  background-color: var(--color_gray_light);
}
@media (any-hover: hover) {
  .bl_accordion_head:hover {
    background-color: var(--color_gray_light);
  }
}
@media screen and (max-width: 767px) {
  .bl_accordion_head {
    padding: 13px 12px;
    font-size: 0.9375rem;
  }
}
.bl_accordion_head .icon {
  position: relative;
  width: 16px;
  height: 1px;
  background-color: var(--color_main);
}
.bl_accordion_head .icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: inherit;
  rotate: 90deg;
}
.bl_accordion[open] .bl_accordion_head {
  background-color: var(--color_gray_light);
}
.bl_accordion[open] .bl_accordion_head .icon::before {
  opacity: 0;
}
.bl_accordion_body > div {
  padding: 12px 16px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .bl_accordion_body > div {
    padding: 12px;
  }
}

.js_accordion_head {
  cursor: pointer;
}
.js_accordion_head::-webkit-details-marker {
  display: none;
}
.js_accordion_body {
  overflow: hidden;
}

.bl_dialog {
  opacity: 0;
  visibility: hidden;
  display: block;
  overflow-y: auto;
  overscroll-behavior: contain;
  transition-property: opacity, visibility, overlay;
  transition-duration: var(--transDur);
  transition-timing-function: var(--transEasing);
  transition-behavior: allow-discrete;
  scrollbar-width: none;
}
.bl_dialog::-webkit-scrollbar {
  display: none;
}
.bl_dialog[open] {
  opacity: 1;
  visibility: visible;
}
.bl_dialog::backdrop {
  display: none;
}
.bl_dialog_backdrop {
  height: calc(100% + 1px);
}
.bl_dialog_inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  min-height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.bl_dialog_body {
  position: relative;
  padding: 40px;
  background-color: #fff;
}
.bl_dialog_closeBtn {
  display: grid;
  place-items: center;
  position: absolute;
  right: 0;
  top: 0;
  width: 32px;
  aspect-ratio: 1;
  background-color: #000;
}
.bl_dialog_closeBtn > span:not([class]) {
  position: relative;
  width: 16px;
  height: 2px;
}
.bl_dialog_closeBtn > span:not([class])::before, .bl_dialog_closeBtn > span:not([class])::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #fff;
}
.bl_dialog_closeBtn > span:not([class])::before {
  rotate: -45deg;
}
.bl_dialog_closeBtn > span:not([class])::after {
  rotate: 45deg;
}

.bl_tablist button {
  --_tabColor: var(--color_txt_base);
  border: 1px solid var(--_tabColor);
  border-bottom: 0;
  padding: 1em;
}
.bl_tablist button[aria-selected=true] {
  background-color: var(--_tabColor);
  color: #fff;
}

.bl_tabpanellist_tabpanel > div {
  border: 2px solid;
  padding: 2em;
}