@charset "UTF-8";
@media screen and (min-width: 375px) {
  /* xs-size */
}
@media screen and (min-width: 768px) {
  /* s-size */
}
@media screen and (min-width: 992px) {
  /* m-size */
}
@media screen and (min-width: 1200px) {
  /* l-size */
}
@media screen and (min-width: 1400px) {
  /* xl-size */
}
:root {
  --vh: 100vh;
  --vh: 100svh;
  /* 色関連 */
  --color-primary: #e43c00;
  --color-secondary: #f7f5f1;
  --color-accent: #f00;
  --color-text: #000;
  --color-border: #e8e8e8;
  --color-black: #000;
  --color-white: #fff;
  --font-family-base: "Noto Sans JP", sans-serif;
  /* トランジションとアニメーション */
  --transition-duration-default: 0.3s;
  --transition-easing-default: ease-out;
}

html {
  font-size: 62.5%;
}

body {
  position: relative;
  z-index: 1;
  font-family: var(--font-family-base);
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: var(--color-text);
  min-height: var(--vh);
  -webkit-font-smoothing: antialiased;
  font-size: 1.6rem;
  line-height: 1.625;
}

.ly_container {
  height: 100%;
  min-height: var(--vh);
  display: flex;
  flex-direction: column;
}

.ly_main {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .ly_main {
    margin-top: 90px;
  }
}

.ly_centered {
  width: calc(100% - 40px);
  max-width: 800px;
  margin-inline: auto;
}
.ly_centered__w1200 {
  max-width: 1200px;
}

.ly_header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 50px;
  border-bottom: 1px solid #bfbfbf;
  background-color: var(--color-white);
  display: grid;
  place-items: center;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .ly_header {
    height: 90px;
  }
}
.ly_header_inner {
  width: calc(100% - 20px);
  margin-inline: auto;
  padding-right: 45px;
  display: flex;
  align-items: center;
  gap: 0 20px;
}
@media screen and (min-width: 768px) {
  .ly_header_inner {
    width: calc(100% - 40px);
    padding-right: 0;
  }
}
.ly_header_logo {
  max-width: 277px;
}
@media screen and (min-width: 992px) {
  .ly_header_logo {
    max-width: 350px;
  }
}
@media screen and (min-width: 1200px) {
  .ly_header_logo {
    max-width: 451px;
  }
}
.ly_header_logo > a {
  width: 100%;
  transition: opacity var(--transition-duration-default) var(--transition-easing-default);
}
@media (hover: hover) {
  .ly_header_logo > a:hover {
    opacity: 0.7;
    will-change: opacity;
  }
}
.ly_header_logo > a img {
  width: 100%;
}
.ly_header_right {
  display: none;
}
@media screen and (min-width: 768px) {
  .ly_header_right {
    display: block;
    margin-left: auto;
  }
}
@media screen and (min-width: 768px) {
  .ly_header .bl_search {
    max-width: 210px;
  }
}

.ly_headerBtns {
  display: flex;
  justify-content: flex-end;
  gap: 0 5px;
}

.ly_headerBtnList {
  display: flex;
  gap: 0 5px;
}

.ly_headerBtnItem {
  position: relative;
  min-width: 130px;
  height: 100%;
  padding: 4px 15px;
  border-radius: 3px;
  text-decoration: none;
  display: grid;
  place-items: center;
  color: var(--color-white);
  transition: opacity var(--transition-duration-default) var(--transition-easing-default);
  font-size: 1.4rem;
  line-height: 1.4285714286;
}
@media (hover: hover) {
  .ly_headerBtnItem:hover {
    opacity: 0.7;
    will-change: opacity;
  }
}
.ly_headerBtnItem::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 3px;
  right: 3px;
  width: 8px;
  height: 8px;
  background: url("/image/icon/icon_header_btn_deco.svg") no-repeat center;
  background-size: 8px 8px;
}
.ly_headerBtnItem.green {
  background-color: #75bb60;
}
.ly_headerBtnItem.blue {
  background-color: #3da4db;
}

.ly_headerNav {
  margin-top: 10px;
}
@media screen and (min-width: 992px) {
  .ly_headerNav {
    margin-top: 15px;
  }
}
.ly_headerNav_list {
  display: flex;
  justify-content: flex-end;
}
.ly_headerNav_list > li:not(:first-child) {
  border-left: 1px solid var(--color-border);
}
.ly_headerNav_list > li:first-child > a {
  padding-left: 0;
}
.ly_headerNav_list > li:last-child > a {
  padding-right: 0;
}
.ly_headerNav_list > li > a {
  display: block;
  padding: 0 13px;
  color: inherit;
  text-decoration: none;
  transition: opacity var(--transition-duration-default) var(--transition-easing-default);
  font-size: 1.4rem;
  line-height: 1.4375;
}
@media screen and (min-width: 992px) {
  .ly_headerNav_list > li > a {
    font-size: 1.6rem;
  }
}
@media (hover: hover) {
  .ly_headerNav_list > li > a:hover {
    opacity: 0.7;
    will-change: opacity;
  }
}

.ly_footer {
  padding-top: 85px;
}
@media screen and (min-width: 768px) {
  .ly_footer {
    padding-top: 100px;
  }
}
.ly_footer_wrap {
  position: relative;
  margin-top: 96px;
  border-top: 2px solid var(--color-border);
}
@media screen and (min-width: 768px) {
  .ly_footer_wrap {
    margin-top: 130px;
  }
}
.ly_footer_inner {
  width: calc(100% - 20px);
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .ly_footer_inner {
    width: calc(100% - 40px);
  }
}
.ly_footer_logo {
  max-width: 350px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .ly_footer_logo {
    max-width: 450px;
  }
}
.ly_footer_logo > a {
  width: 100%;
  transition: opacity var(--transition-duration-default) var(--transition-easing-default);
}
@media (hover: hover) {
  .ly_footer_logo > a:hover {
    opacity: 0.7;
    will-change: opacity;
  }
}
.ly_footer_logo > a img {
  width: 100%;
}
.ly_footer_address {
  margin-top: 40px;
  text-align: center;
  font-style: normal;
  font-size: 1.5rem;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .ly_footer_address {
    margin-top: 13px;
  }
}
.ly_footer_address .tel {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}
@media screen and (min-width: 768px) {
  .ly_footer_address .tel {
    pointer-events: none;
  }
}
.ly_footer_imgWrap {
  width: 210px;
  margin: 30px auto 0;
}
.ly_footer_imgWrap img {
  width: 100%;
}
.ly_footer_copy {
  width: 100%;
  min-height: 50px;
  padding: 10px;
  display: grid;
  place-items: center;
  color: var(--color-white);
  background-color: var(--color-primary);
  font-size: 1rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .ly_footer_copy {
    font-size: 1.5rem;
  }
}

body.is_menuOpen {
  overflow: hidden;
}

.ly_menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  height: 100%;
  padding: 60px 0 50px;
  background-color: var(--color-secondary);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-duration-default) var(--transition-easing-default), visibility var(--transition-duration-default) var(--transition-easing-default);
}
@media screen and (min-width: 992px) {
  .ly_menu {
    display: none;
  }
}
.ly_menu.is_menuOpen {
  opacity: 1;
  visibility: visible;
}
.ly_menu_inner {
  width: calc(100% - 40px);
  height: 100%;
  margin-inline: auto;
}
.ly_menu_list {
  margin-top: 10px;
}
.ly_menu_list > li {
  border-bottom: 1px dashed #afafaf;
}
.ly_menu_list > li > a {
  position: relative;
  display: block;
  padding: 17px 25px 17px 13px;
  border-radius: 3px;
  color: var(--color-black);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1;
}
.ly_menu_list > li > a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  aspect-ratio: 1;
  border-top: 2px solid #ff8000;
  border-right: 2px solid #ff8000;
}

.ly_menuToggle {
  position: fixed;
  top: 5px;
  right: 10px;
  width: 40px;
  height: 40px;
}
@media screen and (min-width: 768px) {
  .ly_menuToggle {
    display: none;
  }
}
.ly_menuToggle::after {
  content: "MENU";
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1rem;
  line-height: 1;
}
.ly_menuToggle > .line {
  position: absolute;
  top: 8px;
  left: 2px;
  display: block;
  width: 36px;
  height: 1px;
  background-color: var(--color-primary);
  transition: opacity var(--transition-duration-default) var(--transition-easing-default), transform var(--transition-duration-default) var(--transition-easing-default), top var(--transition-duration-default) var(--transition-easing-default);
}
.ly_menuToggle > .line:nth-of-type(2) {
  top: 14px;
}
.ly_menuToggle > .line:nth-of-type(3) {
  top: 20px;
}
.ly_menuToggle.is_menuOpen::after {
  content: "CLOSE";
}
.ly_menuToggle.is_menuOpen > .line:nth-of-type(1) {
  top: 14px;
  transform: rotate(-15deg);
}
.ly_menuToggle.is_menuOpen > .line:nth-of-type(2) {
  opacity: 0;
}
.ly_menuToggle.is_menuOpen > .line:nth-of-type(3) {
  top: 14px;
  transform: rotate(15deg);
}

.ly_pageTop {
  position: absolute;
  bottom: calc(100% - 60px);
  left: 50%;
  transform: translateX(-50%);
}
.ly_pageTop > a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 13px 0;
  width: 120px;
  aspect-ratio: 1;
  padding-bottom: 10px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: var(--color-white);
  text-decoration: none;
  font-weight: 500;
  transition: opacity var(--transition-duration-default) var(--transition-easing-default);
  font-size: 1.4rem;
  line-height: 1.3571428571;
}
@media (hover: hover) {
  .ly_pageTop > a:hover {
    opacity: 0.7;
    will-change: opacity;
  }
}
.ly_pageTop > a::before {
  content: "";
  display: block;
  width: 15px;
  height: 13px;
  background-color: var(--color-white);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.ly_cont_inner {
  display: flex;
  flex-direction: column;
  gap: 50px 0;
}
@media screen and (min-width: 768px) {
  .ly_cont_inner {
    flex-direction: row;
    gap: 0 40px;
  }
}
@media screen and (min-width: 768px) {
  .ly_cont_primary {
    flex: 1;
  }
}
@media screen and (min-width: 768px) {
  .ly_cont_secondary {
    width: 33.3333333%;
  }
}
@media screen and (min-width: 768px) {
  .ly_cont .bl_btnList {
    justify-content: flex-start;
  }
}

.bl_search > form {
  position: relative;
  display: flex;
}
.bl_search_input {
  width: 100%;
  height: 40px;
  padding: 5px 40px 5px 10px;
  background-color: var(--color-white);
  border: 2px solid var(--color-border);
  border-radius: 3px;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .bl_search_input {
    height: 30px;
    padding-right: 30px;
    font-size: 1.4rem;
  }
}
.bl_search_input::-moz-placeholder {
  color: #9a9a9a;
}
.bl_search_input::placeholder {
  color: #9a9a9a;
}
.bl_search_submit {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: url("/image/icon/icon_search.svg") no-repeat center;
  background-size: 13px 13px;
  color: transparent;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .bl_search_submit {
    right: 5px;
  }
}
.bl_search_wrap {
  max-width: 400px;
}
.bl_search__ver02 .bl_search_input {
  height: 50px;
  padding-right: 35px;
}
.bl_search__ver02 .bl_search_submit {
  width: 40px;
  height: 40px;
  background-size: 16px 16px;
}

.bl_searchList {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
  margin-top: 30px;
}

.bl_searchItem {
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 15px;
}
.bl_searchItem_ttl {
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.2777777778;
}
.bl_searchItem_ttl > a {
  color: var(--color-primary);
  transition: opacity var(--transition-duration-default) var(--transition-easing-default);
}
@media (hover: hover) {
  .bl_searchItem_ttl > a:hover {
    opacity: 0.7;
    will-change: opacity;
  }
}
.bl_searchItem_url {
  color: #808080;
  font-size: 1.2rem;
  margin: 5px 0;
  font-size: 1.2rem;
  line-height: 1.25;
}
.bl_searchItem_txt {
  font-size: 1.6rem;
  line-height: 1.625;
}

.bl_breadcrumb {
  width: calc(100% - 20px);
  max-width: 1200px;
  margin: 6px auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .bl_breadcrumb {
    width: calc(100% - 40px);
  }
}
.bl_breadcrumb_wrap {
  width: 100%;
}
.bl_breadcrumb_item:not(:last-child)::after {
  content: ">";
  display: inline-block;
  margin: 0 10px;
}
.bl_breadcrumb_item > a, .bl_breadcrumb_item span {
  display: inline-block;
  font-size: 1.3rem;
  line-height: 1.4615384615;
}
.bl_breadcrumb_item > a {
  color: inherit;
  transition: opacity var(--transition-duration-default) var(--transition-easing-default);
}
@media (hover: hover) {
  .bl_breadcrumb_item > a:hover {
    opacity: 0.7;
    will-change: opacity;
  }
}

.bl_pageHead {
  padding: 20px 0;
  min-height: 90px;
  background-color: var(--color-secondary);
  display: grid;
  place-items: center;
}
@media screen and (min-width: 768px) {
  .bl_pageHead {
    min-height: 140px;
  }
}
.bl_pageHead_inner {
  width: calc(100% - 20px);
  max-width: 1200px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .bl_pageHead_inner {
    width: calc(100% - 40px);
  }
}
.bl_pageHead_heading {
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 1.4166666667;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .bl_pageHead_heading {
    font-size: 4rem;
  }
}

.bl_pageFullImg {
  width: 100%;
  max-height: 395px;
  aspect-ratio: 375/120;
}
@media screen and (min-width: 768px) {
  .bl_pageFullImg {
    aspect-ratio: 1920/395;
  }
}
.bl_pageFullImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.bl_section {
  padding: 40px 0;
}

.bl_listCardUnit {
  display: flex;
  flex-direction: column;
  gap: 30px 0;
}
@media screen and (min-width: 768px) {
  .bl_listCardUnit__3col {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
}
@media screen and (min-width: 768px) {
  .bl_listCardUnit__3col .bl_listCard {
    width: calc((100% - 60px) / 3);
  }
}

.bl_listCard_mainCont {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid #ddd;
  transition: opacity var(--transition-duration-default) var(--transition-easing-default);
}
@media (hover: hover) {
  .bl_listCard_mainCont:hover {
    opacity: 0.7;
  }
  .bl_listCard_mainCont:hover .bl_listCard_heading {
    color: var(--color-primary);
  }
}
.bl_listCard_imgWrap img {
  width: 100%;
}
.bl_listCard_body {
  padding: 10px;
}
.bl_listCard_heading {
  font-weight: 500;
  transition: color var(--transition-duration-default) var(--transition-easing-default);
  font-size: 2rem;
  line-height: 1.45;
}
.bl_listCard_heading > span {
  position: relative;
  padding: 0 12px;
  display: block;
}
.bl_listCard_heading > span::before {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 0;
  width: 4px;
  height: 24px;
  background-color: #ff8000;
}
.bl_listCard_lead {
  margin-top: 10px;
  padding: 8px 12px;
  background-color: #fff6ed;
  font-size: 1.3rem;
  line-height: 1.4615384615;
}
.bl_listCard_subCont {
  padding: 0 20px;
}
.bl_listCard_linkList > li > a {
  position: relative;
  display: block;
  padding: 10px 10px 10px 15px;
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-duration-default) var(--transition-easing-default);
  font-size: 1.6rem;
  line-height: 1.3125;
}
.bl_listCard_linkList > li > a::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #848484;
  transition: background var(--transition-duration-default) var(--transition-easing-default);
}
@media (hover: hover) {
  .bl_listCard_linkList > li > a:hover {
    color: var(--color-primary);
  }
  .bl_listCard_linkList > li > a:hover::before {
    background-color: var(--color-primary);
  }
}

.bl_table_wrap {
  width: 100%;
  overflow-x: auto;
}
.bl_table_wrap table {
  min-width: 600px;
}

.bl_newsList > li {
  border-bottom: 1px dashed #bebebe;
}
.bl_newsList > li:first-child .bl_newsItem {
  padding-top: 0;
}

.bl_newsItem {
  display: block;
  padding: 10px 10px 13px;
  text-decoration: none;
  color: var(--color-black);
  transition: opacity var(--transition-duration-default) var(--transition-easing-default);
}
@media (hover: hover) {
  .bl_newsItem:hover {
    opacity: 0.7;
    will-change: opacity;
  }
}
.bl_newsItem_data {
  margin-bottom: 3px;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.3333333333;
}
.bl_newsItem_txt {
  display: inline;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.3125;
}
.bl_newsItem[target=_blank] .bl_newsItem_txt::after {
  content: "";
  display: inline-block;
  width: 1.063em;
  height: 1.063em;
  margin-left: 5px;
  background: url("/image/icon/icon_blank.svg") no-repeat center;
  background-size: 1.063em 1.063em;
}
.bl_newsItem[href$=".pdf"] .bl_newsItem_txt::after, .bl_newsItem[href$=".doc"] .bl_newsItem_txt::after, .bl_newsItem[href$=".docx"] .bl_newsItem_txt::after, .bl_newsItem[href$=".xlsx"] .bl_newsItem_txt::after {
  content: "";
  display: inline-block;
  width: 0.875em;
  height: 1.125em;
  margin-left: 5px;
  transform: translateY(2px);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 0.875em 1.125em;
}
.bl_newsItem[href$=".pdf"] .bl_newsItem_txt::after {
  background-image: url("/image/icon/icon_pdf.svg");
}
.bl_newsItem[href$=".doc"] .bl_newsItem_txt::after, .bl_newsItem[href$=".docx"] .bl_newsItem_txt::after {
  background-image: url("/image/icon/icon_word.svg");
}
.bl_newsItem[href$=".xlsx"] .bl_newsItem_txt::after {
  background-image: url("/image/icon/icon_excel.svg");
}

.bl_newsBtnList {
  margin-top: 17px;
  display: flex;
  justify-content: center;
  gap: 0 8px;
}
@media screen and (min-width: 768px) {
  .bl_newsBtnList {
    justify-content: flex-start;
    margin-top: 21px;
  }
}

.bl_newsBtn {
  position: relative;
  min-height: 40px;
  padding: 5px 22px 6px 43px;
  border-radius: 5px;
  border: 1px solid var(--color-primary);
  background-color: var(--color-primary);
  color: var(--color-white);
  text-decoration: none;
  text-align: center;
  display: grid;
  place-items: center;
  transition: opacity var(--transition-duration-default) var(--transition-easing-default);
  font-size: 1.4rem;
  line-height: 1.4285714286;
}
.bl_newsBtn::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 13px;
  transform: translateY(-50%);
  width: 16px;
  height: 11px;
  background: url("/image/icon/icon_news_btn_deco.svg") no-repeat center;
  background-size: 16px 11px;
}
@media (hover: hover) {
  .bl_newsBtn:hover {
    opacity: 0.7;
    will-change: opacity;
  }
}
.bl_newsBtn__rss {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 6px;
  min-width: 100px;
  padding: 5px 10px 6px 10px;
  color: var(--color-black);
  border-color: #bebebe;
  background-color: var(--color-white);
  font-weight: 500;
}
.bl_newsBtn__rss::before {
  content: "";
  display: block;
  position: static;
  transform: translateY(0);
  width: 14px;
  height: 14px;
  background: url("/image/icon/icon_news_btn_rss.svg") no-repeat center;
  background-size: 14px 14px;
}

.bl_logoList {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px 0;
}
@media screen and (min-width: 768px) {
  .bl_logoList {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
}
.bl_logoList > li {
  list-style: none;
  border: 1px solid #bababa;
}
@media screen and (min-width: 768px) {
  .bl_logoList > li {
    width: calc((100% - 40px) / 3);
  }
}

.bl_logoItem {
  display: block;
  transition: opacity var(--transition-duration-default) var(--transition-easing-default);
}
@media (hover: hover) {
  .bl_logoItem:hover {
    opacity: 0.7;
    will-change: opacity;
  }
}
.bl_logoItem img {
  width: 100%;
}

.bl_side + .bl_side {
  margin-top: 30px;
}
.bl_side_heading {
  padding: 10px;
  background-color: var(--color-secondary);
  font-weight: 600;
}
.bl_side_body {
  margin-top: 10px;
  padding: 0 10px;
}

.bl_sideList > li {
  border-bottom: 1px dashed #bebebe;
}
.bl_sideList > li:first-child .bl_sideItem {
  padding-top: 0;
}

.bl_sideItem {
  display: block;
  color: inherit;
  text-decoration: none;
  padding: 10px 0;
  transition: opacity var(--transition-duration-default) var(--transition-easing-default);
}
@media (hover: hover) {
  .bl_sideItem:hover {
    opacity: 0.7;
    will-change: opacity;
  }
}
.bl_sideItem_date {
  margin-bottom: 3px;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.3333333333;
}
.bl_sideItem_txt {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.3125;
}

.bl_sideList02 {
  font-size: 1.6rem;
  line-height: 1.3125;
}
.bl_sideList02 li:not(:first-child) {
  margin-top: 10px;
}
.bl_sideList02 li a {
  position: relative;
  display: block;
  padding-left: 15px;
  color: inherit;
  text-decoration: none;
  transition: opacity var(--transition-duration-default) var(--transition-easing-default);
}
@media (hover: hover) {
  .bl_sideList02 li a:hover {
    opacity: 0.7;
    will-change: opacity;
  }
}
.bl_sideList02 li a::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 6px;
  height: 10px;
  background-color: #848484;
  clip-path: polygon(100% 50%, 0 0, 0 100%);
}
.bl_sideList02 li ul {
  margin-top: 10px;
  padding-left: 1em;
}

.bl_pager {
  display: flex;
  justify-content: center;
  gap: 0 10px;
}
@media screen and (min-width: 768px) {
  .bl_pager {
    justify-content: flex-start;
  }
}
.bl_pager_wrap {
  margin-top: 30px;
}
.bl_pager_num > a, .bl_pager_num span {
  width: 40px;
  aspect-ratio: 1;
  background-color: var(--color-secondary);
  color: inherit;
  text-decoration: none;
  display: grid;
  place-items: center;
  transition: color var(--transition-duration-default) var(--transition-easing-default), background var(--transition-duration-default) var(--transition-easing-default);
  font-size: 1.6rem;
  line-height: 1;
}
.bl_pager_num > a:hover {
  color: var(--color-white);
  background-color: var(--color-black);
}
.bl_pager_num.is_current span {
  background-color: var(--color-black);
  color: var(--color-secondary);
}
.bl_pager_prev > a, .bl_pager_next > a {
  width: 40px;
  aspect-ratio: 1;
  color: inherit;
  text-decoration: none;
  display: grid;
  place-items: center;
  transition: background var(--transition-duration-default) var(--transition-easing-default);
}
.bl_pager_prev > a::before, .bl_pager_next > a::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--color-black);
  border-right: 2px solid var(--color-black);
  transform: rotate(45deg);
}
.bl_pager_prev > a:hover, .bl_pager_next > a:hover {
  background-color: var(--color-secondary);
}
.bl_pager_prev > a::before {
  transform: rotate(45deg) scale(-1);
}

.bl_btnList {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.bl_btnList02 {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}
@media screen and (min-width: 768px) {
  .bl_btnList02 {
    flex-direction: row;
    gap: 0 20px;
  }
}
.bl_btnList02 > li {
  width: 100%;
}

.bl_formMassage {
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
  background-color: #fffbea;
  margin: 10px auto;
  padding: 10px 15px;
  font-weight: 700;
  font-size: 1.5rem;
}

.bl_form {
  margin-top: 60px;
}
.bl_form_btnList {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 10px;
}
@media screen and (min-width: 768px) {
  .bl_form_btnList {
    margin-top: 60px;
  }
}
.bl_form_submit {
  width: 144px;
  min-height: 50px;
  padding: 5px;
  color: var(--color-white);
  background-color: var(--color-primary);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: opacity var(--transition-duration-default) var(--transition-easing-default);
}
@media screen and (min-width: 768px) {
  .bl_form_submit {
    width: 270px;
  }
}
@media (hover: hover) {
  .bl_form_submit:hover {
    opacity: 0.7;
    will-change: opacity;
  }
}
.bl_form_reset {
  width: 130px;
  min-height: 40px;
  padding: 5px;
  background-color: var(--color-border);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: opacity var(--transition-duration-default) var(--transition-easing-default);
}
@media screen and (min-width: 768px) {
  .bl_form_reset {
    width: 200px;
  }
}
@media (hover: hover) {
  .bl_form_reset:hover {
    opacity: 0.7;
    will-change: opacity;
  }
}

.bl_formTable {
  width: 100%;
}
.bl_formTable tr:first-child th {
  margin-top: 0;
}
.bl_formTable th, .bl_formTable td {
  display: block;
  font-size: 1.6rem;
  line-height: 1.625;
}
@media screen and (min-width: 768px) {
  .bl_formTable th, .bl_formTable td {
    display: table-cell;
  }
}
.bl_formTable th {
  vertical-align: top;
  margin: 20px 0 10px;
  text-align: left;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .bl_formTable th {
    width: 30%;
    margin: 0;
    padding: 15px 15px 15px 0;
  }
}
@media screen and (min-width: 768px) {
  .bl_formTable td {
    padding: 15px 0;
  }
}
.bl_formTable_ttl {
  display: flex;
  align-items: center;
  gap: 0 5px;
}
.bl_formTable_error {
  display: block;
  margin-top: 3px;
  color: var(--color-accent);
  font-size: 1.4rem;
}
.bl_formTable_required {
  color: var(--color-white);
  background-color: var(--color-accent);
  border-radius: 3px;
  padding: 5px 8px 6px;
  font-size: 1.3rem;
  line-height: 1;
}

.bl_mediaList > li {
  padding: 20px 0;
  border-bottom: 1px solid #bfbfbf;
}
.bl_mediaList > li:first-child {
  padding-top: 0;
}

.bl_media_inner {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}
@media screen and (min-width: 768px) {
  .bl_media_inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 0 30px;
  }
}
@media screen and (min-width: 768px) {
  .bl_media_imgWrap {
    width: 31.5068493%;
  }
}
.bl_media_imgWrap img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .bl_media_body {
    flex: 1;
  }
}
.bl_media_body > *:not(:first-child) {
  margin-top: 12px;
}
.bl_media_ttl {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.6;
}
.bl_media_txt {
  font-size: 1.6rem;
  line-height: 1.6875;
}
.bl_media_txt + .bl_media_txt {
  margin-top: 0.5em;
}
@media screen and (min-width: 768px) {
  .bl_media__rev .bl_media_inner {
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 768px) {
  .bl_media__ver02 .bl_media_imgWrap {
    width: 13.3333333%;
  }
}

.bl_box {
  padding: 20px;
  background-color: var(--color-secondary);
}

.bl_list > li {
  position: relative;
}
.bl_list > li:not(:first-child) {
  margin-top: 15px;
}
.bl_list__disc > li {
  padding-left: 0.875em;
}
.bl_list__disc > li::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 0.4em;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #848484;
}
.bl_list__num {
  counter-reset: num;
}
.bl_list__num > li {
  padding-left: 1.125em;
}
.bl_list__num > li::before {
  counter-increment: num;
  content: counter(num) ".";
  position: absolute;
  top: 0;
  left: 0;
}

.el_heading {
  position: relative;
  z-index: 1;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  padding-bottom: 20px;
  margin-bottom: 48px;
}
@media screen and (min-width: 768px) {
  .el_heading {
    padding-bottom: 22px;
    margin-bottom: 48px;
  }
}
.el_heading::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  z-index: -1;
  width: 100%;
  height: 6px;
  background-image: linear-gradient(to right, var(--color-accent) 6px, transparent 6px);
  background-size: 12px 6px;
}
.el_heading_en {
  position: relative;
  font-family: var(--font-family-micro5);
  font-size: 2.3rem;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  padding-left: 18px;
  margin: -7px 0 0;
}
@media screen and (min-width: 768px) {
  .el_heading_en {
    font-size: 2.9rem;
    padding-left: 16px;
    margin: -17px 0 11px;
  }
}
.el_heading_en::before {
  position: absolute;
  left: 0;
  top: 0.347826087em;
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  background-color: var(--color-accent);
}
@media screen and (min-width: 768px) {
  .el_heading_en::before {
    top: 0.3448275862em;
  }
}
.el_heading_ja {
  font-size: 3.4rem;
  font-weight: 700;
  font-feature-settings: "palt";
  line-height: 1.4;
  margin-right: -6px;
}
@media screen and (min-width: 768px) {
  .el_heading_ja {
    font-size: 4.6rem;
    font-feature-settings: initial;
    line-height: 1.2;
  }
}
.el_heading_imgWrap {
  padding-block: 27px 19px;
}
@media screen and (min-width: 768px) {
  .el_heading_imgWrap {
    padding-block: 12px 14px;
  }
}
.el_heading_series {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .el_heading_series {
    font-size: 3.6rem;
    padding-block: 6px 2px;
  }
}
.el_heading_platform {
  margin-block: 29px 24px;
}

.el_lv2Heading,
.el_lv3Heading {
  position: relative;
  z-index: 1;
}
.el_lv2Heading__dot::before,
.el_lv3Heading__dot::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  z-index: -1;
  width: 100%;
  height: 4px;
  background-image: linear-gradient(to right, var(--color-accent) 4px, transparent 6px);
  background-size: 10px 4px;
}

.el_lv3Heading,
.el_lv4Heading,
.el_lv5Heading,
.el_lv6Heading {
  position: relative;
  font-weight: 700;
}
.el_lv3Heading__marker::before,
.el_lv4Heading__marker::before,
.el_lv5Heading__marker::before,
.el_lv6Heading__marker::before {
  position: absolute;
  left: 0;
  content: "";
  display: block;
  aspect-ratio: 1/1;
  background-color: var(--color-accent);
}
.el_lv3Heading__bgGray,
.el_lv4Heading__bgGray,
.el_lv5Heading__bgGray,
.el_lv6Heading__bgGray {
  background-color: var(--color-secondary);
  border-radius: 6px;
}
.el_lv3Heading__border,
.el_lv4Heading__border,
.el_lv5Heading__border,
.el_lv6Heading__border {
  border: 1px solid #464646;
  border-radius: 6px;
}

.el_lv1Heading {
  font-size: 2.6rem;
  line-height: 1.4;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .el_lv1Heading {
    font-size: 3.6rem;
    margin-bottom: 28px;
  }
}

.el_lv2Heading {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
  margin-block: 39px 34px;
}
@media screen and (min-width: 768px) {
  .el_lv2Heading {
    font-size: 2.6rem;
    margin-block: 54px 34px;
  }
}
.el_lv2Heading__dot {
  padding-bottom: 17px;
}

.el_lv3Heading {
  font-size: 2.2rem;
  line-height: 1.4;
  margin-block: 37px 34px;
}
@media screen and (min-width: 768px) {
  .el_lv3Heading {
    font-size: 2.4rem;
    margin-block: 55px 34px;
  }
}
.el_lv3Heading__dot {
  padding-bottom: 17px;
}
.el_lv3Heading__marker {
  padding-left: 22px;
}
@media screen and (min-width: 768px) {
  .el_lv3Heading__marker {
    padding-left: 26px;
  }
}
.el_lv3Heading__marker::before {
  top: 10px;
  width: 14px;
}
@media screen and (min-width: 768px) {
  .el_lv3Heading__marker::before {
    top: 11px;
  }
}
.el_lv3Heading__bgGray {
  padding: 7px 20px 10px;
}
.el_lv3Heading__border {
  padding: 6px 27px 9px;
}

.el_lv4Heading {
  font-size: 1.8rem;
  line-height: 1.4;
  margin-block: 34px 34px;
}
@media screen and (min-width: 768px) {
  .el_lv4Heading {
    font-size: 2rem;
  }
}
.el_lv4Heading__marker {
  padding-left: 20px;
}
.el_lv4Heading__marker::before {
  top: 7px;
  width: 12px;
}
@media screen and (min-width: 768px) {
  .el_lv4Heading__marker::before {
    top: 8px;
  }
}
.el_lv4Heading__bgGray {
  padding: 10px 20px;
}
.el_lv4Heading__border {
  padding: 7px 24px;
}

.el_lv5Heading {
  font-size: 1.6rem;
  line-height: 1.4;
  margin-block: 22px 22px;
}
@media screen and (min-width: 768px) {
  .el_lv5Heading {
    font-size: 1.8rem;
  }
}
.el_lv5Heading__marker {
  padding-left: 18px;
}
.el_lv5Heading__marker::before {
  top: 7px;
  width: 10px;
}
@media screen and (min-width: 768px) {
  .el_lv5Heading__marker::before {
    top: 8px;
  }
}
.el_lv5Heading__bgGray {
  padding: 9px 18px;
}
@media screen and (min-width: 768px) {
  .el_lv5Heading__bgGray {
    padding: 8px 18px;
  }
}
.el_lv5Heading__border {
  padding: 8px 21px;
}
@media screen and (min-width: 768px) {
  .el_lv5Heading__border {
    padding: 7px 21px;
  }
}

.el_lv6Heading {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-block: 22px 22px;
}
@media screen and (min-width: 768px) {
  .el_lv6Heading {
    font-size: 1.6rem;
  }
}
.el_lv6Heading__marker {
  padding-left: 16px;
}
.el_lv6Heading__marker::before {
  top: 6px;
  width: 8px;
}
@media screen and (min-width: 768px) {
  .el_lv6Heading__marker::before {
    top: 9px;
  }
}
.el_lv6Heading__bgGray {
  padding: 8px 16px;
}
@media screen and (min-width: 768px) {
  .el_lv6Heading__bgGray {
    padding: 5px 16px;
  }
}
.el_lv6Heading__border {
  padding: 8px 18px;
}
@media screen and (min-width: 768px) {
  .el_lv6Heading__border {
    padding: 6px 18px;
  }
}

.el_img {
  margin-inline: auto;
}
.el_img img {
  margin-inline: auto;
}
.el_img__full img {
  width: 100%;
}

.el_btn {
  position: relative;
  z-index: 1;
  min-width: 150px;
  min-height: 50px;
  border-radius: 5px;
  padding: 10px 30px 10px 20px;
  border: 1px solid var(--color-primary);
  background-color: var(--color-primary);
  color: var(--color-white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--transition-duration-default) var(--transition-easing-default);
  font-size: 1.6rem;
  line-height: 1.25;
}
.el_btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--color-white);
  border-right: 2px solid var(--color-white);
}
@media (hover: hover) {
  .el_btn:hover {
    will-change: opacity;
    opacity: 0.7;
  }
}
.el_btn_wrap {
  margin-top: 30px;
}
.el_btn__simple {
  padding-right: 20px;
}
.el_btn__simple::after {
  content: none;
}
.el_btn__befArrow {
  padding: 10px 20px 10px 30px;
}
.el_btn__befArrow::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-bottom: 2px solid var(--color-white);
  border-left: 2px solid var(--color-white);
}
.el_btn__befArrow::after {
  content: none;
}

.el_btn02 {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 80px;
  border-radius: 5px;
  padding: 10px 50px 10px 20px;
  background-color: var(--color-black);
  color: var(--color-white);
  text-decoration: none;
  display: flex;
  align-items: center;
  font-weight: 700;
  transition: opacity var(--transition-duration-default) var(--transition-easing-default);
  font-size: 1.9rem;
  line-height: 1.2105263158;
}
@media (hover: hover) {
  .el_btn02:hover {
    will-change: opacity;
    opacity: 0.7;
  }
}
.el_btn02::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 30px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid var(--color-white);
}
.el_btn02::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 27px;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--color-white);
  border-right: 2px solid var(--color-white);
}
.el_btn02__orange {
  background-color: #E87E4A;
}
.el_btn02__blue {
  background-color: #4D70B4;
}

.el_txt {
  font-size: 1.6rem;
  line-height: 1.625;
}
.el_txt__sm {
  font-size: 1.4rem;
}

.el_icon {
  display: inline-block;
  color: #fff;
  background-color: var(--color-accent);
  border-radius: 3px;
  padding: 5px 8px 6px;
  margin-right: 5px;
  font-size: 1.3rem;
  line-height: 1;
}

.el_input {
  width: 100%;
  height: 45px;
  background-color: var(--color-secondary);
  padding: 10px;
  line-height: 1;
}

.el_select {
  width: 100%;
  height: 45px;
  padding: 10px;
  background-color: var(--color-secondary);
  line-height: 1;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.el_select_wrap {
  position: relative;
  width: 100%;
}
.el_select_wrap::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 16px;
  width: 8px;
  height: 8px;
  transform: translateY(-50%) rotate(45deg);
  border-bottom: 2px solid var(--color-black);
  border-right: 2px solid var(--color-black);
  pointer-events: none;
}

.el_textarea {
  width: 100%;
  height: 200px;
  background-color: var(--color-secondary);
  padding: 10px;
  line-height: 1;
}

.el_checkbox {
  position: relative;
  width: 20px;
  aspect-ratio: 1;
  border: 2px solid var(--color-black);
  cursor: pointer;
}
.el_checkbox::before {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%) rotate(-45deg);
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--color-black);
  border-bottom: 2px solid var(--color-black);
  opacity: 0;
  visibility: hidden;
}
.el_checkbox_label {
  display: flex;
  align-items: flex-start;
  gap: 0 5px;
}
.el_checkbox_label > span {
  flex: 1;
}
.el_checkbox_label a {
  color: var(--color-primary);
}
.el_checkbox_label .el_checkbox {
  margin-top: 5px;
}
.el_checkbox_label > .el_checkbox:checked::before {
  opacity: 1;
  visibility: visible;
}

.el_lead {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 2.2rem;
  line-height: 1.5909090909;
}
.el_lead::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #bfbfbf;
}
.el_lead::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #006dd9;
}

.el_map {
  margin-inline: auto;
}
.el_map iframe {
  margin-inline: auto;
}
.el_map__full iframe {
  width: 100%;
}

.js_fadeUp {
  opacity: 0;
  transform: translate3d(0, 100px, 0);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.js_fadeUp.is_fadeUp {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.un_detail {
  word-wrap: break-word;
  font-size: 1.6rem;
  line-height: 1.6875;
}
.un_detail > *:first-child {
  margin-top: 0 !important;
}
.un_detail > *:last-child {
  margin-bottom: 0 !important;
}
.un_detail > * {
  margin-bottom: 30px;
}
.un_detail + .bl_listCardUnit {
  margin-top: 60px;
}
.un_detail h2, .un_detail h3, .un_detail h4, .un_detail h5, .un_detail h6 {
  position: relative;
  margin: 60px 0 20px 0;
  color: #661900;
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .un_detail h2, .un_detail h3, .un_detail h4, .un_detail h5, .un_detail h6 {
    margin-top: 80px;
  }
}
.un_detail h2 {
  padding-left: 0.7em;
  font-size: 2.6rem;
}
@media screen and (min-width: 768px) {
  .un_detail h2 {
    font-size: 3.4rem;
  }
}
.un_detail h2::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 0.409em;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 0.114em solid #ff8000;
}
.un_detail h2 + h3, .un_detail h2 + p {
  margin-top: 20px;
}
.un_detail h3 {
  padding-left: 0.6em;
  font-size: 2.4rem;
}
@media screen and (min-width: 768px) {
  .un_detail h3 {
    font-size: 3rem;
  }
}
.un_detail h3::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.35em;
  left: 0;
  width: 4px;
  height: 0.933em;
  background-color: #ff8000;
}
.un_detail h3 + h4, .un_detail h3 + p {
  margin-top: 20px;
}
.un_detail h4 {
  padding-left: 0.65em;
  font-size: 2.2rem;
}
@media screen and (min-width: 768px) {
  .un_detail h4 {
    font-size: 2.6rem;
  }
}
.un_detail h4::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 0.308em;
  height: 0.5em;
  clip-path: polygon(100% 50%, 0 0, 0 100%);
  background-color: #ff8000;
}
.un_detail h4 + h5, .un_detail h4 + p {
  margin-top: 20px;
}
.un_detail h5 {
  padding-left: 0.75em;
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .un_detail h5 {
    font-size: 2.2rem;
  }
}
.un_detail h5::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 0.455em;
  height: 0.545em;
  background: url("/image/icon/icon_heading_deco01.svg") no-repeat center;
  background-size: 0.455em 0.545em;
}
.un_detail h5 + h6, .un_detail h5 + p {
  margin-top: 20px;
}
.un_detail h6 {
  font-size: 1.8rem;
}
@media screen and (min-width: 768px) {
  .un_detail h6 {
    font-size: 2rem;
  }
}
.un_detail h6 + p {
  margin-top: 20px;
}
.un_detail > p {
  margin: 20px 0;
}
.un_detail a {
  position: relative;
  color: var(--color-primary);
  transition: opacity var(--transition-duration-default) var(--transition-easing-default);
}
@media (hover: hover) {
  .un_detail a:hover {
    opacity: 0.7;
    will-change: opacity;
  }
}
.un_detail a[target=_blank]::after {
  content: "";
  display: inline-block;
  width: 1.063em;
  height: 1.063em;
  margin-left: 5px;
  background: url("/image/icon/icon_blank.svg") no-repeat center;
  background-size: 1.063em 1.063em;
}
.un_detail a[href$=".pdf"]::after, .un_detail a[href$=".doc"]::after, .un_detail a[href$=".docx"]::after, .un_detail a[href$=".xlsx"]::after {
  content: "";
  display: inline-block;
  width: 0.875em;
  height: 1.125em;
  margin-left: 5px;
  transform: translateY(2px);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 0.875em 1.125em;
}
.un_detail a[href$=".pdf"]::after {
  background-image: url("/image/icon/icon_pdf.svg");
}
.un_detail a[href$=".doc"]::after, .un_detail a[href$=".docx"]::after {
  background-image: url("/image/icon/icon_word.svg");
}
.un_detail a[href$=".xlsx"]::after {
  background-image: url("/image/icon/icon_excel.svg");
}
.un_detail strong {
  font-weight: 700;
}
.un_detail em {
  font-style: normal;
  text-decoration: underline;
}
.un_detail ul li, .un_detail ol li {
  position: relative;
}
.un_detail ul li:not(:first-child), .un_detail ol li:not(:first-child) {
  margin-top: 6px;
}
.un_detail ul li ul, .un_detail ul li ol, .un_detail ol li ul, .un_detail ol li ol {
  margin-top: 6px;
}
.un_detail ul li {
  padding-left: 0.875em;
}
.un_detail ul li::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 0.4em;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #848484;
}
.un_detail ol {
  counter-reset: num;
}
.un_detail ol li {
  padding-left: 1.125em;
}
.un_detail ol li::before {
  counter-increment: num;
  content: counter(num) ".";
  position: absolute;
  top: 0;
  left: 0;
}
.un_detail ol li ol li {
  padding-left: 1.5em;
}
.un_detail ol li ol li::before {
  content: counter(num, katakana) ".";
}
.un_detail table {
  table-layout: fixed;
  width: 100%;
  border: 1px solid #ccc;
}
.un_detail table thead tr:last-child th:last-child, .un_detail table thead tr:last-child td:last-child,
.un_detail table tbody tr:last-child th:last-child,
.un_detail table tbody tr:last-child td:last-child {
  border-right: none;
}
.un_detail table tbody tr > *:last-child {
  border-right: none;
}
.un_detail table tbody tr:last-child th, .un_detail table tbody tr:last-child td {
  border-bottom: none;
}
.un_detail table th, .un_detail table td {
  padding: 10px 20px;
}
.un_detail table th {
  width: 30%;
  background-color: var(--color-secondary);
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  font-weight: 600;
}
.un_detail table td {
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.un_detail ul.alpha_contents > li {
  padding: 0;
}
.un_detail ul.alpha_contents > li::before {
  content: none;
}
.un_detail .bl_mediaList > li {
  padding-left: 0;
}
.un_detail .bl_mediaList > li::before {
  content: none;
}
.un_detail .el_btn {
  color: var(--color-white);
}
.un_detail .el_btn[target=_blank]::after {
  top: 50%;
  right: 15px;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--color-white);
  border-right: 2px solid var(--color-white);
  background-image: none;
}
.un_detail .el_btn__simple[href$=".pdf"]::after, .un_detail .el_btn__simple[href$=".doc"]::after, .un_detail .el_btn__simple[href$=".docx"]::after, .un_detail .el_btn__simple[href$=".xlsx"]::after {
  content: none;
}
.un_detail .el_btn02 {
  color: var(--color-white);
}
.un_detail .bl_btnList li,
.un_detail .bl_btnList02 li {
  padding-left: 0;
}
.un_detail .bl_btnList li::before,
.un_detail .bl_btnList02 li::before {
  content: none;
}
.un_detail .bl_btnList li:not(:first-child),
.un_detail .bl_btnList02 li:not(:first-child) {
  margin-top: 0;
}

.un_homeMv_bg {
  width: 100%;
  max-height: 820px;
  aspect-ratio: 375/450;
}
@media screen and (min-width: 768px) {
  .un_homeMv_bg {
    aspect-ratio: 1920/820;
  }
}
.un_homeMv_bg picture {
  width: 100%;
  height: 100%;
}
.un_homeMv_bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.un_homeCardUnit {
  width: calc(100% - 20px);
  max-width: 1200px;
  margin: -90px auto 0;
  display: flex;
  flex-direction: column;
  gap: 24px 0;
}
@media screen and (min-width: 992px) {
  .un_homeCardUnit {
    margin-top: -190px;
  }
}
@media screen and (min-width: 768px) {
  .un_homeCardUnit__2col {
    flex-direction: row;
    gap: 0 40px;
  }
}
@media screen and (min-width: 768px) {
  .un_homeCardUnit__2col .un_homeCard {
    width: calc((100% - 40px) / 2);
  }
}

.un_homeCard_inner {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: opacity var(--transition-duration-default) var(--transition-easing-default);
}
@media screen and (min-width: 768px) {
  .un_homeCard_inner {
    height: 100%;
  }
}
@media (hover: hover) {
  .un_homeCard_inner:hover {
    opacity: 0.9;
    will-change: opacity;
  }
}
.un_homeCard_cont {
  padding: 10px 10px 20px;
  border-radius: 5px;
  border: 2px solid var(--color-border);
  background-color: var(--color-white);
}
@media screen and (min-width: 992px) {
  .un_homeCard_cont {
    padding: 15px 15px 25px;
  }
}
.un_homeCard_head {
  width: 100%;
  min-height: 50px;
  padding: 7px;
  border-radius: 5px;
  color: var(--color-white);
  text-align: center;
  background-color: var(--color-black);
  font-weight: 600;
  display: grid;
  place-items: center;
  font-size: 2.6rem;
  line-height: 1.4230769231;
}
@media screen and (min-width: 992px) {
  .un_homeCard_head {
    min-height: 80px;
    font-size: 3.6rem;
    line-height: 1.4166666667;
  }
}
.un_homeCard_body {
  margin-top: 9px;
}
@media screen and (min-width: 992px) {
  .un_homeCard_body {
    margin-top: 17px;
  }
}
.un_homeCard_txt {
  color: var(--color-black);
  font-size: 1.2rem;
  line-height: 1.6666666667;
}
@media screen and (min-width: 992px) {
  .un_homeCard_txt {
    font-size: 1.8rem;
    line-height: 1.5555555556;
  }
}
.un_homeCard_btn {
  width: calc(100% - 20px);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 10px;
  padding: 10px;
  border-radius: 0 0 5px 5px;
  border: 2px solid var(--color-black);
  border-top: none;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.5;
}
@media screen and (min-width: 992px) {
  .un_homeCard_btn {
    font-size: 2rem;
    line-height: 1.45;
  }
}
.un_homeCard_btn::after {
  content: "";
  display: block;
  width: 18px;
  aspect-ratio: 1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 18px 18px;
  flex: 0 0 18px;
}
@media screen and (min-width: 768px) {
  .un_homeCard_btn::after {
    width: 24px;
    background-size: 24px 24px;
    flex: 0 0 24px;
  }
}
.un_homeCard__green .un_homeCard_head {
  background-color: #75bb60;
}
.un_homeCard__green .un_homeCard_btn {
  color: #75bb60;
  border-color: #75bb60;
  background-color: #f5faf4;
}
.un_homeCard__green .un_homeCard_btn::after {
  background-image: url("/image/icon/icon_arrow_green.svg");
}
.un_homeCard__blue .un_homeCard_head {
  background-color: #006dd9;
}
.un_homeCard__blue .un_homeCard_btn {
  color: #006dd9;
  border-color: #006dd9;
  background-color: #edf5fd;
}
.un_homeCard__blue .un_homeCard_btn::after {
  background-image: url("/image/icon/icon_arrow_blue.svg");
}

.un_homeNews_heading {
  position: relative;
  margin-bottom: 24px;
  padding-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 0 14px;
}
@media screen and (min-width: 768px) {
  .un_homeNews_heading {
    margin-bottom: 14px;
  }
}
.un_homeNews_heading::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-border);
}
.un_homeNews_heading::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 280px;
  height: 2px;
  background: url("/image/news_heading_line.svg") no-repeat center;
  background-size: 280px 2px;
}
.un_homeNews_heading .ja {
  font-weight: 600;
  font-size: 2.2rem;
  line-height: 1.4090909091;
}
@media screen and (min-width: 768px) {
  .un_homeNews_heading .ja {
    font-size: 3rem;
  }
}
.un_homeNews_heading .en {
  color: #75bb60;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.6666666667;
}
@media screen and (min-width: 768px) {
  .un_homeNews_heading .en {
    font-size: 1.8rem;
  }
}

.un_homeCont {
  padding: 50px 0;
}
@media screen and (min-width: 768px) {
  .un_homeCont {
    padding: 80px 0 110px;
  }
}

.un_homeMenuList > li:not(:first-child) {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .un_homeMenuList > li:not(:first-child) {
    margin-top: 12px;
  }
}

.un_homeMenuItem {
  display: flex;
  align-items: center;
  gap: 0 20px;
  padding: 15px;
  text-decoration: none;
  border-radius: 5px;
  border: 1px solid #deddd9;
  color: var(--color-black);
  transition: opacity var(--transition-duration-default) var(--transition-easing-default);
}
@media (hover: hover) {
  .un_homeMenuItem:hover {
    opacity: 0.7;
    will-change: opacity;
  }
}
.un_homeMenuItem_imgWrap {
  width: 84px;
}
@media screen and (min-width: 768px) {
  .un_homeMenuItem_imgWrap {
    width: 24.4565217%;
  }
}
.un_homeMenuItem_imgWrap img {
  width: 100%;
}
.un_homeMenuItem_body {
  flex: 1;
}
.un_homeMenuItem_ttl {
  font-weight: 400;
  font-size: 1.9rem;
  line-height: 1.5263157895;
}
@media screen and (min-width: 992px) {
  .un_homeMenuItem_ttl {
    font-size: 2rem;
  }
}
.un_homeMenuItem_ttl .lg {
  font-size: 2.8rem;
  font-weight: 500;
}
@media screen and (min-width: 992px) {
  .un_homeMenuItem_ttl .lg {
    font-size: 3rem;
  }
}
.un_homeMenuItem__yellow {
  background-color: #fffbea;
}
.un_homeMenuItem__blue {
  background-color: #eaf5f8;
}
.un_homeMenuItem__green {
  background-color: #eff8f4;
}

.un_homeLink {
  padding: 37px 0;
  background-color: var(--color-secondary);
}
@media screen and (min-width: 768px) {
  .un_homeLink {
    padding: 37px 0 64px;
  }
}
.un_homeLink_inner {
  width: calc(100% - 64px);
  max-width: 970px;
}
.un_homeLink_heading {
  margin-bottom: 16px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .un_homeLink_heading {
    margin-bottom: 33px;
  }
}
.un_homeLink_heading .ja {
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1.1111111111;
}
@media screen and (min-width: 768px) {
  .un_homeLink_heading .ja {
    font-size: 3rem;
  }
}
.un_homeLink_heading .en {
  margin-top: 11px;
  color: var(--color-primary);
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.5384615385;
}
@media screen and (min-width: 768px) {
  .un_homeLink_heading .en {
    margin-top: 5px;
    font-size: 1.8rem;
  }
}

.un_sitemap > *:first-child {
  margin-top: 0 !important;
}
.un_sitemap a {
  transition: color var(--transition-duration-default) var(--transition-easing-default);
}
@media (hover: hover) {
  .un_sitemap a:hover {
    color: var(--color-primary);
    will-change: color;
  }
}
.un_sitemap_lv1 {
  font-weight: 400;
  margin: 40px 0 15px;
}
@media screen and (min-width: 768px) {
  .un_sitemap_lv1 {
    margin-top: 60px;
  }
}
.un_sitemap_lv1 > a {
  position: relative;
  display: block;
  background: var(--color-border);
  text-decoration: none;
  color: var(--color-black);
  padding: 12px 15px;
  border-radius: 3px;
  font-size: 1.8rem;
  line-height: 1.6666666667;
}
@media screen and (min-width: 768px) {
  .un_sitemap_lv1 > a {
    font-size: 2.5rem;
  }
}
.un_sitemap_lv2 {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
}
@media screen and (min-width: 768px) {
  .un_sitemap_lv2 {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
}
.un_sitemap_lv2 > li {
  font-size: 1.6rem;
  line-height: 1.625;
}
@media screen and (min-width: 768px) {
  .un_sitemap_lv2 > li {
    width: calc((100% - 20px) / 2);
  }
}
.un_sitemap_lv2 > li > a {
  position: relative;
  display: block;
  text-decoration: none;
  padding: 12px 25px 12px 12px;
  border-radius: 3px;
  border: 1px solid #bfbfbf;
  color: var(--color-black);
  background-color: #fafafa;
}
.un_sitemap_lv2 > li > a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 9px;
  transform: translateY(-50%);
  width: 8px;
  height: 10px;
  clip-path: polygon(100% 50%, 0 0, 0 100%);
  background-color: var(--color-primary);
}
.un_sitemap_lv3, .un_sitemap_lv4, .un_sitemap_lv5 {
  margin: 10px 0;
  padding-left: 1em;
}
.un_sitemap_lv3 > li > a, .un_sitemap_lv4 > li > a, .un_sitemap_lv5 > li > a {
  position: relative;
  display: inline-block;
  padding-left: 15px;
  color: var(--color-black);
  transition: color var(--transition-duration-default) var(--transition-easing-default);
}
.un_sitemap_lv3 > li > a::before, .un_sitemap_lv4 > li > a::before, .un_sitemap_lv5 > li > a::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #848484;
  transition: background var(--transition-duration-default) var(--transition-easing-default);
}
@media (hover: hover) {
  .un_sitemap_lv3 > li > a:hover, .un_sitemap_lv4 > li > a:hover, .un_sitemap_lv5 > li > a:hover {
    color: var(--color-primary);
  }
  .un_sitemap_lv3 > li > a:hover::before, .un_sitemap_lv4 > li > a:hover::before, .un_sitemap_lv5 > li > a:hover::before {
    background-color: var(--color-primary);
  }
}
.un_sitemap_lv3 li + li {
  margin-top: 5px;
}
.un_sitemap_lv4, .un_sitemap_lv5 {
  margin-left: 24px;
}

.un_alert {
  position: absolute;
  top: 57px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
}
@media screen and (min-width: 768px) {
  .un_alert {
    top: 120px;
  }
}
.un_alert_inner {
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .un_alert_inner {
    position: relative;
    display: flex;
  }
}
.un_alert_head {
  padding: 5px 10px;
  background-color: var(--color-primary);
  display: flex;
  align-items: center;
  border-radius: 7px 7px 0 0;
}
@media screen and (min-width: 768px) {
  .un_alert_head {
    width: 16.6666667%;
    padding: 5px 15px;
    border-radius: 7px 0 0 7px;
  }
}
.un_alert_ttl {
  padding-left: 22px;
  color: var(--color-white);
  font-weight: 700;
  position: relative;
  font-size: 1.5rem;
  line-height: 1;
}
@media screen and (min-width: 992px) {
  .un_alert_ttl {
    padding-left: 30px;
    font-size: 1.6rem;
  }
}
.un_alert_ttl::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 17px;
  height: 17px;
  background: url("/image/icon/icon_important_notice.svg") no-repeat center;
  background-size: 17px 17px;
}
@media screen and (min-width: 992px) {
  .un_alert_ttl::before {
    width: 20px;
    height: 20px;
    background-size: 20px 20px;
  }
}
.un_alert_body {
  padding: 0 15px;
  background-color: var(--color-white);
  border-radius: 0 0 7px 7px;
  border: 3px solid #F7F5F1;
}
@media screen and (min-width: 768px) {
  .un_alert_body {
    padding-right: 120px;
    border-radius: 0 7px 7px 0;
    border-right: none;
    flex: 1;
  }
}
.un_alert_link {
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .un_alert_link {
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 100%;
  }
}
.un_alert_link a {
  position: relative;
  display: block;
  padding: 5px 20px 5px 10px;
  color: var(--color-black);
  text-decoration: none;
  text-align: center;
  border-radius: 3px;
  background-color: var(--color-white);
  transition: background var(--transition-duration-default) var(--transition-easing-default);
  font-weight: 600;
  font-size: 1.3rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .un_alert_link a {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    padding: 8px 20px 8px 10px;
    color: var(--color-primary);
    background-color: var(--color-secondary);
    border-radius: 0 7px 7px 0;
    font-size: 1.6rem;
  }
}
.un_alert_link a::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  width: 7px;
  height: 9px;
  background-color: #BF1413;
  clip-path: polygon(100% 50%, 0 0, 0 100%);
}
@media screen and (min-width: 768px) {
  .un_alert_link a::before {
    right: 8px;
  }
}
@media (hover: hover) {
  .un_alert_link a:hover {
    background-color: var(--color-secondary);
    will-change: background-color;
  }
}
.un_alert_list > li:not(:first-child) {
  border-top: 1px dotted #BFBFBF;
}
.un_alert_list > li > a {
  display: block;
  text-decoration: none;
  padding: 10px 0;
  color: var(--color-black);
  transition: background var(--transition-duration-default) var(--transition-easing-default);
}
@media screen and (min-width: 768px) {
  .un_alert_list > li > a {
    display: flex;
    gap: 0 10px;
    width: 100%;
  }
}
@media (hover: hover) {
  .un_alert_list > li > a:hover {
    background-color: var(--color-secondary);
    will-change: background-color;
  }
}
.un_alert_list > li > a .date {
  font-family: var(--font-family-base);
  font-size: 1.4rem;
  line-height: 1.5714285714;
}
@media screen and (min-width: 768px) {
  .un_alert_list > li > a .date {
    min-width: 110px;
    padding-top: 4px;
  }
}
.un_alert_list > li > a .ttl {
  color: var(--color-primary);
  text-decoration: underline;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.625;
}
@media screen and (min-width: 768px) {
  .un_alert_list > li > a .ttl {
    flex: 1;
  }
}

@media screen and (min-width: 768px) {
  .hp_spOnly {
    display: none !important;
  }
}

.hp_pcOnly {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .hp_pcOnly {
    display: block !important;
  }
}

.hp_clrRed {
  color: var(--color-accent) !important;
}

.hp_clrBlue {
  color: #006dd9 !important;
}

.en_US .el_note::before,
.en_US .el_note02::before {
  content: "*";
}/*# sourceMappingURL=common.css.map */