@charset "UTF-8";
: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: #006EAD;
  --blandcolor-main: #0046A0;
  --color_border_base: #D1E2EB;
  --color_gray_light: #F5FAFE;
  --color_sub: #EAF5FF;
  --ff_outfit: "Outfit", sans-serif;
  --color_tfootBg: #D5E4F6;
}
@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_cont {
  padding-bottom: 100px;
}
@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;
    padding-block: 6px;
  }
  .ly_header_logo a {
    display: block;
    height: 100%;
  }
}
.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: #eee;
}
.ly_footer_inner {
  margin: auto;
  width: var(--contW);
}

.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;
  }
}

.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;
  margin-top: 30px;
}
.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);
}
.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;
}

/* PCサイズ（例：768px以上）の時に表示 */
@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
}
@media screen and (min-width: 767px) {
  .sp-only {
    display: none;
  }
}