@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: #00267f;
  --color-secondary: #eef7fb;
  --color-accent: #fa7500;
  --color-text: #000;
  --color-black: #000;
  --color-white: #fff;
  --color-red: #e60011;
  --font-family-base: "M PLUS 1p", 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: 2;
}

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

.ly_main {
  margin-top: 58px;
}
@media screen and (min-width: 992px) {
  .ly_main {
    margin-top: 100px;
  }
}

.ly_centered {
  width: calc(100% - 40px);
  max-width: 1200px;
  margin-inline: auto;
}
@media screen and (min-width: 992px) {
  .ly_centered {
    width: calc(100% - 80px);
  }
}

.ly_header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  height: 58px;
  display: grid;
  place-items: center;
  background-color: var(--color-white);
}
@media screen and (min-width: 992px) {
  .ly_header {
    height: 100px;
  }
}
.ly_header a {
  text-decoration: none;
}
.ly_header_inner {
  width: calc(100% - 40px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 0 20px;
}
@media screen and (min-width: 992px) {
  .ly_header_inner {
    position: relative;
    height: 100%;
  }
}
.ly_header_sitelogo {
  width: 167px;
}
@media screen and (min-width: 992px) {
  .ly_header_sitelogo {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    padding: 15px 20px;
    background-color: var(--color-white);
    border-radius: 0 0 50px 50px;
  }
}
@media screen and (min-width: 1200px) {
  .ly_header_sitelogo {
    top: 0;
    transform: translateY(0);
    width: 390px;
    border-radius: 0 0 50px 50px;
  }
}
.ly_header_sitelogo > a {
  display: block;
  transition: opacity var(--transition-duration-default) var(--transition-easing-default);
}
@media (hover: hover) {
  .ly_header_sitelogo > a:hover {
    will-change: opacity;
    opacity: 0.6;
  }
}
.ly_header_sitelogo > a > img {
  display: block;
  width: 100%;
}
.ly_header_contact > a {
  min-width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 7px;
  padding: 5px 10px;
  color: var(--color-primary);
  border: 1px solid #0085bf;
  border-radius: 5px;
  font-weight: 700;
  transition: opacity var(--transition-duration-default) var(--transition-easing-default);
  font-size: 1.6rem;
  line-height: 1.1875;
}
.ly_header_contact > a::before {
  content: "";
  display: block;
  width: 14px;
  height: 11px;
  background: url("/image/icon/icon_mail.svg") no-repeat center;
  background-size: 14px 11px;
  flex: 0 0 14px;
}
@media (hover: hover) {
  .ly_header_contact > a:hover {
    will-change: opacity;
    opacity: 0.6;
  }
}

.ly_headerRight {
  margin-left: auto;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 992px) {
  .ly_headerRight {
    gap: 12px 0;
  }
}
.ly_headerRight_top, .ly_headerRight_bottom {
  display: none;
}
@media screen and (min-width: 992px) {
  .ly_headerRight_top, .ly_headerRight_bottom {
    display: block;
  }
}
@media screen and (min-width: 992px) {
  .ly_headerRight_top {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0 26px;
  }
}

.ly_headerOtherLinks {
  display: flex;
  align-items: center;
  gap: 0 26px;
}
.ly_headerOtherLinks > li > a {
  position: relative;
  display: block;
  color: var(--color-text);
  font-size: 1.6rem;
  line-height: 1.3125;
}
.ly_headerOtherLinks > li > a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #0085bf;
  transition: width var(--transition-duration-default) var(--transition-easing-default);
}
@media (hover: hover) {
  .ly_headerOtherLinks > li > a:hover::after {
    will-change: width;
    width: 100%;
  }
}

.ly_headerNav_list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0 26px;
}
.ly_headerNav_list > li > a {
  position: relative;
  display: block;
  color: var(--color-text);
  font-size: 2rem;
  line-height: 1.4;
  letter-spacing: 0.01em;
}
.ly_headerNav_list > li > a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #0085bf;
  transition: width var(--transition-duration-default) var(--transition-easing-default);
}
@media (hover: hover) {
  .ly_headerNav_list > li > a:hover::after {
    will-change: width;
    width: 100%;
  }
}
.ly_headerNav_list > li > a.is_current::after {
  width: 100%;
  transition: none;
}

.ly_footer {
  background-color: #fbf9f6;
}
.ly_footer_wrap {
  position: relative;
  margin-top: 132px;
}
@media screen and (min-width: 992px) {
  .ly_footer_wrap {
    margin-top: 224px;
  }
}
.ly_footer_inner {
  width: calc(100% - 40px);
  max-width: 1200px;
  margin-inline: auto;
}
@media screen and (min-width: 992px) {
  .ly_footer_inner {
    width: calc(100% - 80px);
  }
}
.ly_footer_copy {
  width: 100%;
  min-height: 56px;
  padding: 10px 10px 60px;
  background-color: var(--color-primary);
  color: var(--color-white);
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  line-height: 1.4375;
}
@media screen and (min-width: 992px) {
  .ly_footer_copy {
    padding: 10px;
  }
}
.ly_footer_sitelogo {
  max-width: 270px;
  margin-inline: auto;
}
@media screen and (min-width: 992px) {
  .ly_footer_sitelogo {
    max-width: 343px;
  }
}
.ly_footer_sitelogo > a {
  display: block;
  transition: opacity var(--transition-duration-default) var(--transition-easing-default);
}
@media (hover: hover) {
  .ly_footer_sitelogo > a:hover {
    will-change: opacity;
    opacity: 0.6;
  }
}
.ly_footer_sitelogo > a img {
  display: block;
  width: 100%;
}

.ly_footerTop {
  padding-top: 100px;
  display: flex;
  flex-direction: column;
  gap: 50px 0;
}
@media screen and (min-width: 992px) {
  .ly_footerTop {
    padding-top: 60px;
  }
}

.ly_footerBottom {
  margin-top: 40px;
  padding-bottom: 40px;
}
@media screen and (min-width: 992px) {
  .ly_footerBottom {
    margin-top: 70px;
  }
}

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

.ly_footerAddItem_ttl {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0 12px;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.5;
}
.ly_footerAddItem_ttl::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #d3d3d3;
  flex: 1;
}
.ly_footerAddItem_ttl > span {
  position: relative;
}
.ly_footerAddItem_ttl > span::before, .ly_footerAddItem_ttl > span::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 2px;
}
.ly_footerAddItem_ttl > span::before {
  left: calc(100% + 12px);
  background-color: var(--color-primary);
}
.ly_footerAddItem_ttl > span::after {
  left: calc(100% + 46px);
  background-color: #0085bf;
}
.ly_footerAddItem_body {
  margin-top: 12px;
  font-style: normal;
  font-size: 1.5rem;
  line-height: 1.4666666667;
}
@media screen and (min-width: 992px) {
  .ly_footerAddItem_body {
    font-size: 1.8rem;
    line-height: 1.5;
  }
}
.ly_footerAddItem_link {
  display: inline-block;
}
.ly_footerAddItem_link > a {
  display: block;
  color: var(--color-text);
  transition: opacity var(--transition-duration-default) var(--transition-easing-default);
  font-size: 1.5rem;
  line-height: 1.4666666667;
}
@media screen and (min-width: 992px) {
  .ly_footerAddItem_link > a {
    font-size: 1.8rem;
    line-height: 1.5;
  }
}
@media (hover: hover) {
  .ly_footerAddItem_link > a:hover {
    will-change: opacity;
    opacity: 0.6;
  }
}
.ly_footerAddItem_link > a[target=_blank]::after {
  content: "";
  display: inline-block;
  width: 0.833em;
  height: 0.833em;
  margin-left: 5px;
  transform: translateY(2px);
  background: url("/image/icon/icon_external.svg") no-repeat center;
  background-size: 0.833em 0.833em;
}

body.is_menuOpen {
  overflow: hidden;
}

.ly_menu {
  width: 100%;
  height: 100%;
  overflow-y: auto;
}
.ly_menu_wrap {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 99;
  width: calc(100% - 20px);
  height: 100%;
  padding-bottom: 70px;
  background-color: #19294e;
  color: var(--color-white);
  transform: translateX(100%);
  transition: transform 0.4s var(--transition-easing-default);
}
@media screen and (min-width: 992px) {
  .ly_menu_wrap {
    display: none;
  }
}
.ly_menu_wrap.is_menuOpen {
  transform: translateX(0);
}
.ly_menu a {
  color: var(--color-white);
  text-decoration: none;
}
.ly_menu_head {
  width: calc(100% - 20px);
  height: 58px;
  margin-inline: auto;
  display: flex;
  align-items: center;
}
.ly_menu_sitelogo {
  width: 167px;
}
.ly_menu_sitelogo > a {
  display: block;
}
.ly_menu_sitelogo > a > img {
  display: block;
  width: 100%;
}
.ly_menu_close {
  position: relative;
  width: 33px;
  height: 40px;
  margin-left: auto;
}
.ly_menu_close > .line {
  position: absolute;
  top: 20px;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--color-white);
  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_menu_close > .line:nth-of-type(1) {
  transform: rotate(-45deg);
}
.ly_menu_close > .line:nth-of-type(2) {
  transform: rotate(45deg);
}
.ly_menu_body {
  margin-top: 50px;
  padding: 0 30px;
}
.ly_menu_poricyLinks {
  margin-top: 22px;
}
.ly_menu_poricyLinks > li:not(:first-child) {
  margin-top: 15px;
}
.ly_menu_poricyLinks > li > a {
  display: block;
  padding: 13px;
  text-align: center;
  border: 1px solid var(--color-white);
  font-size: 1.6rem;
  line-height: 1.25;
}

.ly_menuNav_homeLink {
  margin-bottom: 26px;
}
.ly_menuNav_homeLink > a {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.4285714286;
}
.ly_menuNav_homeLink > a::before {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 0;
  width: 15px;
  height: 16px;
  background: url("/image/icon/icon_home_white.svg") no-repeat center;
  background-size: 15px 16px;
}
.ly_menuNav_list > li {
  border-bottom: 1px dashed var(--color-white);
}
.ly_menuNav_list > li:first-child > a {
  padding-top: 0;
}
.ly_menuNav_list > li > a {
  padding: 10px 0;
  display: block;
  font-size: 1.8rem;
  line-height: 1.4444444444;
}

.ly_menuToggle {
  position: relative;
  width: 35px;
  height: 40px;
}
@media screen and (min-width: 992px) {
  .ly_menuToggle {
    display: none;
  }
}
.ly_menuToggle::after {
  content: "MENU";
  display: block;
  position: absolute;
  top: 23px;
  left: 0;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.15em;
}
.ly_menuToggle > .line {
  position: absolute;
  top: 7px;
  left: 0;
  display: block;
  width: 100%;
  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: 12px;
}
.ly_menuToggle > .line:nth-of-type(3) {
  top: 17px;
}

.ly_pageTop {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translate(-50%, 50%);
}
@media screen and (min-width: 992px) {
  .ly_pageTop {
    left: auto;
    right: 40px;
    transform: translate(0, 50%);
  }
}
.ly_pageTop > a {
  width: 100px;
  aspect-ratio: 1;
  padding-bottom: 6px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 11px 0;
  border-radius: 50%;
  text-decoration: none;
  text-transform: uppercase;
  border: 2px solid var(--color-white);
  background-color: var(--color-primary);
  color: var(--color-white);
  font-weight: 500;
  transition: opacity var(--transition-duration-default) var(--transition-easing-default);
  font-size: 1.1rem;
  line-height: 1.5454545455;
}
.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%);
}
@media (hover: hover) {
  .ly_pageTop > a:hover {
    will-change: opacity;
    opacity: 0.6;
  }
}

.bl_homeSection {
  padding: 70px 0 0;
}
@media screen and (min-width: 992px) {
  .bl_homeSection {
    padding: 170px 0 0;
  }
}

.bl_homeSection02 {
  padding: 70px 0;
}
@media screen and (min-width: 992px) {
  .bl_homeSection02 {
    padding: 170px 0;
  }
}

.bl_section + .bl_section {
  padding-top: 80px;
}
@media screen and (min-width: 992px) {
  .bl_section + .bl_section {
    padding-top: 160px;
  }
}

.bl_breadcrumb {
  width: calc(100% - 40px);
  max-width: 1200px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (min-width: 992px) {
  .bl_breadcrumb {
    width: calc(100% - 80px);
  }
}
.bl_breadcrumb_wrap {
  width: 100%;
  margin: 7px auto 30px;
}
@media screen and (min-width: 992px) {
  .bl_breadcrumb_wrap {
    margin: 14px auto 60px;
  }
}
.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;
}
@media screen and (min-width: 992px) {
  .bl_breadcrumb_item > a, .bl_breadcrumb_item span {
    font-size: 1.5rem;
    line-height: 1.4;
  }
}
.bl_breadcrumb_item > a {
  color: inherit;
  transition: opacity var(--transition-duration-default) var(--transition-easing-default);
}
@media (hover: hover) {
  .bl_breadcrumb_item > a:hover {
    will-change: opacity;
    opacity: 0.6;
  }
}

.bl_media_inner {
  display: flex;
  flex-direction: column;
  gap: 35px 0;
}
@media screen and (min-width: 992px) {
  .bl_media_inner {
    flex-direction: row;
    gap: 0 40px;
  }
}
.bl_media_cont {
  position: relative;
}
@media screen and (min-width: 992px) {
  .bl_media_cont {
    flex: 1;
  }
}
.bl_media_ttl {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.5;
}
@media screen and (min-width: 992px) {
  .bl_media_ttl {
    margin-bottom: 30px;
    font-size: 3rem;
    line-height: 1.6666666667;
  }
}
.bl_media_txt {
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 2;
}
@media screen and (min-width: 992px) {
  .bl_media_txt {
    font-size: 2rem;
    line-height: 2;
  }
}
.bl_media_btnList {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px 0;
}
@media screen and (min-width: 992px) {
  .bl_media_btnList {
    margin-top: 45px;
    flex-direction: row;
    justify-content: flex-end;
    gap: 0 20px;
  }
}
.bl_media_imgWrap {
  display: flex;
  flex-direction: column;
  gap: 32px 0;
}
@media screen and (min-width: 992px) {
  .bl_media_imgWrap {
    width: 54.1666667%;
  }
}
.bl_media_img {
  aspect-ratio: 335/209;
}
@media screen and (min-width: 992px) {
  .bl_media_img {
    aspect-ratio: 650/390;
  }
}
.bl_media_img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 30px;
}
.bl_media_line {
  display: block;
  transition: opacity var(--transition-duration-default) var(--transition-easing-default);
}
@media (hover: hover) {
  .bl_media_line:hover {
    will-change: opacity;
    opacity: 0.6;
  }
}
.bl_media_illust {
  position: absolute;
  top: 30px;
  right: 0;
  width: 68px;
}
@media screen and (min-width: 992px) {
  .bl_media_illust {
    top: 0;
  }
}
@media screen and (min-width: 1200px) {
  .bl_media_illust {
    width: 109px;
  }
}
.bl_media_illust img {
  display: block;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .bl_media__rev .bl_media_inner {
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 992px) {
  .bl_media .el_lv2Heading {
    margin-bottom: 30px;
  }
}

.bl_contactList,
.bl_contactList02 {
  display: flex;
  flex-direction: column;
  gap: 50px 0;
}
@media screen and (min-width: 992px) {
  .bl_contactList,
  .bl_contactList02 {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }
}
@media screen and (min-width: 992px) {
  .bl_contactList > li,
  .bl_contactList02 > li {
    min-width: 370px;
  }
}

.bl_contactItem,
.bl_contactItem02 {
  text-align: center;
}
.bl_contactItem_ttl,
.bl_contactItem02_ttl {
  margin-bottom: 16px;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.4;
}
@media screen and (min-width: 992px) {
  .bl_contactItem_ttl,
  .bl_contactItem02_ttl {
    margin-bottom: 12px;
    font-size: 2.4rem;
    line-height: 1.5;
  }
}
.bl_contactItem_tel > a,
.bl_contactItem02_tel > a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 13px;
  text-decoration: none;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 1.4;
}
@media screen and (min-width: 992px) {
  .bl_contactItem_tel > a,
  .bl_contactItem02_tel > a {
    gap: 0 9px;
    pointer-events: none;
    font-size: 4.4rem;
    line-height: 1.3863636364;
  }
}
.bl_contactItem_tel > a::before,
.bl_contactItem02_tel > a::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background: url("/image/icon/icon_tel.svg") no-repeat center;
  background-size: 30px 30px;
}
@media screen and (min-width: 992px) {
  .bl_contactItem_tel > a::before,
  .bl_contactItem02_tel > a::before {
    width: 38px;
    height: 38px;
    background-size: 38px 38px;
  }
}
.bl_contactItem_time,
.bl_contactItem02_time {
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.4;
}
@media screen and (min-width: 992px) {
  .bl_contactItem_time,
  .bl_contactItem02_time {
    font-size: 2.4rem;
    line-height: 1.4166666667;
  }
}
.bl_contactItem_btnWrap,
.bl_contactItem02_btnWrap {
  margin-left: 20px;
}
@media screen and (min-width: 992px) {
  .bl_contactItem_btnWrap,
  .bl_contactItem02_btnWrap {
    margin-left: 0;
  }
}

.bl_contactList02 {
  margin-top: 80px;
}
@media screen and (min-width: 992px) {
  .bl_contactList02 {
    margin-top: 130px;
    justify-content: flex-start;
  }
}
@media screen and (min-width: 992px) {
  .bl_contactList02 > li {
    width: calc((100% - 40px) / 2);
  }
}
.bl_contactList02 .el_lv2Heading {
  text-align: left;
  margin-bottom: 20px;
}
@media screen and (min-width: 992px) {
  .bl_contactList02 .el_lv2Heading {
    margin-bottom: 30px;
  }
}

@media screen and (min-width: 992px) {
  .bl_contactItem02 {
    text-align: left;
  }
}
@media screen and (min-width: 992px) {
  .bl_contactItem02_tel > a {
    justify-content: flex-start;
  }
}
.bl_contactItem02_time {
  color: #0658a4;
}
@media screen and (min-width: 992px) {
  .bl_contactItem02_time {
    margin-left: 50px;
  }
}
.bl_contactItem02_btnWrap {
  margin-left: 0;
}

.bl_newsCardUnit {
  padding: 0 15px 0 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px 0;
}
@media screen and (min-width: 992px) {
  .bl_newsCardUnit {
    padding: 0;
  }
}
@media screen and (min-width: 992px) {
  .bl_newsCardUnit__3col {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0 28px;
  }
}
@media screen and (min-width: 992px) {
  .bl_newsCardUnit__3col .bl_newsCard {
    width: calc((100% - 56px) / 3);
  }
}

.bl_newsCard {
  position: relative;
  display: block;
  padding: 23px 23px 40px;
  text-decoration: none;
  color: var(--color-text);
  background-color: var(--color-white);
  border-radius: 15px;
  border: 1px solid #e8e8e8;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  transition: opacity var(--transition-duration-default) var(--transition-easing-default);
}
.bl_newsCard::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 13px;
  right: 13px;
  width: 26px;
  height: 26px;
  background: url("/image/icon/icon_arrow02.svg") no-repeat center;
  background-size: 26px 26px;
}
@media (hover: hover) {
  .bl_newsCard:hover {
    will-change: opacity;
    opacity: 0.6;
  }
}
.bl_newsCard_inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.bl_newsCard_headline {
  display: flex;
  align-items: center;
  gap: 0 5px;
}
@media screen and (min-width: 992px) {
  .bl_newsCard_headline {
    gap: 0 10px;
  }
}
.bl_newsCard_time {
  font-size: 1.4rem;
  line-height: 1.4285714286;
}
@media screen and (min-width: 992px) {
  .bl_newsCard_time {
    font-size: 1.6rem;
    line-height: 1.4375;
  }
}
.bl_newsCard_body {
  margin-top: 9px;
}
@media screen and (min-width: 992px) {
  .bl_newsCard_body {
    margin-top: 13px;
  }
}
.bl_newsCard_ttl {
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.4666666667;
}
@media screen and (min-width: 992px) {
  .bl_newsCard_ttl {
    font-size: 1.8rem;
    line-height: 1.5;
  }
}

.bl_faq > *:first-child {
  margin-top: 0 !important;
}
.bl_faq_list > li {
  padding: 30px 0 25px;
  border-bottom: 1px dashed #707070;
}
.bl_faq_list > li:first-child {
  padding-top: 0;
}
.bl_faq_q {
  position: relative;
  display: block;
  padding: 0.278em 0 0 50px;
  color: #fa7500;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.3333333333;
}
@media screen and (min-width: 992px) {
  .bl_faq_q {
    font-size: 2.2rem;
    line-height: 1.4090909091;
  }
}
.bl_faq_q::before {
  content: "Q";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fdf2c6;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.8rem;
  line-height: 1;
}
.bl_faq_a {
  position: relative;
  min-height: 40px;
  margin: 26px 0 0 15px;
  padding: 0.278em 0 0 50px;
  color: var(--color-primary);
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 2;
}
@media screen and (min-width: 992px) {
  .bl_faq_a {
    font-size: 1.8rem;
    line-height: 1.5555555556;
  }
}
.bl_faq_a::before {
  content: "A";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #0085bf;
  background-color: #d3eef9;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.8rem;
  line-height: 1;
}
.bl_faq .el_lv2Heading {
  margin-top: 60px;
}
@media screen and (min-width: 992px) {
  .bl_faq .el_lv2Heading {
    margin-top: 120px;
  }
}

.bl_pageHead {
  position: relative;
  padding: 20px 20px 20px 0;
  min-height: 100px;
  display: grid;
  place-items: center;
}
@media screen and (min-width: 992px) {
  .bl_pageHead {
    padding: 40px 20px 40px 0;
    min-height: 200px;
  }
}
.bl_pageHead::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  width: calc(100% - 20px);
  height: 100%;
  background-color: var(--color-secondary);
  border-radius: 25px 0 0 25px;
}
@media screen and (min-width: 992px) {
  .bl_pageHead::before {
    width: calc(100% - 40px);
    border-radius: 50px 0 0 50px;
  }
}
.bl_pageHead_inner {
  width: calc(100% - 80px);
  max-width: 1200px;
  margin-inline: auto;
}
@media screen and (min-width: 992px) {
  .bl_pageHead_inner {
    width: calc(100% - 140px);
  }
}

.bl_pageMv {
  margin-bottom: 40px;
}
@media screen and (min-width: 992px) {
  .bl_pageMv {
    margin-bottom: 60px;
  }
}
.bl_pageMv_inner {
  aspect-ratio: 3/1;
}
.bl_pageMv img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}
@media screen and (min-width: 992px) {
  .bl_pageMv img {
    border-radius: 30px;
  }
}

.bl_iconTxts {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 10px 0;
}
@media screen and (min-width: 992px) {
  .bl_iconTxts {
    flex-direction: row;
    gap: 0 20px;
  }
}
.bl_iconTxts_icon {
  width: 110px;
}
@media screen and (min-width: 992px) {
  .bl_iconTxts_icon {
    width: 9.16666667%;
    max-width: 110px;
  }
}
.bl_iconTxts_icon img {
  display: block;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .bl_iconTxts_body {
    flex: 1;
  }
}
.bl_iconTxts_txt {
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.5;
}
@media screen and (min-width: 992px) {
  .bl_iconTxts_txt {
    font-size: 2.4rem;
    line-height: 1.5;
  }
}
.bl_iconTxts_txt__sm {
  margin-top: 10px;
  font-size: 1.6rem;
}
@media screen and (min-width: 992px) {
  .bl_iconTxts_txt__sm {
    font-size: 1.8rem;
  }
}

.bl_cardUnit {
  margin-top: 70px;
  display: flex;
  flex-direction: column;
  gap: 80px 0;
}
@media screen and (min-width: 992px) {
  .bl_cardUnit {
    margin-top: 110px;
  }
}
@media screen and (min-width: 992px) {
  .bl_cardUnit__3col {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 80px 24px;
  }
}
@media screen and (min-width: 992px) {
  .bl_cardUnit__3col .bl_card {
    width: calc((100% - 48px) / 3);
  }
}

.bl_card_inner {
  position: relative;
  padding: 50px 30px 35px;
  border-radius: 20px;
  background-color: #f2f6f9;
}
@media screen and (min-width: 992px) {
  .bl_card_inner {
    height: 100%;
    display: flex;
    flex-direction: column;
  }
}
.bl_card_ttl {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translate(-50%, 50%);
  display: grid;
  place-items: center;
  width: 84.375%;
  min-height: 80px;
  padding: 10px;
  background-color: #053c74;
  color: var(--color-white);
  border-radius: 20px;
  text-align: center;
  font-weight: 500;
  font-size: 2.2rem;
  line-height: 1.4090909091;
}
.bl_card_ttl .sm {
  font-size: 1.6rem;
}
.bl_card_icon {
  width: 175px;
  margin-inline: auto;
}
.bl_card_icon img {
  display: block;
  width: 100%;
}
.bl_card_txt {
  margin-top: 10px;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.5;
}
@media screen and (min-width: 992px) {
  .bl_card_txt {
    height: 100%;
  }
}

.bl_logoList {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 24px 0;
}
@media screen and (min-width: 992px) {
  .bl_logoList {
    margin-top: 60px;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
  }
}
@media screen and (min-width: 992px) {
  .bl_logoList > li {
    width: calc((100% - 48px) / 3);
  }
}

.bl_logoItem {
  display: block;
}
.bl_logoItem img {
  display: block;
  width: 100%;
  border: 1px solid #cfcfcf;
  border-radius: 20px;
}

a.bl_logoItem {
  transition: opacity var(--transition-duration-default) var(--transition-easing-default);
}
@media (hover: hover) {
  a.bl_logoItem:hover {
    will-change: opacity;
    opacity: 0.6;
  }
}

.bl_message_txt {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (min-width: 992px) {
  .bl_message_txt {
    font-size: 2rem;
    line-height: 2;
  }
}
.bl_message_nameWrap {
  margin-top: 30px;
  text-align: right;
}
@media screen and (min-width: 992px) {
  .bl_message_nameWrap {
    margin-top: 60px;
  }
}
.bl_message_nameWrap .position,
.bl_message_nameWrap .name {
  display: inline-block;
}
.bl_message_nameWrap .position {
  margin-right: 10px;
  font-size: 2rem;
  line-height: 1.2;
}
@media screen and (min-width: 992px) {
  .bl_message_nameWrap .position {
    font-size: 3.3rem;
    line-height: 1.2121212121;
  }
}
.bl_message_nameWrap .name {
  font-size: 3rem;
  line-height: 1.3333333333;
}
@media screen and (min-width: 992px) {
  .bl_message_nameWrap .name {
    font-size: 5rem;
    line-height: 1.34;
  }
}

.bl_table table {
  width: 100%;
  border-top: 1px solid #ccc;
}
.bl_table th, .bl_table td {
  display: block;
  padding: 11px 8px;
  font-size: 1.6rem;
  line-height: 1.75;
}
@media screen and (min-width: 992px) {
  .bl_table th, .bl_table td {
    display: table-cell;
    padding: 22px 16px;
    font-size: 1.8rem;
    line-height: 1.7777777778;
  }
}
.bl_table th {
  text-align: left;
  color: var(--color-primary);
  border-bottom: 1px solid #ccc;
  font-weight: 500;
}
@media screen and (min-width: 992px) {
  .bl_table th {
    position: relative;
    width: 14.4166667%;
  }
}
@media screen and (min-width: 992px) {
  .bl_table th::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 66.1971831%;
    background-color: #ccc;
  }
}
.bl_table td {
  border-bottom: 1px solid #ccc;
  font-weight: 500;
}
@media screen and (min-width: 992px) {
  .bl_table td {
    width: 85.5833333%;
  }
}

.bl_map_txt {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.375;
}
@media screen and (min-width: 992px) {
  .bl_map_txt {
    font-size: 2rem;
    line-height: 1.4;
  }
}
.bl_map_map {
  margin-top: 20px;
  aspect-ratio: 150/101;
}
@media screen and (min-width: 992px) {
  .bl_map_map {
    margin-top: 40px;
  }
}
.bl_map_map iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.bl_map + .bl_map {
  margin-top: 40px;
}
@media screen and (min-width: 992px) {
  .bl_map + .bl_map {
    margin-top: 80px;
  }
}
.bl_map .el_lv3Heading {
  margin-bottom: 20px;
}

.bl_accItem_head {
  position: relative;
  display: block;
  width: 100%;
  text-align: left;
  padding-right: 40px;
}
@media screen and (min-width: 992px) {
  .bl_accItem_head {
    padding-right: 60px;
  }
}
.bl_accItem_head::after {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  right: 20px;
  width: 12px;
  height: 12px;
  transform: rotate(45deg);
  border-bottom: 3px solid #0658a4;
  border-right: 3px solid #0658a4;
  transition: transform var(--transition-duration-default) var(--transition-easing-default);
}
@media screen and (min-width: 992px) {
  .bl_accItem_head::after {
    right: 40px;
  }
}
.bl_accItem_head.is_active::after {
  transform: rotate(-135deg);
}
.bl_accItem_body {
  padding-right: 40px;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-duration-default) var(--transition-easing-default);
}
@media screen and (min-width: 992px) {
  .bl_accItem_body {
    padding-right: 60px;
  }
}

.bl_contactBox {
  max-width: 680px;
  margin-top: 40px;
  padding: 15px 20px;
  text-align: center;
  border: 1px solid #cfcfcf;
  border-radius: 20px;
}
.bl_contactBox_ttl {
  margin-bottom: 10px;
  color: #0658a4;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.4375;
}
@media screen and (min-width: 992px) {
  .bl_contactBox_ttl {
    font-size: 2.2rem;
    line-height: 1.4090909091;
  }
}
.bl_contactBox_tel > a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 13px;
  text-decoration: none;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 3rem;
  line-height: 1;
}
@media screen and (min-width: 992px) {
  .bl_contactBox_tel > a {
    gap: 0 20px;
    pointer-events: none;
    font-size: 6rem;
    line-height: 1;
  }
}
.bl_contactBox_tel > a::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background: url("/image/icon/icon_tel.svg") no-repeat center;
  background-size: 30px 30px;
}
@media screen and (min-width: 992px) {
  .bl_contactBox_tel > a::before {
    width: 38px;
    height: 38px;
    background-size: 38px 38px;
  }
}
.bl_contactBox_address {
  margin-top: 10px;
  font-size: 1.4rem;
  line-height: 1.3571428571;
}
@media screen and (min-width: 992px) {
  .bl_contactBox_address {
    font-size: 1.8rem;
    line-height: 1.3888888889;
  }
}

.bl_ulList {
  padding-left: 20px;
}
@media screen and (min-width: 992px) {
  .bl_ulList {
    padding-left: 40px;
  }
}
.bl_ulList li {
  position: relative;
  padding-left: 1em;
}
.bl_ulList li::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #0085bf;
}
.bl_ulList li:not(:first-child) {
  margin-top: 5px;
}
.bl_ulList__circleGray li::before {
  background-color: #666666;
}
.bl_ulList__simple {
  padding-left: 0;
}
.bl_ulList__simple li {
  padding-left: 0;
}
.bl_ulList__simple li::before {
  content: none;
}

.bl_olList {
  padding-left: 20px;
  counter-reset: num;
}
@media screen and (min-width: 992px) {
  .bl_olList {
    padding-left: 40px;
  }
}
.bl_olList li {
  position: relative;
  padding-left: 1.3em;
}
.bl_olList li::before {
  counter-increment: num;
  content: counter(num) ".";
  position: absolute;
  top: 0;
  left: 0;
}
.bl_olList li:not(:first-child) {
  margin-top: 5px;
}

.bl_dlList dt:not(:first-of-type) {
  margin-top: 30px;
}

.bl_flowList {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 65px;
}
@media screen and (min-width: 992px) {
  .bl_flowList {
    margin-bottom: 20px;
    justify-content: flex-end;
  }
}
.bl_flowList > li {
  position: relative;
}
.bl_flowList > li:not(:first-child)::before {
  content: "";
  display: block;
  position: absolute;
  top: 17px;
  right: calc(100% - 1px);
  width: 66px;
  height: 1px;
  background-color: #888;
}
.bl_flowList > li.is_current::before {
  top: 16px;
  height: 3px;
  background-color: #1c92cf;
}
.bl_flowList > li.is_current .bl_flowItem_num {
  background-color: #1c92cf;
  border-color: #1c92cf;
  color: var(--color-white);
}

.bl_flowItem_num {
  width: 35px;
  height: 35px;
  border: 1px solid #888;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #888;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1;
}
.bl_flowItem_ttl {
  margin-top: 5px;
  text-align: center;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1;
}

.bl_form {
  margin-top: 25px;
}
.bl_form_btnList {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
}
@media screen and (min-width: 992px) {
  .bl_form_btnList {
    flex-direction: row;
    justify-content: center;
    gap: 0 20px;
  }
}
.bl_form_btnList > li {
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .bl_form_btnList > li {
    width: auto;
  }
}
.bl_form_submit {
  display: inline-block;
  width: 100%;
  max-width: 380px;
  min-height: 60px;
  color: var(--color-white);
  border: 2px solid var(--color-white);
  background-color: #1c92cf;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity var(--transition-duration-default) var(--transition-easing-default);
  font-size: 1.6rem;
  line-height: 1.375;
}
@media screen and (min-width: 992px) {
  .bl_form_submit {
    width: 380px;
    min-height: 80px;
    font-size: 2rem;
    line-height: 1.4;
  }
}
@media (hover: hover) {
  .bl_form_submit:hover {
    will-change: opacity;
    opacity: 0.6;
  }
}
.bl_form_reset {
  display: inline-block;
  width: 100%;
  max-width: 380px;
  min-height: 60px;
  border: 2px solid var(--color-white);
  background-color: #f0f0f0;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity var(--transition-duration-default) var(--transition-easing-default);
  font-size: 1.6rem;
  line-height: 1.375;
}
@media screen and (min-width: 992px) {
  .bl_form_reset {
    width: 380px;
    min-height: 80px;
    font-size: 2rem;
    line-height: 1.4;
  }
}
@media (hover: hover) {
  .bl_form_reset:hover {
    will-change: opacity;
    opacity: 0.6;
  }
}

.bl_formTable {
  width: 100%;
  border-top: 1px solid #ccc;
  font-size: 1.6rem;
  line-height: 1.4375;
}
@media screen and (min-width: 992px) {
  .bl_formTable {
    font-size: 1.8rem;
    line-height: 1.4444444444;
  }
}
.bl_formTable th, .bl_formTable td {
  display: block;
}
@media screen and (min-width: 992px) {
  .bl_formTable th, .bl_formTable td {
    display: table-cell;
    min-height: 85px;
  }
}
.bl_formTable th {
  padding: 20px 0;
  text-align: left;
  font-weight: 400;
}
@media screen and (min-width: 992px) {
  .bl_formTable th {
    min-width: 220px;
    width: 18.3333333%;
    padding: 37px 10px 20px 0;
    border-bottom: 1px solid #ccc;
    vertical-align: top;
  }
}
.bl_formTable td {
  padding-bottom: 20px;
  border-bottom: 1px solid #ccc;
}
@media screen and (min-width: 992px) {
  .bl_formTable td {
    width: 81.6666667%;
    padding: 20px 0 22px;
  }
}
.bl_formTable_ttl {
  display: flex;
  align-items: center;
  gap: 0 10px;
}
@media screen and (min-width: 992px) {
  .bl_formTable_ttl {
    justify-content: space-between;
  }
}
.bl_formTable_required {
  min-width: 40px;
  min-height: 20px;
  padding: 4px;
  display: inline-block;
  color: var(--color-white);
  background-color: #004ca2;
  border-radius: 3px;
  text-align: center;
  font-size: 1.3rem;
  line-height: 1;
  letter-spacing: 0.1em;
}
.bl_formTable_note {
  margin-top: 5px;
  font-size: 1.3rem;
  line-height: 1.5384615385;
}
.bl_formTable_privacy {
  display: flex;
  align-items: flex-start;
  gap: 0 12px;
  padding: 20px;
  border-radius: 3px;
  background-color: #ecf6fb;
}
.bl_formTable_privacy > span {
  flex: 1;
}
.bl_formTable_privacy .el_link {
  text-decoration: underline;
}
.bl_formTable_error {
  margin-top: 5px;
  color: var(--color-red);
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1.5384615385;
}
@media screen and (min-width: 992px) {
  .bl_formTable__confirm tr {
    display: flex;
  }
}
@media screen and (min-width: 992px) {
  .bl_formTable__confirm th, .bl_formTable__confirm td {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media screen and (min-width: 992px) {
  .bl_formTable__confirm th {
    padding-top: 20px;
  }
}

.bl_formMassage {
  padding: 10px 15px;
  color: var(--color-red);
  border: 2px solid var(--color-red);
  background-color: #fdf2c6;
  margin: 10px auto;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.4375;
}

.bl_box {
  padding: 20px;
  background-color: #fbf9f6;
}

.bl_pager {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.bl_pager_wrap {
  margin-top: 60px;
  padding: 30px 0;
  background-color: #fbf9f6;
}
@media screen and (min-width: 992px) {
  .bl_pager_wrap {
    margin-top: 120px;
  }
}
.bl_pager_num > a, .bl_pager_num span {
  width: 40px;
  aspect-ratio: 1;
  background-color: var(--color-white);
  color: var(--color-primary);
  border: 1px solid #c9c9c9;
  text-decoration: none;
  display: grid;
  place-items: center;
  font-weight: 500;
  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-primary);
}
.bl_pager_num.is_current span {
  background-color: var(--color-primary);
  color: var(--color-white);
}
.bl_pager_prev > a, .bl_pager_next > a {
  height: 100%;
  padding: 10px 13px;
  background-color: var(--color-white);
  border: 1px solid #c9c9c9;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 12px;
  text-decoration: none;
  font-weight: 500;
  transition: opacity var(--transition-duration-default) var(--transition-easing-default);
  font-size: 1.6rem;
  line-height: 1;
}
@media screen and (min-width: 992px) {
  .bl_pager_prev > a, .bl_pager_next > a {
    padding: 10px 20px;
  }
}
.bl_pager_prev > a::before, .bl_pager_next > a::before {
  content: "";
  display: block;
  width: 12px;
  height: 14px;
  clip-path: polygon(100% 50%, 0 0, 0 100%);
  background-color: var(--color-primary);
}
@media (hover: hover) {
  .bl_pager_prev > a:hover, .bl_pager_next > a:hover {
    will-change: opacity;
    opacity: 0.6;
  }
}
.bl_pager_prev > a {
  padding-right: 16px;
  color: #c9c9c9;
}
.bl_pager_prev > a::before {
  background-color: #c9c9c9;
  transform: scale(-1);
}
.bl_pager_next > a {
  padding-left: 16px;
  flex-direction: row-reverse;
}

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

.bl_newsItem {
  position: relative;
  padding: 15px 0;
  display: flex;
  flex-direction: column;
  gap: 9px 0;
  text-decoration: none;
  color: currentColor;
  transition: opacity var(--transition-duration-default) var(--transition-easing-default);
}
@media (hover: hover) {
  .bl_newsItem:hover {
    will-change: opacity;
    opacity: 0.6;
  }
}
.bl_newsItem_date {
  font-size: 1.4rem;
  line-height: 1.4285714286;
}
@media screen and (min-width: 992px) {
  .bl_newsItem_date {
    font-size: 1.6rem;
    line-height: 1.4375;
  }
}
.bl_newsItem_txt {
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.4666666667;
}
@media screen and (min-width: 992px) {
  .bl_newsItem_txt {
    font-size: 1.8rem;
    line-height: 1.5;
  }
}

.bl_selectLink {
  background-color: var(--color-white);
  border: 1px solid #707070;
  border-radius: 5px;
  height: 40px;
  position: relative;
  width: 100%;
  z-index: 1;
}
@media screen and (min-width: 992px) {
  .bl_selectLink {
    width: 300px;
  }
}
.bl_selectLink::after {
  content: "";
  position: absolute;
  right: 15px;
  top: calc(50% - 5px);
  width: 14px;
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #707070;
  border-bottom: 2px solid #707070;
  transform: rotate(45deg);
  z-index: -1;
}
.bl_selectLink select {
  position: absolute;
  inset: 0;
  padding: 4px 40px 4px 12px;
  color: var(--color-black);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
}
.bl_selectLink_wrap {
  display: flex;
  margin-bottom: 30px;
}

.el_homeHeading {
  margin-bottom: 30px;
}
@media screen and (min-width: 992px) {
  .el_homeHeading {
    margin-bottom: 40px;
  }
}
.el_homeHeading::before {
  content: "";
  display: block;
  width: 93px;
  height: 22px;
  margin-bottom: 11px;
  background: url("/image/icon/icon_heading_deco.svg") no-repeat center;
  background-size: 93px 22px;
}
.el_homeHeading .lead {
  display: block;
  color: #0085bf;
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.3846153846;
}
@media screen and (min-width: 992px) {
  .el_homeHeading .lead {
    font-size: 1.8rem;
    line-height: 1.3888888889;
  }
}
.el_homeHeading .heading {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.4;
}
@media screen and (min-width: 992px) {
  .el_homeHeading .heading {
    font-size: 4rem;
    line-height: 1.4;
  }
}
.el_homeHeading__tac {
  text-align: center;
}
.el_homeHeading__tac::before {
  margin-right: auto;
  margin-left: auto;
}

.el_lv1Heading {
  font-size: 3.2rem;
  line-height: 1.30434783;
  font-weight: 500;
}
@media screen and (min-width: 992px) {
  .el_lv1Heading {
    font-size: 4.6rem;
    line-height: 1.3043478261;
  }
}

.el_lv2Heading {
  margin-bottom: 30px;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.4;
}
@media screen and (min-width: 992px) {
  .el_lv2Heading {
    margin-bottom: 60px;
    font-size: 4.2rem;
    line-height: 1.3333333333;
  }
}
.el_lv2Heading::before {
  content: "";
  display: block;
  width: 93px;
  height: 22px;
  margin-bottom: 11px;
  background: url("/image/icon/icon_heading_deco.svg") no-repeat center;
  background-size: 93px 22px;
}

.el_lv3Heading {
  margin-bottom: 30px;
  color: #0085bf;
  font-weight: 500;
  font-size: 2.8rem;
  line-height: 1.3928571429;
}
@media screen and (min-width: 992px) {
  .el_lv3Heading {
    margin-bottom: 40px;
    font-size: 4rem;
    line-height: 1.4;
  }
}

.el_btn {
  position: relative;
  display: inline-block;
  min-width: 240px;
  padding: 17px 50px 14px 30px;
  background-color: #f1fafe;
  border: 1px solid #c9eeff;
  border-radius: 60px;
  color: var(--color-text);
  text-decoration: none;
  transition: background var(--transition-duration-default) var(--transition-easing-default), border var(--transition-duration-default) var(--transition-easing-default);
  font-size: 1.8rem;
  line-height: 1.3888888889;
}
.el_btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  background: url("/image/icon/icon_arrow01.svg") no-repeat center;
  background-size: 26px 26px;
}
@media (hover: hover) {
  .el_btn:hover {
    will-change: background, border;
    background-color: #ededec;
    border-color: #ededec;
  }
}
.el_btn_wrap {
  text-align: center;
  margin-top: 25px;
}
@media screen and (min-width: 992px) {
  .el_btn_wrap {
    margin-top: 45px;
  }
}
.el_btn__blue {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
  color: var(--color-white);
  transition: background var(--transition-duration-default) var(--transition-easing-default), border var(--transition-duration-default) var(--transition-easing-default), color var(--transition-duration-default) var(--transition-easing-default);
}
.el_btn__blue::after {
  background-image: url("/image/icon/icon_arrow01_white.svg");
  transition: background var(--transition-duration-default) var(--transition-easing-default);
}
@media (hover: hover) {
  .el_btn__blue:hover {
    color: var(--color-text);
  }
}
.el_btn__blue:hover::after {
  background-image: url("/image/icon/icon_arrow01.svg");
}
.el_btn__befArrow {
  padding: 17px 30px 14px 50px;
}
.el_btn__befArrow::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%) scale(-1, 1);
  width: 26px;
  height: 26px;
  background: url("/image/icon/icon_arrow01.svg") no-repeat center;
  background-size: 26px 26px;
}
.el_btn__befArrow::after {
  content: none;
}
.el_btn__rss {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0 12px;
  padding-right: 30px;
  background-color: var(--color-white);
  border-color: #93c9e2;
}
.el_btn__rss::after {
  content: none;
}
.el_btn__rss::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url("/image/icon/icon_rss.svg") no-repeat center;
  background-size: 24px 24px;
}

.el_poricyBtn {
  display: flex;
  align-items: center;
  gap: 0 13px;
  width: 100%;
  min-height: 92px;
  padding: 10px;
  background-color: #fBf9f6;
  border: 1px solid #e8e0d5;
  border-radius: 20px;
  color: var(--color-text);
  text-decoration: none;
  transition: background var(--transition-duration-default) var(--transition-easing-default);
}
@media screen and (min-width: 992px) {
  .el_poricyBtn {
    min-height: 160px;
    padding: 35px;
    gap: 0 30px;
  }
}
@media (hover: hover) {
  .el_poricyBtn:hover {
    will-change: background;
    background-color: #f1fafe;
  }
}
.el_poricyBtn_icon {
  width: 38px;
}
@media screen and (min-width: 992px) {
  .el_poricyBtn_icon {
    width: 65px;
  }
}
.el_poricyBtn_icon img {
  display: block;
  width: 100%;
}
.el_poricyBtn_ttl {
  font-weight: 500;
  flex: 1;
  font-size: 1.5rem;
  line-height: 1.4666666667;
}
@media screen and (min-width: 992px) {
  .el_poricyBtn_ttl {
    font-size: 2.4rem;
    line-height: 1.5;
  }
}

.el_poricyBtnList {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
}
@media screen and (min-width: 992px) {
  .el_poricyBtnList {
    flex-direction: row;
    gap: 0 40px;
  }
}
@media screen and (min-width: 992px) {
  .el_poricyBtnList > li {
    width: calc((100% - 40px) / 2);
  }
}

.el_cvBtn {
  width: 100%;
  max-width: 310px;
  min-height: 90px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  background-color: #0085bf;
  color: var(--color-white);
  border: 1px solid var(--color-white);
  text-decoration: none;
  border-radius: 10px;
  font-weight: 700;
  transition: opacity var(--transition-duration-default) var(--transition-easing-default);
  font-size: 2rem;
  line-height: 1.4;
}
@media screen and (min-width: 992px) {
  .el_cvBtn {
    max-width: 100%;
    font-size: 2.8rem;
    line-height: 1.3928571429;
  }
}
@media (hover: hover) {
  .el_cvBtn:hover {
    will-change: opacity;
    opacity: 0.6;
  }
}

.el_cvBtn02 {
  display: block;
  max-width: 310px;
  margin-inline: auto;
  text-decoration: none;
  transition: opacity var(--transition-duration-default) var(--transition-easing-default);
}
@media screen and (min-width: 992px) {
  .el_cvBtn02 {
    max-width: 100%;
  }
}
@media (hover: hover) {
  .el_cvBtn02:hover {
    will-change: opacity;
    opacity: 0.6;
  }
}
.el_cvBtn02 .inner {
  display: flex;
  gap: 0 2px;
}
.el_cvBtn02 .icon {
  width: 62px;
}
.el_cvBtn02 .icon img {
  display: block;
  width: 100%;
}
.el_cvBtn02 .ttl {
  padding: 5px;
  display: grid;
  place-items: center;
  background-color: #06c755;
  color: var(--color-white);
  border: 1px solid var(--color-white);
  border-radius: 10px;
  font-weight: 700;
  flex: 1;
  font-size: 2rem;
  line-height: 1.4;
}
@media screen and (min-width: 992px) {
  .el_cvBtn02 .ttl {
    font-size: 2.8rem;
    line-height: 1.3928571429;
  }
}

.el_link {
  text-decoration: none;
  color: currentColor;
  transition: opacity var(--transition-duration-default) var(--transition-easing-default);
}
@media (hover: hover) {
  .el_link:hover {
    will-change: opacity;
    opacity: 0.6;
  }
}
@media screen and (min-width: 992px) {
  .el_link[href*=tel] {
    pointer-events: none;
  }
}

.el_input {
  width: 100%;
  height: 60px;
  padding: 10px;
  border-radius: 3px;
  background-color: #f0f0f0;
  border: 1px solid #f0f0f0;
}
@media screen and (min-width: 992px) {
  .el_input {
    padding: 20px;
  }
}
.el_input__error {
  border: 2px solid var(--color-red);
}

.el_textarea {
  width: 100%;
  height: 200px;
  padding: 10px;
  border-radius: 3px;
  background-color: #f0f0f0;
  border: 1px solid #f0f0f0;
}
@media screen and (min-width: 992px) {
  .el_textarea {
    padding: 20px;
  }
}
.el_textarea__error {
  border: 2px solid var(--color-red);
}

.el_checkbox {
  position: relative;
  width: 17px;
  aspect-ratio: 1;
  margin-top: 4px;
  background-color: var(--color-white);
  border: 1px solid #ccc;
  cursor: pointer;
}
.el_checkbox::before {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  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_wrap {
  cursor: pointer;
}
.el_checkbox_wrap .el_checkbox:checked::before {
  opacity: 1;
  visibility: visible;
}
.el_checkbox__error {
  border: 2px solid var(--color-red);
}

.el_txt {
  font-size: 1.6rem;
  line-height: 2;
}

.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 {
  font-size: 1.6rem;
  line-height: 2;
}
.un_detail > *:first-child {
  margin-top: 0 !important;
}
.un_detail > *:last-child {
  margin-bottom: 0 !important;
}
.un_detail > * {
  margin: 30px 0;
}
@media screen and (min-width: 992px) {
  .un_detail > * {
    margin: 60px 0;
  }
}
.un_detail h2, .un_detail h3, .un_detail h4, .un_detail h5, .un_detail h6 {
  margin: 60px 0 20px;
}
@media screen and (min-width: 992px) {
  .un_detail h2, .un_detail h3, .un_detail h4, .un_detail h5, .un_detail h6 {
    margin: 120px 0 30px;
  }
}
.un_detail h2 + p, .un_detail h3 + p, .un_detail h4 + p, .un_detail h5 + p, .un_detail h6 + p {
  margin-top: 20px;
}
@media screen and (min-width: 992px) {
  .un_detail h2 + p, .un_detail h3 + p, .un_detail h4 + p, .un_detail h5 + p, .un_detail h6 + p {
    margin-top: 30px;
  }
}
.un_detail h3, .un_detail h4, .un_detail h5, .un_detail h6 {
  font-weight: 500;
}
.un_detail h2 {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.4;
}
@media screen and (min-width: 992px) {
  .un_detail h2 {
    font-size: 4.2rem;
    line-height: 1.3333333333;
  }
}
.un_detail h2::before {
  content: "";
  display: block;
  width: 93px;
  height: 22px;
  margin-bottom: 11px;
  background: url("/image/icon/icon_heading_deco.svg") no-repeat center;
  background-size: 93px 22px;
}
.un_detail h2 + h3 {
  margin-top: 30px;
}
@media screen and (min-width: 992px) {
  .un_detail h2 + h3 {
    margin-top: 60px;
  }
}
.un_detail h3 {
  color: #0085bf;
  font-size: 2.8rem;
  line-height: 1.3928571429;
}
@media screen and (min-width: 992px) {
  .un_detail h3 {
    font-size: 4rem;
    line-height: 1.4;
  }
}
.un_detail h3 + h4 {
  margin-top: 30px;
}
@media screen and (min-width: 992px) {
  .un_detail h3 + h4 {
    margin-top: 60px;
  }
}
.un_detail h4 {
  padding-bottom: 8px;
  border-bottom: 1px solid #bfbfbf;
  font-size: 2.6rem;
  line-height: 1.3461538462;
}
@media screen and (min-width: 992px) {
  .un_detail h4 {
    padding-bottom: 15px;
    font-size: 3.8rem;
    line-height: 1.3684210526;
  }
}
.un_detail h4 + h5 {
  margin-top: 30px;
}
@media screen and (min-width: 992px) {
  .un_detail h4 + h5 {
    margin-top: 60px;
  }
}
.un_detail h5 {
  padding-bottom: 8px;
  border-bottom: 1px dashed #666;
  font-size: 2.4rem;
  line-height: 1.375;
}
@media screen and (min-width: 992px) {
  .un_detail h5 {
    padding-bottom: 15px;
    font-size: 3.6rem;
    line-height: 1.3888888889;
  }
}
.un_detail h5 + h6 {
  margin-top: 30px;
}
@media screen and (min-width: 992px) {
  .un_detail h5 + h6 {
    margin-top: 60px;
  }
}
.un_detail h6 {
  font-size: 2.2rem;
  line-height: 1.4090909091;
}
@media screen and (min-width: 992px) {
  .un_detail h6 {
    font-size: 3.4rem;
    line-height: 1.4117647059;
  }
}
.un_detail p {
  margin-bottom: 60px;
}
@media screen and (min-width: 992px) {
  .un_detail p {
    margin-bottom: 120px;
  }
}
.un_detail a {
  position: relative;
  color: currentColor;
  text-decoration: underline;
  transition: opacity var(--transition-duration-default) var(--transition-easing-default);
}
@media (hover: hover) {
  .un_detail a:hover {
    opacity: 0.6;
    will-change: opacity;
  }
}
.un_detail a[target=_blank]::after {
  content: "";
  display: inline-block;
  width: 0.833em;
  height: 0.833em;
  margin-left: 5px;
  transform: translateY(2px);
  background: url("/image/icon/icon_external.svg") no-repeat center;
  background-size: 0.833em 0.833em;
}
.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: 1.188em;
  height: 1.563em;
  margin-left: 5px;
  transform: translateY(4px);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.188em 1.563em;
}
.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, .un_detail ol {
  padding-left: 20px;
}
@media screen and (min-width: 992px) {
  .un_detail ul, .un_detail ol {
    padding-left: 40px;
  }
}
.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: 5px;
}
.un_detail ul > li ul, .un_detail ul > li ol, .un_detail ol > li ul, .un_detail ol > li ol {
  margin-top: 5px;
  padding-left: 0;
}
.un_detail ul li {
  padding-left: 1em;
}
.un_detail ul li::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #0085bf;
}
.un_detail ol {
  counter-reset: num;
}
.un_detail ol li {
  padding-left: 1.3em;
}
.un_detail ol li::before {
  counter-increment: num;
  content: counters(num, "-") ".";
  position: absolute;
  top: 0;
  left: 0;
}
.un_detail ol li li {
  padding-left: 2.5em;
}
.un_detail table {
  width: 100%;
  border-top: 1px solid #ccc;
}
.un_detail table th, .un_detail table td {
  display: block;
  padding: 11px 8px;
  font-size: 1.6rem;
  line-height: 1.75;
}
@media screen and (min-width: 992px) {
  .un_detail table th, .un_detail table td {
    display: table-cell;
    padding: 22px 16px;
  }
}
.un_detail table th {
  text-align: left;
  color: var(--color-primary);
  border-bottom: 1px solid #ccc;
  font-weight: 500;
}
@media screen and (min-width: 992px) {
  .un_detail table th {
    position: relative;
    width: 14.4166667%;
  }
}
@media screen and (min-width: 992px) {
  .un_detail table th::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 66.1971831%;
    background-color: #ccc;
  }
}
.un_detail table td {
  border-bottom: 1px solid #ccc;
}
@media screen and (min-width: 992px) {
  .un_detail table td {
    width: 85.5833333%;
  }
}

.un_homeMv {
  position: relative;
}
.un_homeMv_cont {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 320px;
  z-index: 1;
  color: var(--color-white);
  font-weight: 500;
}
@media screen and (min-width: 992px) {
  .un_homeMv_cont {
    max-width: 360px;
  }
}
@media screen and (min-width: 1200px) {
  .un_homeMv_cont {
    max-width: 690px;
  }
}
.un_homeMv_en {
  position: absolute;
  bottom: calc(100% + 43px);
  left: 50%;
  transform: translateX(-50%) rotate(-16deg);
  width: 100%;
  max-width: 207px;
}
@media screen and (min-width: 1200px) {
  .un_homeMv_en {
    bottom: calc(100% + 58px);
    max-width: 346px;
  }
}
.un_homeMv_en img {
  display: block;
  width: 100%;
}
.un_homeMv_ttl {
  text-align: center;
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 1.48;
}
@media screen and (min-width: 992px) {
  .un_homeMv_ttl {
    font-size: 2.9rem;
    line-height: 1.48214286;
  }
}
@media screen and (min-width: 1200px) {
  .un_homeMv_ttl {
    font-size: 5.6rem;
  }
}
.un_homeMv_txt {
  max-width: 290px;
  margin: 24px auto 0;
  font-size: 1.5rem;
  line-height: 1.5333333333;
}
@media screen and (min-width: 992px) {
  .un_homeMv_txt {
    max-width: 100%;
    font-size: 1.9rem;
    line-height: 1.73913043;
  }
}
@media screen and (min-width: 1200px) {
  .un_homeMv_txt {
    font-size: 2.3rem;
  }
}

.un_homeMvSlider {
  width: calc(100% - 20px);
  margin-left: auto;
}
@media screen and (min-width: 992px) {
  .un_homeMvSlider {
    width: calc(100% - 40px);
  }
}
.un_homeMvSlider_arrows {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.un_homeMvSlider_prev, .un_homeMvSlider_next {
  position: absolute;
  top: 50%;
  width: 22px;
  height: 22px;
  background: url("/image/icon/icon_arrow02_white.svg") no-repeat center;
  background-size: 22px 22px;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
  transition: opacity var(--transition-duration-default) var(--transition-easing-default);
}
@media (hover: hover) {
  .un_homeMvSlider_prev:hover, .un_homeMvSlider_next:hover {
    will-change: opacity;
    opacity: 0.6;
  }
}
.un_homeMvSlider_prev {
  right: calc(100% + 15px);
  transform: translateY(-50%) scale(-1, 1);
}
.un_homeMvSlider_next {
  left: calc(100% + 15px);
  transform: translateY(-50%);
}
.un_homeMvSlider .splide__slide picture {
  position: relative;
  aspect-ratio: 355/656;
  width: 100%;
  max-height: 656px;
}
@media screen and (min-width: 992px) {
  .un_homeMvSlider .splide__slide picture {
    aspect-ratio: 1880/980;
    max-height: 980px;
  }
}
.un_homeMvSlider .splide__slide picture::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px 0 0 50px;
  background-color: rgba(0, 0, 0, 0.14);
}
.un_homeMvSlider .splide__slide picture img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50px 0 0 50px;
}
.un_homeMvSlider .splide-controller {
  position: absolute;
  bottom: 55px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
}
@media screen and (min-width: 992px) {
  .un_homeMvSlider .splide-controller {
    bottom: 58px;
    left: 100px;
    transform: translateX(0);
  }
}
.un_homeMvSlider .splide__pagination {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0 19px;
  z-index: 1;
}
.un_homeMvSlider .splide__pagination__page {
  position: relative;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: var(--color-white);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.un_homeMvSlider .splide__pagination__page::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  width: 23px;
  height: 23px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  opacity: 0;
}
.un_homeMvSlider .splide__pagination__page.is-active {
  background-color: #0085bf;
}
.un_homeMvSlider .splide__pagination__page.is-active::before {
  opacity: 1;
}

.un_homeNews {
  position: relative;
  padding: 50px 0 70px;
}
@media screen and (min-width: 992px) {
  .un_homeNews {
    padding: 90px 0;
  }
}
.un_homeNews::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: -1;
  width: calc(100% - 20px);
  height: 100%;
  background-color: #f5fbff;
  border-radius: 0 50px 50px 0;
}
.un_homeNews_btnList {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px 0;
}
@media screen and (min-width: 992px) {
  .un_homeNews_btnList {
    margin-top: 45px;
    flex-direction: row;
    justify-content: center;
    gap: 0 20px;
  }
}

.un_homeContact {
  position: relative;
  padding: 50px 0 70px;
}
@media screen and (min-width: 992px) {
  .un_homeContact {
    padding: 90px 0;
  }
}
.un_homeContact::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  width: calc(100% - 20px);
  height: 100%;
  background: url("/image/contact_bg.png") no-repeat left 25% center;
  background-size: cover;
  border-radius: 50px 0 0 50px;
}
@media screen and (min-width: 992px) {
  .un_homeContact::before {
    width: calc(100% - 40px);
    background-position: center;
  }
}

.un_homeFaq_cont {
  max-width: 1080px;
  margin-inline: auto;
}

@media screen and (min-width: 992px) {
  .un_homeService {
    padding-top: 80px;
  }
}

.un_fixedBtnList {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: calc(100% - 40px);
  display: flex;
  gap: 0 5px;
}
@media screen and (min-width: 992px) {
  .un_fixedBtnList {
    top: 325px;
    right: 0;
    bottom: auto;
    left: auto;
    transform: translateX(0);
    width: 50px;
    flex-direction: column;
    gap: 10px 0;
  }
}
.un_fixedBtnList > li {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .un_fixedBtnList > li {
    width: 100%;
  }
}

.un_fixedBtnItem {
  width: 100%;
  min-height: 50px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 10px;
  background-color: var(--color-white);
  border: 1px solid var(--color-black);
  border-radius: 15px 15px 0 0;
  text-decoration: none;
  transition: opacity var(--transition-duration-default) var(--transition-easing-default);
}
@media screen and (min-width: 992px) {
  .un_fixedBtnItem {
    min-height: 170px;
    padding: 10px;
    gap: 0 5px;
    border-radius: 15px 0 0 15px;
    writing-mode: vertical-rl;
    text-orientation: upright;
  }
}
@media (hover: hover) {
  .un_fixedBtnItem:hover {
    will-change: opacity;
    opacity: 0.6;
  }
}
.un_fixedBtnItem_icon {
  width: 20px;
  flex: 0 0 20px;
}
.un_fixedBtnItem_icon img {
  display: block;
  width: 100%;
}
.un_fixedBtnItem_ttl {
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.375;
}
.un_fixedBtnItem__contact {
  color: var(--color-primary);
  border-color: #0085bf;
}
.un_fixedBtnItem__line {
  color: #06c755;
  border-color: #06c755;
}

.un_scroll {
  display: none;
}
@media screen and (min-width: 992px) {
  .un_scroll {
    display: block;
    position: absolute;
    top: calc(100% - 135px);
    left: 30px;
    transform: rotate(90deg);
    transform-origin: top left;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1.4375;
  }
}
.un_scroll::before {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% + 3px);
  left: calc(100% + 8px);
  transform: translateY(-50%);
  width: 62px;
  height: 1px;
  background-color: #707070;
}
.un_scroll::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% + 0px);
  left: calc(100% + 8px + 56px);
  transform: translateY(-50%) rotate(40deg);
  width: 8px;
  height: 1px;
  background-color: #707070;
}

.ul_alert {
  width: calc(100% - 40px);
  max-width: 1200px;
  margin: 30px auto 0;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 992px) {
  .ul_alert {
    flex-direction: row;
  }
}
.ul_alert_head {
  padding: 15px;
  background-color: var(--color-red);
  color: var(--color-white);
  text-align: center;
  border-radius: 20px 20px 0 0;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.3888888889;
}
@media screen and (min-width: 992px) {
  .ul_alert_head {
    width: 16.6666667%;
    border-radius: 20px 0 0 20px;
    display: grid;
    place-items: center;
  }
}
.ul_alert_body {
  padding: 15px;
  border: 2px solid var(--color-red);
  border-radius: 0 0 20px 20px;
}
@media screen and (min-width: 992px) {
  .ul_alert_body {
    border-radius: 0 20px 20px 0;
    flex: 1;
  }
}

.ul_alertList > li {
  border-bottom: 1px dashed #bfbfbf;
}
.ul_alertList > li:first-child .ul_alertItem {
  padding-top: 0;
}
.ul_alertList > li:last-child {
  border-bottom: none;
}
.ul_alertList > li:last-child .ul_alertItem {
  padding-bottom: 0;
}

.ul_alertItem {
  display: flex;
  flex-direction: column;
  gap: 5px 0;
  padding: 15px 0;
}
@media screen and (min-width: 992px) {
  .ul_alertItem {
    flex-direction: row;
    align-items: flex-start;
    gap: 0 16px;
  }
}
.ul_alertItem_date {
  position: relative;
  padding-left: 1.143em;
  font-size: 1.4rem;
  line-height: 1.3571428571;
}
@media screen and (min-width: 992px) {
  .ul_alertItem_date {
    padding-top: 2px;
    font-size: 1.6rem;
  }
}
.ul_alertItem_date::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 6px;
  height: 8px;
  background-color: var(--color-red);
  clip-path: polygon(100% 50%, 0 0, 0 100%);
}
.ul_alertItem_txt {
  display: inline-block;
  color: var(--color-text);
  transition: opacity var(--transition-duration-default) var(--transition-easing-default);
  font-size: 1.6rem;
  line-height: 1.375;
}
@media screen and (min-width: 992px) {
  .ul_alertItem_txt {
    font-size: 1.8rem;
  }
}
@media (hover: hover) {
  .ul_alertItem_txt:hover {
    will-change: opacity;
    opacity: 0.6;
  }
}

.un_poricy {
  font-size: 1.6rem;
  line-height: 1.75;
}
@media screen and (min-width: 992px) {
  .un_poricy {
    font-size: 1.8rem;
    line-height: 1.7777777778;
  }
}
.un_poricy_txt + ul, .un_poricy_txt + ol {
  margin-top: 30px;
}
@media screen and (min-width: 992px) {
  .un_poricy_txt + ul, .un_poricy_txt + ol {
    margin-top: 50px;
  }
}
.un_poricy_footer {
  margin-top: 70px;
  text-align: right;
}
@media screen and (min-width: 992px) {
  .un_poricy_footer {
    margin-top: 130px;
  }
}
.un_poricy_footer .date {
  font-size: 2rem;
  line-height: 1.2;
}
@media screen and (min-width: 992px) {
  .un_poricy_footer .date {
    font-size: 3.3rem;
    line-height: 1.2121212121;
  }
}
.un_poricy_footer .company {
  font-size: 3rem;
  line-height: 1.3333333333;
}
@media screen and (min-width: 992px) {
  .un_poricy_footer .company {
    font-size: 5rem;
    line-height: 1.34;
  }
}

.un_poricyIntro {
  margin-bottom: 60px;
}
@media screen and (min-width: 992px) {
  .un_poricyIntro {
    margin-bottom: 120px;
  }
}
.un_poricyIntro_txt {
  font-size: 1.8rem;
  line-height: 1.4444444444;
}
@media screen and (min-width: 992px) {
  .un_poricyIntro_txt {
    font-size: 2.2rem;
    line-height: 1.4545454545;
  }
}
.un_poricyIntro_ttl {
  margin: 40px 0 10px;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.4444444444;
}
@media screen and (min-width: 992px) {
  .un_poricyIntro_ttl {
    margin-top: 50px;
    font-size: 2.2rem;
    line-height: 1.4545454545;
  }
}

.un_poricySection *:first-child {
  margin-top: 0 !important;
}
.un_poricySection *:last-child {
  margin-bottom: 0 !important;
}
.un_poricySection + .un_poricySection {
  padding-top: 60px;
}
@media screen and (min-width: 992px) {
  .un_poricySection + .un_poricySection {
    padding-top: 120px;
  }
}
.un_poricySection h2, .un_poricySection h3 {
  margin-bottom: 20px;
}
@media screen and (min-width: 992px) {
  .un_poricySection h2, .un_poricySection h3 {
    margin-bottom: 30px;
  }
}
.un_poricySection h3 {
  margin-top: 40px;
}
@media screen and (min-width: 992px) {
  .un_poricySection h3 {
    margin-top: 80px;
  }
}

.un_contact_txt {
  font-size: 1.6rem;
  line-height: 1.4375;
}
@media screen and (min-width: 992px) {
  .un_contact_txt {
    font-size: 1.8rem;
    line-height: 1.4444444444;
  }
}

.un_sitemap > *:first-child {
  margin-top: 0 !important;
}
.un_sitemap a {
  transition: opacity var(--transition-duration-default) var(--transition-easing-default);
}
@media (hover: hover) {
  .un_sitemap a:hover {
    will-change: opacity;
    opacity: 0.6;
  }
}
.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: #f7f3e2;
  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: #fbf9f6;
}
.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: #0085bf;
  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_notfound {
  min-height: 530px;
  padding: 30px;
  text-align: center;
  color: var(--color-white);
  background: url("/image/notfound_bg.jpg") no-repeat top;
  background-size: cover;
}
@media screen and (min-width: 992px) {
  .un_notfound {
    min-height: 630px;
  }
}
.un_notfound_read {
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.45;
}
@media screen and (min-width: 992px) {
  .un_notfound_read {
    font-size: 3rem;
    line-height: 1.4666666667;
  }
}
.un_notfound_heading {
  margin: 15px 0;
  font-weight: 800;
  font-size: 2.3rem;
  line-height: 1.3913043478;
}
@media screen and (min-width: 992px) {
  .un_notfound_heading {
    margin: 0;
    font-size: 5.8rem;
    line-height: 1.3965517241;
  }
}
.un_notfound_heading .lg {
  font-size: 4.5rem;
}
@media screen and (min-width: 992px) {
  .un_notfound_heading .lg {
    font-size: 12rem;
  }
}
.un_notfound_txt {
  max-width: 500px;
  margin-inline: auto;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.8125;
}
@media screen and (min-width: 992px) {
  .un_notfound_txt {
    max-width: 100%;
    font-size: 1.6rem;
    line-height: 2.5;
  }
}

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

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

.hp_clrBlue {
  color: #0658a4 !important;
}

.hp_clrBlue02 {
  color: #0085bf !important;
}

.hp_clrGreen {
  color: #006633 !important;
}

.hp_fw700 {
  font-weight: 700 !important;
}

.hp_fw500 {
  font-weight: 500 !important;
}

.hp_fw400 {
  font-weight: 400 !important;
}

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