@charset "UTF-8";
*,
:after,
:before {
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
}
body,
html {
  overscroll-behavior: none;
}
body {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-break: strict;
  overflow-wrap: break-word;
  word-break: normal;
}
ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  background: none;
  border: none;
  border-radius: 0;
  color: inherit;
  font: inherit;
  margin: 0;
  padding: 0;
}
button {
  background: none;
  border: none;
  cursor: pointer;
  margin: 0;
  padding: 0;
}
button,
input[type="checkbox"],
input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
a,
button {
  touch-action: manipulation;
}
canvas,
img,
svg,
video {
  display: block;
  height: auto;
  max-width: 100%;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  border: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  margin: 0;
}
:root {
  --vh: 100vh;
  --vh: 100svh;
  --color-main: #f8c80a;
  --color-accent: #21a7a7;
  --color-accent2: #14a0de;
  --color-content: #f2faff;
  --color-white: #fff;
  --color-black: #000;
  --color-blue: #6ad0d3;
  --color-blue02: #17439b;
  --color-pink: #f76c4f;
  --color-yellow: #ffc81b;
  --color-yellow02: #d9a300;
  --color-green: #60bc59;
  --color-light-blue: #e2f9f9;
  --color-light-pink: #fbd5ce;
  --color-light-yellow: #fffce4;
  --color-light-green: #e3f1c9;
  --color-border: #cecece;
  --color-border2: #bfbfbf;
  --color-gray: #666;
  --color-bg-pink: #fff2f2;
  --color-bg-yellow: #fff9e7;
  --color-bg-gradation-vertical: linear-gradient(#e7f5ff, #f8ffef 34.32%, #fffce7 57.7%, #fff2f2 99.3%, #fff2f2);
  --color-bg-gradation-horizontal: linear-gradient(90deg, #FEFBE0, #FFFCE7 50%, #FFF2F2);
  --font-family-base: "M PLUS 1p", sans-serif;
}
html {
  font-size: 62.5%;
}
body {
  color: var(--color-black);
  font-family: var(--font-family-base);
  font-optical-sizing: auto;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.625;
  min-height: var(--vh);
  position: relative;
  z-index: 1;
}
body.is_noScroll {
  overflow: hidden;
}
.ly_container {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: var(--vh);
  padding-top: 60px;
}
.ly_header {
  background-color: var(--color-white);
  height: 60px;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10000;
}
.ly_header_content {
  align-items: center;
  display: flex;
  height: 100%;
  padding: 10px 60px 10px 10px;
  position: relative;
}
.ly_header_logo {
  margin-right: 12px;
  width: 133px;
}
.ly_header_logo img {
  display: block;
  width: 100%;
}
.ly_header_logo + .ly_header_logo02 {
  position: relative;
}
.ly_header_logo + .ly_header_logo02:before {
  background-color: #bebebe;
  content: "";
  display: block;
  height: 32px;
  left: -9px;
  position: absolute;
  top: calc(50% - 16px);
  width: 1px;
}
.ly_header_logo02 {
  margin-left: 9px;
  margin-right: auto;
  width: 97px;
}
.ly_header_logo02 img {
  display: block;
  width: 100%;
}
.ly_header_nav {
  display: none;
}
.ly_header_navList {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.8rem;
  gap: 0.5em 2em;
  justify-content: flex-end;
  line-height: 1.3333333333;
}
.ly_header_navList > li {
  font-weight: 500;
}
.ly_header_navList > li > a {
  align-items: center;
  display: flex;
  gap: 0 3px;
}
.ly_header_navList > li > a .icon {
  display: block;
  margin-top: 2px;
}
.ly_header_navList > li > a .icon img {
  display: block;
  height: 20px;
  width: auto;
}
.ly_menuToggle {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--color-main);
  border-radius: 50%;
  cursor: pointer;
  height: 44px;
  position: fixed;
  right: 10px;
  top: 8px;
  width: 44px;
  z-index: 10001;
}
.ly_menuToggle .line {
  background-color: var(--color-black);
  height: 2px;
  left: calc(50% - 9px);
  position: absolute;
  top: calc(50% - 1px);
  transition: all 0.3s ease-out;
  width: 18px;
}
.ly_menuToggle .line:first-of-type {
  transform: translateY(-4px);
}
.ly_menuToggle .line:nth-of-type(2) {
  background-color: var(--color-black);
}
.ly_menuToggle .line:nth-of-type(3) {
  transform: translateY(4px);
}
.ly_menuToggle.is_open .line:first-of-type {
  transform: rotate(-45deg);
}
.ly_menuToggle.is_open .line:nth-of-type(2) {
  opacity: 0;
}
.ly_menuToggle.is_open .line:nth-of-type(3) {
  transform: rotate(45deg);
}
.ly_menu {
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
  inset: 0;
  opacity: 0;
  overflow-y: auto;
  padding-block: 95px 25px;
  position: fixed;
  transition:
    visibility 0.3s ease-out,
    opacity 0.3s ease-out;
  visibility: hidden;
  z-index: 10000;
}
.ly_menu.is_open {
  opacity: 1;
  visibility: visible;
}
.ly_menu_content {
  width: 100%;
}
.ly_menu_heading {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.3636363636;
  margin-bottom: 36px;
  text-align: center;
}
.ly_menu_search {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-bottom: 26px;
}
.ly_menu_search .el_searchInput {
  max-width: 295px;
}
.ly_menu_selectList > li {
  border-bottom: 1px dotted var(--color-gray);
}
.ly_menu_selectList > li:first-child {
  border-top: 1px dotted var(--color-gray);
}
.ly_menu_select {
  align-items: center;
  display: flex;
  gap: 0 20px;
  height: 57px;
  width: 100%;
}
.ly_menu_select .ttl {
  align-items: center;
  color: var(--color-black);
  display: flex;
  font-size: 1.4rem;
  font-weight: 700;
  gap: 0 8px;
  height: 100%;
  line-height: 1.3571428571;
  width: 90px;
}
.ly_menu_select .icon {
  display: grid;
  place-content: center;
  width: 28px;
}
.ly_menu_select .icon img {
  display: block;
}
.ly_menu_select .select {
  flex: 1;
  height: 100%;
  position: relative;
}
.ly_menu_select .select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 1.6rem;
  inset: 0;
  padding-inline: 8px;
  position: absolute;
}
.ly_menu_select .select:after {
  background: url(/common/img/icons/icon_arrow_triangle_orange02.svg) 50% no-repeat;
  background-size: 100% 100%;
  content: "";
  height: 10px;
  pointer-events: none;
  position: absolute;
  right: 12px;
  top: calc(50% - 5px);
  width: 8px;
}
.ly_menu_txt {
  font-size: 1.3rem;
  line-height: 2;
  margin-top: 25px;
  text-align: center;
}
.ly_menu_txt .num {
  color: var(--color-main);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4444444444;
}
.ly_menu_btnWrap {
  margin-top: 27px;
}
.ly_menu_btnList {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 11px 0;
  margin-top: 70px;
}
.ly_menu_btnList > li {
  max-width: 260px;
  width: 100%;
}
.ly_main,
.ly_mainHead {
  position: relative;
}
.ly_mainHead {
  min-height: 66px;
  padding-block: 17px 17px;
  width: 100%;
  z-index: 1;
}
.ly_mainHead:after {
  background: var(--color-bg-gradation-horizontal);
  content: "";
  display: block;
  inset: 0;
  position: absolute;
  z-index: -1;
}
.ly_mainHead_inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}
.ly_mainHead_ttl {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.4545454545;
}
.ly_breadcrumb {
  background-color: var(--color-white);
  min-height: 12px;
}
.ly_breadcrumb_inner {
  display: none;
}
.ly_breadcrumb_list {
  display: flex;
}
.ly_breadcrumb_list > li {
  display: flex;
  font-size: 1.2rem;
  line-height: 1;
  white-space: nowrap;
}
.ly_breadcrumb_list > li:not(:first-child):before {
  content: ">";
  display: block;
  margin-inline: 1em 1em;
}
.ly_mainContent {
  background: var(--color-bg-gradation-horizontal);
  padding-block: 29px 58px;
}
.ly_mainContent,
.ly_mainContent_centered {
  position: relative;
  z-index: 1;
}
.ly_mainContent_logoBg {
  display: block;
  opacity: 0;
  position: absolute;
  right: calc(100% + 61px);
  top: 0;
  transition:
    visibility 0.3s ease-out,
    opacity 0.3s ease-out;
  visibility: hidden;
  width: 172px;
  z-index: -1;
}
.ly_mainContent_logoBg img {
  display: block;
  width: 100%;
}
.ly_footer {
  border-top: 1px solid var(--color-border2);
  position: relative;
}
.ly_footer_wrap {
  margin-top: auto;
  position: relative;
  z-index: 100;
}
.ly_footer_content {
  padding-block: 95px 67px;
}
.ly_footer_navList {
  margin-bottom: 51px;
}
.ly_footer_navList > li {
  font-size: 1.6rem;
  line-height: 1.625;
  width: 100%;
}
.ly_footer_navList > li > a {
  align-items: center;
  border-bottom: 1px dotted var(--color-gray);
  display: flex;
  justify-content: center;
  padding: 11px 8px;
  transition: opacity 0.3s ease-out;
}
.ly_footer_navList > li:first-child > a {
  border-top: 1px dotted var(--color-gray);
}
.ly_footer_logoList {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 5px 0;
  margin-top: 51px;
}
.ly_footer_logoList img {
  display: block;
}
.ly_footer_copyright {
  background-color: var(--color-main);
  padding: 20px;
  text-align: center;
}
.ly_footer_copyright small,
.ly_pageTop {
  font-size: 1.4rem;
  line-height: 1.3571428571;
}
.ly_pageTop {
  left: calc(50% - 60px);
  position: absolute;
  top: -59px;
}
.ly_pageTop_link {
  align-items: center;
  background-color: var(--color-black);
  border-radius: 50%;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  font-weight: 500;
  height: 120px;
  justify-content: center;
  padding-bottom: 5px;
  width: 120px;
}
.ly_pageTop_link:before {
  background: url(/common/img/icons/icon_arrow_pagetop.svg) 50% no-repeat;
  background-size: 100% 100%;
  content: "";
  display: block;
  height: 13px;
  margin-bottom: 13px;
  width: 15px;
}
.ly_centered {
  margin-inline: auto auto;
  max-width: 1200px;
  width: calc(100% - 40px);
}
.ly_centered__w1260 {
  max-width: 1260px;
}
.ly_centered__w1320 {
  max-width: 1320px;
}
.ly_content_side {
  display: none;
}
.bl_section {
  padding-block: 0 36px;
}
.bl_section02 {
  padding-block: 39px 36px;
}
.bl_sectionItem:not(:last-child) {
  padding-bottom: 56px;
}
.bl_sectionItem02:not(:last-child) {
  padding-bottom: 76px;
}
.bl_inner {
  margin-inline: auto;
  max-width: 900px;
}
.bl_inner__w742 {
  max-width: 742px;
}
.bl_columns {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}
.bl_columns:not(:first-child) {
  margin-top: 50px;
}
.bl_columns:not(:last-child) {
  margin-bottom: 50px;
}
.bl_newsList {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}
.bl_newsItem {
  background-color: #fffef8;
  border: 1px solid var(--color-border2);
  border-radius: 5px;
  display: block;
  padding: 18px 55px 18px 20px;
  position: relative;
}
.bl_newsItem:after {
  background: url(/common/img/icons/icon_arrow02_orange.svg) 50% no-repeat;
  background-size: 100% 100%;
  content: "";
  display: block;
  height: 19px;
  position: absolute;
  right: 26px;
  top: calc(50% - 10px);
  width: 11px;
}
.bl_newsItem_date {
  align-items: center;
  display: flex;
  font-size: 1.6rem;
  line-height: 1.3125;
  margin-bottom: 8px;
}
.bl_newsItem_date .icon {
  align-items: center;
  background-color: #f8bc00;
  border-radius: 3px;
  color: var(--color-white);
  display: inline-flex;
  font-size: 1rem;
  font-weight: 500;
  justify-content: center;
  line-height: 1;
  margin: -1px 16px 0;
  padding: 5px 4px 6px;
}
.bl_newsItem_txtWrap {
  color: var(--color-blue02);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
}
.bl_newsList02 {
  border-top: 1px solid var(--color-border2);
}
.bl_newsList02 > li {
  border-bottom: 1px solid var(--color-border2);
}
.bl_newsItem02 {
  display: block;
  padding: 14px 55px 19px 16px;
  position: relative;
  z-index: 1;
}
.bl_newsItem02:after,
.bl_newsItem02:before {
  content: "";
  display: block;
  position: absolute;
}
.bl_newsItem02:before {
  background-color: rgba(191, 228, 188, 0.09);
  height: calc(100% - 4px);
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: -1;
}
.bl_newsItem02:after {
  background: url(/common/img/icons/icon_arrow_triangle_green.svg) 50% no-repeat;
  background-size: 100% 100%;
  content: "";
  display: block;
  height: 12px;
  right: 22px;
  top: calc(50% - 6px);
  width: 10px;
}
.bl_newsItem02_date {
  font-size: 1.6rem;
  line-height: 1.3125;
  margin-bottom: 8px;
}
.bl_newsItem02_txtWrap {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
}
.bl_figure {
  align-items: center;
  display: flex;
  flex-direction: column;
}
.bl_figure:not(:first-child) {
  margin-top: 50px;
}
.bl_figure:not(:last-child) {
  margin-bottom: 50px;
}
.bl_figure img {
  display: block;
  max-width: 100%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.bl_figure > figcaption,
.bl_figure > p,
.bl_figure_caption {
  font-size: 1.2rem;
  line-height: 1.6666666667;
}
.bl_figure > figcaption:not(:first-child),
.bl_figure > p:not(:first-child),
.bl_figure_caption:not(:first-child) {
  margin-top: 10px;
}
.bl_figure > figcaption:not(:last-child),
.bl_figure > p:not(:last-child),
.bl_figure_caption:not(:last-child) {
  margin-bottom: 10px;
}
.bl_box {
  background-color: var(--color-content);
  padding: 19px 16px;
}
.bl_box_heading {
  color: #0085bf;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.3333333333;
  margin-bottom: 21px;
}
.bl_box02 {
  background-color: #fff7f7;
  border-radius: 20px;
  padding: 25px 15px 32px;
}
.bl_box02:not(:first-child) {
  margin-top: 30px;
}
.bl_box02:not(:last-child) {
  margin-bottom: 30px;
}
.bl_box02__02 {
  padding: 32px 15px;
}
.bl_contentBox {
  background-color: var(--color-white);
  border-radius: 20px;
  padding: 20px 15px 59px;
}
.bl_contentBox__02 {
  padding-top: 19px;
}
.bl_stepList {
  display: grid;
  gap: 0 15px;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  margin-bottom: 25px;
  margin-inline: auto;
  width: calc(100% - 40px);
}
.bl_stepList > li {
  align-items: center;
  background-color: var(--color-white);
  border: 1px solid var(--color-border2);
  border-radius: 7px;
  color: var(--color-black);
  display: flex;
  flex-direction: column;
  font-size: 1.3rem;
  font-weight: 400;
  justify-content: center;
  line-height: 1.3076923077;
  min-height: 55px;
  padding: 9px 4px;
  position: relative;
  text-align: center;
}
.bl_stepList > li.is_active {
  background-color: var(--color-accent2);
  border-color: var(--color-accent2);
  color: var(--color-white);
}
.bl_stepList > li .pcOnly {
  display: none;
}
.bl_stepList > li:not(:last-child):after {
  background-color: var(--color-border2);
  content: "";
  display: block;
  height: 1px;
  left: 100%;
  position: absolute;
  top: calc(50% - 1px);
  width: 100%;
}
.bl_contactList {
  display: flex;
  flex-direction: column;
  font-size: 1.8rem;
  gap: 14px 0;
  line-height: 1.3333333333;
}
.bl_contactList > dd + dt {
  margin-top: 16px;
}
.bl_contactList__confirm > dd {
  color: #707070;
  font-weight: 700;
}
.bl_bnrList {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 20px 0;
  margin-inline: auto;
  max-width: 265px;
  width: calc(100% - 40px);
}
.bl_bnrList:not(:first-child) {
  margin-top: 30px;
}
.bl_bnrList:not(:last-child) {
  margin-bottom: 30px;
}
.bl_bnrList > li img {
  display: block;
  width: 100%;
}
.bl_bnrList_wrap {
  border-bottom: 1px solid var(--color-border2);
  border-top: 1px solid var(--color-border2);
  padding-block: 15px 15px;
}
.bl_table {
  width: 100%;
}
.bl_table td,
.bl_table th,
.bl_table tr {
  display: block;
}
.bl_table th {
  background-color: var(--color-light-yellow);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2.4;
  padding: 10px 13px;
  text-align: left;
  vertical-align: top;
}
.bl_table td {
  font-size: 1.4rem;
  line-height: 2.5714285714;
  padding: 17px 6px 26px;
}
.bl_table__blue th {
  background-color: var(--color-content);
}
.bl_table__pink th {
  background-color: #fff7f7;
}
.bl_richTxt {
  font-size: 1.4rem;
  line-height: 1.7857142857;
}
.bl_richTxt h2 {
  color: #17439b;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 28px;
}
.bl_richTxt h2:not(:first-child) {
  margin-top: 28px;
}
.bl_richTxt h3:not(.bl_box_heading) {
  color: var(--color-accent2);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.3333333333;
  margin-bottom: 21px;
}
.bl_richTxt h3:not(.bl_box_heading):not(:first-child) {
  margin-top: 28px;
}
.bl_richTxt h4 {
  border-bottom: 1px solid var(--color-border2);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.3125;
  margin-bottom: 21px;
  padding-bottom: 6px;
}
.bl_richTxt h4:not(:first-child) {
  margin-top: 28px;
}
.bl_richTxt h5 {
  border-bottom: 1px dashed #666;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.3571428571;
  margin-bottom: 21px;
  padding-bottom: 10px;
}
.bl_richTxt h5:not(:first-child) {
  margin-top: 28px;
}
.bl_richTxt p:not(.bl_figure_caption) {
  font-size: 1.4rem;
  line-height: 1.7857142857;
}
.bl_richTxt p:not(.bl_figure_caption):not(:first-child) {
  margin-top: 18px;
}
.bl_richTxt p:not(.bl_figure_caption):not(:last-child) {
  margin-bottom: 18px;
}
.bl_richTxt ol:not(:first-child),
.bl_richTxt ul:not(:first-child) {
  margin-top: 18px;
}
.bl_richTxt ol:not(:last-child),
.bl_richTxt ul:not(:last-child) {
  margin-bottom: 18px;
}
.bl_richTxt ol > li,
.bl_richTxt ul > li {
  font-size: 1.4rem;
  line-height: 1.7857142857;
  position: relative;
}
.bl_richTxt ol > li:before,
.bl_richTxt ul > li:before {
  content: "";
  display: block;
  left: 0;
  position: absolute;
  top: 0;
}
.bl_richTxt ol > li:not(:last-child),
.bl_richTxt ul > li:not(:last-child) {
  margin-bottom: 0.667em;
}
.bl_richTxt ol {
  counter-reset: count 0;
}
.bl_richTxt ol > li {
  padding-left: 1.5em;
}
.bl_richTxt ol > li:before {
  content: counter(count) ". ";
  counter-increment: count 1;
}
.bl_richTxt ul > li {
  padding-left: 1em;
}
.bl_richTxt ul > li:before {
  background-color: #0085bf;
  border-radius: 50%;
  height: 8px;
  top: 9px;
  width: 8px;
}
.bl_richTxt table:not(:first-child) {
  margin-top: 50px;
}
.bl_richTxt table:not(:last-child) {
  margin-bottom: 50px;
}
.bl_richTxt table td,
.bl_richTxt table th {
  border: 1px solid var(--color-border2);
}
.bl_richTxt table th {
  background-color: var(--color-content);
  color: #0085bf;
  font-weight: 500;
  padding: 13px 18px;
  text-align: left;
}
.bl_richTxt table td {
  padding: 18px 13px;
}
.bl_richTxt a:not(.bl_figure a):not(.bl_column a) {
  color: var(--color-blue02);
  text-decoration: underline;
  transition: opacity 0.3s ease-out;
}
.bl_jobItems {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}
.bl_jobItem {
  background-color: var(--color-white);
  border-radius: 20px;
  padding: 19px 18px 34px;
}
.bl_jobItem_no {
  font-size: 1.3rem;
  line-height: 1.3076923077;
  margin-bottom: 17px;
  text-align: right;
}
.bl_jobItem_heading {
  border-bottom: 1px solid var(--color-gray);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.35;
  margin-bottom: 12px;
  padding-bottom: 12px;
}
.bl_jobItem_media {
  display: flex;
  flex-direction: column;
  gap: 30px 31px;
}
.bl_jobItem_imgWrap img {
  display: block;
  width: 100%;
}
.bl_jobItem_details {
  font-size: 1.6rem;
  line-height: 1.625;
  width: 100%;
}
.bl_jobItem_details tr {
  border-bottom: 1px dotted var(--color-gray);
}
.bl_jobItem_details tr:first-child td,
.bl_jobItem_details tr:first-child th {
  padding-top: 0;
}
.bl_jobItem_details td,
.bl_jobItem_details th {
  padding-block: 9px 9px;
}
.bl_jobItem_details th {
  font-weight: 400;
  text-align: left;
  vertical-align: top;
  width: 120px;
}
.bl_jobItem_details th .head {
  align-items: center;
  display: flex;
  gap: 0 11px;
  height: 100%;
}
.bl_jobItem_details th .head .icon {
  align-items: center;
  display: flex;
  justify-content: center;
  width: 20px;
}
.bl_jobItem_details th .head .icon img {
  display: block;
}
.bl_jobItem_details th .head .txt {
  flex: 1;
}
.bl_jobItem_cont02 {
  margin-top: 39px;
}
.bl_jobItem_ttl {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.3125;
  margin-bottom: 27px;
  padding-bottom: 15px;
  position: relative;
}
.bl_jobItem_ttl:after {
  background-color: var(--color-main);
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left: 0;
  position: absolute;
  width: 64px;
}
.bl_jobItem_txtWrap {
  font-size: 1.4rem;
  line-height: 2;
}
.bl_jobItem_tags {
  margin-top: 38px;
}
.bl_jobItem_foot {
  display: flex;
  gap: 0 10px;
  margin-top: 40px;
}
.bl_jobItem_favorite {
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 60px;
  display: flex;
  height: 60px;
  justify-content: center;
  min-width: 60px;
  padding-top: 1px;
  width: 60px;
}
.bl_jobItem_favorite:before {
  background: url(/common/img/icons/icon_heart_stroke.svg) 50% no-repeat;
  background-size: 100% 100%;
  content: "";
  display: block;
  height: 23px;
  width: 24px;
}
.bl_linkCards {
  display: flex;
  flex-direction: column;
  gap: 25px 0;
}
.bl_linkCard {
  width: 100%;
}
.bl_linkCard_link {
  border: 1px solid #c5c5c5;
  display: block;
}
.bl_linkCard_imgWrap {
  background-color: var(--color-white);
  border-bottom: 1px solid #c5c5c5;
  padding: 10px;
}
.bl_linkCard_imgWrap img {
  aspect-ratio: 330/220;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}
.bl_linkCard_body {
  padding: 10px;
}
.bl_linkCard_ttl {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.3333333333;
  margin-block: 16px 16px;
  padding-left: 21px;
  position: relative;
}
.bl_linkCard_ttl:before {
  background: var(--color-white) url(/common/img/icons/icon_arrow_circle.svg) center no-repeat;
  background-size: calc(100% + 2px);
  border-radius: 50%;
  content: "";
  display: block;
  height: 15px;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 3px;
  width: 15px;
}
.bl_linkCard_txt {
  background-color: #f5fbff;
  font-size: 1.5rem;
  line-height: 1.3333333333;
  margin-top: 26px;
  padding: 12px;
}
.bl_searchBox {
  background-color: var(--color-white);
  border-radius: 23px;
  padding: 34px 7.89473684% 38px;
}
.bl_searchBox_head {
  align-items: flex-end;
  display: flex;
  gap: 8px 8px;
  margin-bottom: 22px;
}
.bl_searchBox_ttl {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.3333333333;
}
.bl_searchBox_link {
  color: var(--color-blue02);
  font-size: 1.5rem;
  line-height: 1.3333333333;
  margin-left: auto;
  transition: opacity 0.3s ease-out;
}
.bl_searchBox_list {
  display: flex;
  flex-direction: column;
  gap: 12px 0;
  margin-bottom: 14px;
}
.bl_searchBox_txt {
  font-size: 1.5rem;
  line-height: 2.1333333333;
  margin-block: 14px 20px;
  text-align: center;
}
.bl_searchBox_txt .num {
  color: var(--color-yellow02);
  display: inline-block;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.4545454545;
}
.bl_searchBox_btnWrap {
  margin-top: 20px;
}
.bl_searchBox_btnWrap .el_btn {
  min-width: 220px;
}
.bl_pagination {
  display: flex;
  justify-content: flex-end;
}
.bl_pagination_list {
  align-items: center;
  display: flex;
  gap: 7px;
}
.bl_pagination_list > li a,
.bl_pagination_list > li span {
  display: grid;
  place-content: center;
}
.bl_pagination .current,
.bl_pagination .link {
  border-radius: 50%;
  height: 32px;
  min-width: 32px;
  width: 32px;
}
.bl_pagination .link {
  background-color: var(--color-white);
  color: var(--color-black);
}
.bl_pagination .current {
  background-color: var(--color-main);
  color: var(--color-white);
}
.bl_pagination .first,
.bl_pagination .last,
.bl_pagination .next,
.bl_pagination .prev {
  background-position: 50%;
  background-repeat: no-repeat;
  height: 32px;
  width: 17px;
}
.bl_pagination .first,
.bl_pagination .prev {
  transform: scaleX(-1);
}
.bl_pagination .prev {
  margin-right: 7px;
}
.bl_pagination .next {
  margin-left: 7px;
}
.bl_pagination .next,
.bl_pagination .prev {
  background-image: url(/common/img/icons/icon_arrow02.svg);
  background-size: 10px 18px;
}
.bl_pagination .first,
.bl_pagination .last {
  background-image: url(/common/img/icons/icon_arrow02_double.svg);
  background-size: 16px 18px;
}
.bl_fixedLinks {
  background-color: hsla(0, 0%, 100%, 0.75);
  bottom: 0;
  left: 0;
  padding: 7px 16px;
  position: fixed;
  width: 100%;
  z-index: 9999;
}
.bl_fixedLinks,
.bl_fixedLinks_list {
  align-items: center;
  display: flex;
  justify-content: center;
}
.bl_fixedLinks_list {
  gap: 0 10px;
}
.bl_fixedLinks_list > li button,
.bl_fixedLinks_list > li img {
  display: block;
}
.bl_fixedLinks_search {
  min-width: 76px;
  width: 76px;
}
.bl_mediaBoxes {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 19px;
}
.bl_mediaBox {
  align-items: center;
  display: flex;
  flex-direction: column;
  text-align: center;
  width: calc(50% - 9.5px);
}
.bl_mediaBox_imgWrap {
  aspect-ratio: 1/1;
  background-color: var(--color-white);
  border-radius: 50%;
  display: grid;
  margin-bottom: 8px;
  place-items: center;
  width: 158px;
}
.bl_mediaBox_imgWrap img {
  display: block;
  height: 70px;
  margin-inline: auto;
  width: 66px;
}
.bl_mediaBox_ttl {
  color: var(--color-black);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.3333333333;
}
.bl_mediaBox_txtWrap {
  margin-top: 10px;
}
.bl_mediaBox_txtWrap > p {
  font-size: 1.3rem;
  line-height: 1.3846153846;
  text-align: left;
}
.bl_jobCard {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  color: var(--color-black);
  height: 100%;
  margin-bottom: 6px;
  padding: 18px 17px 29px;
  width: 100%;
}
.bl_jobCard_imgWrap {
  margin-bottom: 10px;
}
.bl_jobCard_imgWrap img {
  aspect-ratio: 246/168;
  display: block;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}
.bl_jobCard_ttl {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.375;
  margin-bottom: 17px;
}
.bl_jobCard_details {
  font-size: 1.2rem;
  line-height: 1.8333333333;
  width: 100%;
}
.bl_jobCard_details tr {
  border-bottom: 1px dotted var(--color-gray);
}
.bl_jobCard_details tr:first-child td,
.bl_jobCard_details tr:first-child th {
  padding-top: 0;
}
.bl_jobCard_details td,
.bl_jobCard_details th {
  padding-block: 6px 6px;
}
.bl_jobCard_details th {
  font-weight: 400;
  text-align: left;
  vertical-align: top;
  width: 80px;
}
.bl_jobCard_details th .head {
  align-items: center;
  display: flex;
  gap: 0 7px;
  height: 100%;
}
.bl_jobCard_details th .head .icon {
  align-items: center;
  display: flex;
  justify-content: center;
  width: 15px;
}
.bl_jobCard_details th .head .icon img {
  display: block;
}
.bl_jobCard_details th .head .txt {
  flex: 1;
}
.bl_articleCard {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  color: var(--color-black);
  height: 100%;
  padding: 18px 17px 16px;
  width: 100%;
}
.bl_articleCard_imgWrap {
  margin-bottom: 10px;
}
.bl_articleCard_imgWrap img {
  aspect-ratio: 246/168;
  display: block;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}
.bl_articleCard_ttl {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.375;
  margin-bottom: 17px;
}
.bl_articleCard_txt {
  font-size: 1.2rem;
  line-height: 2;
  margin-bottom: 18px;
  padding-bottom: 18px;
  position: relative;
}
.bl_articleCard_txt:after {
  background-color: var(--color-pink);
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left: 0;
  position: absolute;
  width: 43px;
}
.bl_slider_wrap {
  margin-right: -20px;
}
.bl_slider .splide__slide {
  padding-bottom: 6px;
}
.bl_slider02_wrap {
  margin-right: -20px;
}
.bl_slider02 .splide__slide {
  padding-bottom: 6px;
}
.bl_slider02 .splide__controller {
  align-items: center;
  display: flex;
  gap: 0 24px;
  margin-top: 32px;
  padding-right: 20px;
}
.bl_slider02 .splide__arrows {
  align-items: center;
  display: flex;
  gap: 0 33px;
  position: relative;
  top: 0;
}
.bl_slider02 .splide__arrow {
  background: url(/common/img/top/slider_arrow.svg) 50% no-repeat;
  background-size: 100% 100%;
  border-radius: 0;
  height: 39px;
  left: auto;
  opacity: 1;
  position: relative;
  right: auto;
  top: auto;
  transform: none;
  width: 48px;
}
.bl_slider02 .splide__arrow:hover {
  opacity: 1;
}
.bl_slider02 .splide__arrow--prev {
  transform: scaleX(-1);
}
.bl_slider02_progress {
  margin-top: -21px;
  padding-left: 152px;
}
.bl_slider02_progress .splide__progress {
  background-color: var(--color-gray);
  flex: 1;
  height: 3px;
}
.bl_slider02_progress .splide__progress-bar {
  background-color: var(--color-white);
  height: 3px;
  transition: width 0.3s ease;
}
.bl_bnrSlider {
  position: relative;
}
.bl_bnrSlider_wrap {
  margin-right: -20px;
}
.bl_bnrSlider .splide__arrow:after {
  background: url(/common/img/icons/icon_arrow02_white.svg) 50% no-repeat;
  background-size: 100% 100%;
  content: "";
  display: block;
  height: 11px;
  width: 6px;
}
.bl_bnrSlider .splide__arrow:hover {
  opacity: 1;
}
.bl_notice {
  background-color: var(--color-white);
  border: 2px solid #e60011;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.bl_notice_wrap {
  margin-bottom: 18px;
}
.bl_notice_ttl {
  align-items: center;
  background-color: #e60011;
  color: var(--color-white);
  display: flex;
  font-size: 1.8rem;
  font-weight: 500;
  justify-content: center;
  line-height: 1.3333333333;
  padding: 5px 37px;
}
.bl_notice_content {
  padding: 4px 20px;
}
.bl_notice_list > li:not(:last-child) {
  border-bottom: 1px dotted var(--color-border2);
}
.bl_noticeItem {
  display: flex;
  flex-direction: column;
  gap: 4px 27px;
  padding: 10px 0 10px 21px;
  position: relative;
}
.bl_noticeItem:before {
  background: url(/common/img/icons/icon_notice.svg) 50% no-repeat;
  background-size: 100% 100%;
  content: "";
  display: block;
  height: 8px;
  left: 3px;
  position: absolute;
  top: calc(50% - 4px);
  width: 7px;
}
.bl_noticeItem_date {
  color: #707070;
  font-size: 1.4rem;
  line-height: 1.3571428571;
}
.bl_noticeItem_txt {
  font-size: 1.6rem;
  line-height: 1.3125;
}
a.bl_noticeItem .bl_noticeItem_txt {
  text-decoration: underline;
  transition: opacity 0.3s ease-out;
}
.el_heading {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-bottom: 30px;
}
.el_heading_wrap {
  padding-bottom: 4px;
  position: relative;
}
.el_heading_wrap:after {
  background-color: var(--color-bg);
  border-radius: 10px;
  bottom: 0;
  content: "";
  display: block;
  height: 4px;
  left: 0;
  position: absolute;
  width: 100%;
}
.el_heading_wrap .el_btn {
  display: none;
}
.el_heading02 {
  align-items: center;
  background-color: #fcF8cc;
  border-radius: 30px;
  display: flex;
  font-size: 1.8rem;
  font-weight: 400;
  justify-content: center;
  line-height: 1.3333333333;
  margin-bottom: 39px;
  min-height: 50%;
  padding: 13px;
  width: 100%;
}
.el_heading02__green {
  background-color: #e3f3f3;
}
.el_heading02__blue {
  background-color: var(--color-content);
}
.el_heading02__pink {
  background-color: #fff7f7;
}
.el_heading03 {
  align-items: center;
  display: flex;
  flex-direction: column;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 20px;
}
.el_heading03:after {
  color: var(--color-yellow02);
  content: attr(data-sub);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.3333333333;
  margin-top: 5px;
}
.el_heading03_wrap {
  align-items: flex-end;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.el_heading03_wrap .el_heading03 {
  margin-bottom: 0 !important;
}
.el_heading03_linkWrap {
  border-left: 1px solid #ccc;
  font-size: 1.4rem;
  line-height: 1.3571428571;
  margin-bottom: 3px;
  padding-left: 10px;
}
.el_heading03_link {
  color: var(--color-main);
  display: inline-block;
  font-weight: 500;
  padding-right: 34px;
  position: relative;
  text-decoration: underline;
  transition: opacity 0.3s ease-out;
}
.el_heading03_link:after {
  background: url(/common/img/icons/icon_arrow.svg) 50% no-repeat;
  background-size: 100% 100%;
  content: "";
  display: block;
  height: 8px;
  position: absolute;
  right: 0;
  top: calc(50% - 4px);
  width: 14px;
}
.el_heading03__horizontal {
  flex-direction: row;
  gap: 0 30px;
}
.el_heading03__blue:after {
  color: var(--color-accent);
}
.el_heading03__orange:after {
  color: var(--color-pink);
}
.el_heading03__yellow:after {
  color: var(--color-yellow02);
}
.el_heading03__green:after {
  color: var(--color-green);
}
.el_btn {
  background-color: var(--color-main);
  border: 1px solid var(--color-main);
  border-radius: 60px;
  color: var(--color-white);
  font-size: 1.8rem;
  gap: 0 16px;
  line-height: 1.3333333333;
  max-width: 100%;
  min-height: 60px;
  min-width: 240px;
  padding: 15px;
  transition:
    color 0.3s ease-out,
    border-color 0.3s ease-out,
    background-color 0.3s ease-out;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.el_btn,
.el_btn_wrap {
  align-items: center;
  display: flex;
  justify-content: center;
}
.el_btn_wrap {
  flex-direction: column;
  flex-wrap: wrap;
  gap: 21px 20px;
  margin-top: 49px;
}
.el_btn_wrap__02 {
  flex-direction: row;
}
.el_btn_icon {
  height: 16px;
  min-width: 16px;
  width: 16px;
}
.el_btn_icon img {
  display: block;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
}
.el_btn__02 {
  background-color: var(--color-white);
  border-color: var(--color-border2);
  color: var(--color-black);
}
.el_btn__w280 {
  min-width: 280px;
}
.el_btn__small {
  font-size: 1.6rem;
  line-height: 1.5;
}
.el_btn__full {
  width: 100%;
}
.el_btn__green {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
}
.el_btn__blue {
  background-color: var(--color-accent2);
  border-color: var(--color-accent2);
}
.el_btn__pink {
  background-color: var(--color-pink);
  border-color: var(--color-pink);
}
.el_btn02 {
  align-items: center;
  background: linear-gradient(90deg, #17439b, #14a0de);
  border-radius: 60px;
  color: var(--color-white);
  display: flex;
  font-size: 1.6rem;
  justify-content: center;
  line-height: 1.3125;
  max-width: 100%;
  min-height: 60px;
  min-width: 230px;
  overflow: hidden;
  padding: 15px;
  position: relative;
  transition: color 0.3s ease-out;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  z-index: 1;
}
.el_btn02:after {
  background: linear-gradient(90deg, #cbcbcb, #edecec);
  content: "";
  display: block;
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 0.3s ease-out;
  z-index: -1;
}
.el_btn02_inner {
  padding-right: 28px;
  position: relative;
}
.el_btn02_inner:after {
  background: url(/common/img/icons/icon_arrow_white.svg) 50% no-repeat;
  background-size: 100% 100%;
  content: "";
  display: block;
  height: 9px;
  position: absolute;
  right: 0;
  top: calc(50% - 4px);
  transition: background-image 0.3s ease-out;
  width: 14px;
}
.el_btn03 {
  align-items: center;
  background-color: var(--color-white);
  border: 1px solid var(--color-blue);
  border-radius: 60px;
  color: #076d70;
  display: flex;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.3125;
  max-width: 100%;
  min-height: 60px;
  min-width: 260px;
  padding: 16px 41px 16px 27px;
  position: relative;
  transition: background-color 0.3s ease-out;
  width: 100%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.el_btn03:after {
  background: url(/common/img/icons/icon_arrow_blue.svg) 50% no-repeat;
  background-size: 100% 100%;
  content: "";
  display: block;
  height: 9px;
  position: absolute;
  right: 22px;
  top: calc(50% - 5px);
  width: 14px;
}
.el_btn03__02 {
  background-color: var(--color-main);
  border: none;
  color: var(--color-black);
  max-width: 232px;
  min-width: auto;
  padding: 17px 42px 17px 28px;
  width: 100%;
}
.el_btn03__02:after {
  background-image: url(/common/img/icons/icon_arrow_black.svg);
}
.el_btn03__blue {
  border-color: var(--color-blue);
  color: #076d70;
}
.el_btn03__blue:after {
  background-image: url(/common/img/icons/icon_arrow_blue.svg);
}
.el_btn03__pink {
  border-color: #fcc4b8;
  color: #630;
}
.el_btn03__pink:after {
  background-image: url(/common/img/icons/icon_arrow_pink.svg);
}
.el_btn03__orange {
  border-color: #fce499;
  color: #630;
}
.el_btn03__orange:after {
  background-image: url(/common/img/icons/icon_arrow_orange.svg);
}
.el_btn03__green {
  border-color: #bfe4bc;
  color: #008c46;
}
.el_btn03__green:after {
  background-image: url(/common/img/icons/icon_arrow_green.svg);
}
.el_select {
  height: 45px;
  position: relative;
  width: 100%;
}
.el_select:after {
  background: url(/common/img/icons/icon_select_gray.svg) 50% no-repeat;
  content: "";
  display: block;
  height: 8px;
  pointer-events: none;
  position: absolute;
  right: 21px;
  top: calc(50% - 4px);
  width: 10px;
}
.el_select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--color-white);
  border: 1px solid var(--color-border2);
  border-radius: 5px;
  font-size: 1.6rem;
  height: 45px;
  inset: 0;
  padding-inline: 1em;
  position: absolute;
  width: 100%;
}
.el_select02 {
  border-bottom: 1px solid var(--color-gray);
  min-width: 130px;
  padding-bottom: 8px;
  position: relative;
  width: 130px;
}
.el_select02:after {
  background: url(/common/img/icons/icon_select_orange.svg) 50% no-repeat;
  content: "";
  display: block;
  height: 8px;
  pointer-events: none;
  position: absolute;
  right: 3px;
  top: 8px;
  width: 10px;
}
.el_select02 select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  font-size: 1.6rem;
  padding-inline: 4px 24px;
  width: 100%;
}
.el_input {
  background-color: var(--color-white);
  background-position: center right 17px;
  background-repeat: no-repeat;
  border: 1px solid var(--color-border2);
  border-radius: 5px;
  font-size: 1.6rem;
  height: 45px;
  padding-inline: 1em 60px;
  width: 100%;
}
.el_input__date {
  background-image: url(/common/img/icons/icon_calendar.svg);
  background-size: 20px 20px;
}
.el_state {
  align-items: center;
  background-color: var(--color-white);
  border: 1px solid #bdbdbd;
  border-radius: 4px;
  color: var(--color-black);
  display: inline-flex;
  font-size: 1.3rem;
  font-weight: 400;
  height: 20px;
  justify-content: center;
  line-height: 1.5384615385;
  margin-right: 7px;
  vertical-align: 0.154em;
  width: 40px;
}
.el_state__required {
  background-color: #ff4d4d;
  border-color: #ff4d4d;
  color: var(--color-white);
}
.el_checkbox {
  background-color: var(--color-white);
  border: 1px solid var(--color-border2);
  height: 20px;
  min-width: 20px;
  position: relative;
  width: 20px;
}
.el_checkbox:after {
  border-bottom: 2px solid var(--color-black);
  border-right: 2px solid var(--color-black);
  content: "";
  display: block;
  height: 12px;
  left: 2px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: rotate(35deg) skewY(16deg) translateY(-50%);
  transform-origin: center right;
  width: 5px;
}
.el_checkbox:has([type="checkbox"]:checked):after {
  opacity: 1;
}
.el_checkbox_wrap {
  align-items: center;
  background-color: #e7f5ff;
  border: 1px solid var(--color-border2);
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  font-size: 1.6rem;
  gap: 0 13px;
  line-height: 1.625;
  min-height: 45px;
  padding: 4px 1em 5px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.el_indentList:not(:first-child) {
  margin-top: 10px;
}
.el_indentList:not(:last-child) {
  margin-bottom: 10px;
}
.el_indentList > li {
  font-size: 1.3rem;
  line-height: 1.5384615385;
  padding-left: 1em;
  text-indent: -1em;
}
.el_searchInput {
  background-color: var(--color-light-yellow);
  border-radius: 41px;
  height: 60px;
  padding: 0 27px;
  width: 100%;
}
.el_searchInput::-moz-placeholder {
  color: #777;
}
.el_searchInput::placeholder {
  color: #777;
}
.el_searchSelect {
  height: 60px;
  position: relative;
  width: 100%;
}
.el_searchSelect:after {
  background: url(/common/img/icons/icon_select_orange.svg) 50% no-repeat;
  content: "";
  display: block;
  height: 8px;
  pointer-events: none;
  position: absolute;
  right: 29px;
  top: calc(50% - 4px);
  width: 10px;
}
.el_searchSelect select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--color-bg-yellow);
  border-radius: 41px;
  font-size: 1.6rem;
  inset: 0;
  padding-inline: 27px;
  position: absolute;
}
.el_searchSelect_icon {
  display: grid;
  left: 22px;
  place-content: center;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 29px;
  z-index: 1;
}
.el_searchSelect_icon img {
  display: block;
}
.el_searchSelect:has(.el_searchSelect_icon) select {
  padding-left: 60px;
}
.el_rangeTxt {
  font-size: 1.3rem;
  line-height: 1.3076923077;
}
.el_rangeTxt .range {
  color: var(--color-yellow02);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.3333333333;
  margin-right: 0.25em;
}
.el_tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 10px;
}
.el_tags > a,
.el_tags > span {
  background-color: var(--color-bg-pink);
  border-radius: 3px;
  color: var(--color-black);
  display: inline-flex;
  font-size: 1.3rem;
  line-height: 1.3076923077;
  padding: 6px 11px;
}
.el_tags__small {
  gap: 7px 6px;
}
.el_tags__small > a,
.el_tags__small > span {
  font-size: 1.1rem;
  line-height: 1.3636363636;
  padding: 3px 7px;
}
.el_bnrItem {
  display: block;
}
.el_bnrItem_imgWrap img {
  border-radius: 10px;
  display: block;
  width: 100%;
}
.el_bnrItem_txt {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.3571428571;
  margin-top: 10px;
}
.js_fadeIn,
.js_fadeUp {
  opacity: 0;
  transition:
    visibility 1s ease-out,
    opacity 1s ease-out,
    transform 1s ease-out;
  visibility: hidden;
}
.js_fadeIn.is_animate,
.js_fadeUp.is_animate {
  opacity: 1;
  visibility: visible;
}
.js_fadeUp {
  transform: translateY(20px);
}
.js_fadeUp.is_animate {
  transform: none;
}
@keyframes animateSvgStroke {
  0% {
    stroke-dashoffset: 1394.5340576172px;
    stroke-dasharray: 1394.5340576172px;
  }
  to {
    stroke-dashoffset: 0;
    stroke-dasharray: 1394.5340576172px;
  }
}
.un_topIntro {
  background: var(--color-bg-gradation-horizontal);
  padding-block: 18px 63px;
}
.un_topMv {
  margin-bottom: 40px;
}
.un_topMv_cont {
  display: flex;
  flex-direction: column-reverse;
  gap: 16px 0;
}
.un_topMv_search .bl_searchBox .el_btn {
  min-height: 50px;
  padding: 12px 15px;
}
.un_topMvSlider {
  border-radius: 23px;
  height: 100%;
  overflow: hidden;
}
.un_topMvSlider_container {
  position: relative;
}
.un_topMvSlider_illustration {
  bottom: -2px;
  position: absolute;
  right: -10px;
  width: 48px;
  z-index: 1;
}
.un_topMvSlider .splide__list,
.un_topMvSlider .splide__slide,
.un_topMvSlider .splide__track,
.un_topMvSlider .splide_slider,
.un_topMvSlider_container,
.un_topMvSlider_list {
  height: 100%;
}
.un_topMvSlider .splide__slide img {
  border-radius: 23px;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top left;
  object-position: top left;
  width: 100%;
}
.un_topMvSlider .splide__pagination {
  bottom: 16px;
  gap: 7px 7px;
  justify-content: flex-start;
  left: 17px;
  padding: 0;
}
.un_topMvSlider .splide__pagination__page {
  background-color: var(--color-white);
  border: 1px solid var(--color-white);
  height: 9px;
  margin: 0;
  opacity: 1;
  width: 9px;
}
.un_topMvSlider .splide__pagination__page.is-active {
  background-color: var(--color-accent);
  transform: none;
}
.un_topFeatured {
  overflow: hidden;
}
.un_topFeatured .el_heading03_wrap {
  margin-bottom: 28px;
}
.un_topRecommended {
  background-color: var(--color-main);
  overflow: hidden;
  padding-block: 60px 60px;
}
.un_topRecommended .el_heading03:after {
  color: var(--color-gray);
}
.un_topLinks {
  padding-block: 60px 60px;
}
.un_topLinksList {
  display: flex;
  flex-direction: column;
  gap: 12px 0;
  list-style: none;
}
.un_topLinksItem {
  aspect-ratio: 334/215;
  border-radius: 10px;
  display: grid;
  overflow: hidden;
  place-content: center;
  position: relative;
  z-index: 1;
  transition: opacity 0.3s ease-out;
}
.un_topLinksItem_bgWrap {
  inset: 0;
  position: absolute;
  z-index: -1;
}
.un_topLinksItem_bgWrap:before {
  background-color: rgba(0, 0, 0, 0.4);
  content: "";
  display: block;
  inset: 0;
  position: absolute;
}
.un_topLinksItem_bgWrap img {
  display: block;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}
.un_topLinksItem_ttl {
  align-items: center;
  display: flex;
  flex-direction: column;
  font-size: 2.4rem;
  line-height: 1.3333333333;
}
.un_topLinksItem_ttl .main {
  color: #fff;
}
.un_topLinksItem_ttl .sub {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.3076923077;
}
.un_topLinksItem_ttl .sub__orange {
  color: var(--color-pink);
}
.un_topLinksItem_ttl .sub__blue {
  color: var(--color-accent2);
}
.un_topLinksItem_ttl .sub__yellow {
  color: #f8bc00;
}
.un_topWhy {
  background-color: var(--color-bg-yellow);
  padding-block: 60px 60px;
}
.un_topWhy_heading {
  margin-bottom: 40px;
}
.un_topWhyHeading {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.un_topWhyHeading:after {
  color: var(--color-gray);
  content: attr(data-sub);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.3333333333;
  margin-top: 5px;
}
.un_topWhyHeading_main {
  align-items: center;
  display: flex;
  font-size: 2rem;
  font-weight: 500;
  gap: 0 5px;
  line-height: 1.35;
}
.un_topWhyHeading_main .logo {
  width: 118px;
}
.un_topWhyHeading_main .logo img {
  display: block;
  width: 100%;
}
.un_topReg {
  overflow: hidden;
  padding-block: 60px 60px;
  position: relative;
  z-index: 1;
}
.un_topReg_bgWrap01,
.un_topReg_bgWrap02 {
  aspect-ratio: 365/353;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  content: "";
  display: block;
  position: absolute;
  width: 365px;
  z-index: -1;
}
.un_topReg_bgWrap01 img,
.un_topReg_bgWrap02 img {
  display: block;
  width: 100%;
}
.un_topReg_bgWrap01 {
  left: -178px;
  top: -204px;
}
.un_topReg_bgWrap02 {
  bottom: -204px;
  right: -178px;
}
.un_topRegList {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 19px;
  margin: 50px auto 0;
  max-width: 335px;
}
.un_topRegList > li {
  align-items: center;
  display: flex;
  flex-direction: column;
  position: relative;
  text-align: center;
  width: calc(50% - 9.5px);
}
.un_topRegItem {
  position: relative;
  width: 100%;
}
.un_topRegItem_step {
  align-items: center;
  background-color: var(--color-white);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  height: 50px;
  justify-content: center;
  left: calc(50% - 25px);
  position: absolute;
  top: -25px;
  width: 50px;
  z-index: 1;
}
.un_topRegItem_step .txt {
  color: #b0b0b0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}
.un_topRegItem_step .num {
  font-family: var(--font-family-en);
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.3529411765;
  margin-top: -0.125em;
}
.un_topRegItem_cont {
  align-items: center;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 30px 18px;
  position: relative;
}
.un_topRegItem_cont:after {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 30px 23px;
  bottom: 7px;
  content: "";
  display: block;
  height: 23px;
  left: calc(50% - 15px);
  position: absolute;
  width: 30px;
}
.un_topRegItem_ttl {
  align-items: center;
  color: var(--color-white);
  display: flex;
  font-size: 1.7rem;
  font-weight: 500;
  height: 34px;
  justify-content: center;
  line-height: 1.3529411765;
  margin: 0 -14px 6px;
  width: calc(100% + 33px);
}
.un_topRegItem_txt {
  font-size: 1rem;
  line-height: 1.4;
}
.un_topRegItem__01 .un_topRegItem_step .num {
  color: var(--color-blue);
}
.un_topRegItem__01 .un_topRegItem_ttl {
  background-color: var(--color-blue);
}
.un_topRegItem__01 .un_topRegItem_cont {
  background-color: var(--color-light-blue);
}
.un_topRegItem__01 .un_topRegItem_cont:after {
  background-image: url(/common/img/top/step_icon01.svg);
}
.un_topRegItem__02 .un_topRegItem_step .num {
  color: var(--color-pink);
}
.un_topRegItem__02 .un_topRegItem_ttl {
  background-color: var(--color-pink);
}
.un_topRegItem__02 .un_topRegItem_cont {
  background-color: var(--color-light-pink);
}
.un_topRegItem__02 .un_topRegItem_cont:after {
  background-image: url(/common/img/top/step_icon02.svg);
}
.un_topRegItem__03 .un_topRegItem_step .num {
  color: var(--color-yellow);
}
.un_topRegItem__03 .un_topRegItem_ttl {
  background-color: var(--color-yellow);
}
.un_topRegItem__03 .un_topRegItem_cont {
  background-color: var(--color-light-yellow);
}
.un_topRegItem__03 .un_topRegItem_cont:after {
  background-image: url(/common/img/top/step_icon03.svg);
}
.un_topRegItem__04 .un_topRegItem_step .num {
  color: var(--color-green);
}
.un_topRegItem__04 .un_topRegItem_ttl {
  background-color: var(--color-green);
}
.un_topRegItem__04 .un_topRegItem_cont {
  background-color: var(--color-light-green);
}
.un_topRegItem__04 .un_topRegItem_cont:after {
  background-image: url(/common/img/top/step_icon04.svg);
}
.un_topArticles {
  background-color: var(--color-bg-pink);
  padding-block: 60px 60px;
}
.un_topNews {
  padding-block: 51px 43px;
}
.un_topNewsCont {
  display: flex;
  flex-direction: column;
  gap: 75px 0;
}
.un_topNewsCont_item {
  width: 100%;
}
.un_topBnrArea {
  padding-bottom: 60px;
}
.un_topContact {
  display: grid;
  height: 275px;
  padding: 16px;
  place-content: center;
  position: relative;
  z-index: 1;
}
.un_topContact_bgWrap {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
  z-index: -1;
}
.un_topContact_bgWrap img {
  display: block;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}
.un_topContact_btn {
  background-color: var(--color-white);
  border-radius: 60px;
  color: var(--color-blue02);
  display: flex;
  font-size: 1.6rem;
  font-weight: 700;
  justify-content: center;
  line-height: 1.5;
  min-width: 280px;
  padding: 18px 16px;
  transition: background-color 0.3s ease-out;
}
.un_searchHead {
  display: flex;
  flex-direction: column;
  gap: 34px 0;
  margin-bottom: 23px;
}
.un_searchHead_secondary {
  align-items: center;
  display: flex;
  gap: 0 20px;
}
.un_searchHead_secondary .bl_pagination {
  display: none;
}
.un_searchHead_secondary .el_rangeTxt {
  margin-left: auto;
}
.un_searchFoot {
  margin-top: 26px;
}
.un_completeMsg {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 20px 0;
  margin-inline: auto;
  max-width: 245px;
}
.un_completeMsg_body {
  text-align: center;
}
.un_completeMsg_lead {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.5;
}
.un_completeMsg_imgWrap {
  width: 39px;
}
.un_completeMsg_imgWrap img {
  display: block;
  width: 100%;
}
.hp_pcOnly {
  display: none !important;
}
.hp_visuallyHidden {
  clip: rect(0, 0, 0, 0) !important;
  border: 0 !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}
.hp_fwb {
  font-weight: 700 !important;
}
.hp_tal {
  text-align: left !important;
}
.hp_tac {
  text-align: center !important;
}
.hp_tar {
  text-align: right !important;
}
.hp_spTac {
  text-align: center !important;
}
.hp_pt0 {
  padding-top: 0 !important;
}
.hp_pb0 {
  padding-bottom: 0 !important;
}
.hp_mt0 {
  margin-top: 0 !important;
}
.hp_mt5 {
  margin-top: 5px !important;
}
.hp_mt10 {
  margin-top: 10px !important;
}
.hp_mt15 {
  margin-top: 15px !important;
}
.hp_mt20 {
  margin-top: 20px !important;
}
.hp_mt30 {
  margin-top: 30px !important;
}
.hp_mt40 {
  margin-top: 40px !important;
}
.hp_mt50 {
  margin-top: 50px !important;
}
.hp_mt60 {
  margin-top: 60px !important;
}
.hp_mt70 {
  margin-top: 70px !important;
}
.hp_mt80 {
  margin-top: 80px !important;
}
.hp_mb0 {
  margin-bottom: 0 !important;
}
.hp_mb5 {
  margin-bottom: 5px !important;
}
.hp_mb10 {
  margin-bottom: 10px !important;
}
.hp_mb15 {
  margin-bottom: 15px !important;
}
.hp_mb20 {
  margin-bottom: 20px !important;
}
.hp_mb30 {
  margin-bottom: 30px !important;
}
.hp_mb40 {
  margin-bottom: 40px !important;
}
.hp_mb50 {
  margin-bottom: 50px !important;
}
.hp_mb60 {
  margin-bottom: 60px !important;
}
.hp_mb70 {
  margin-bottom: 70px !important;
}
.hp_mb80 {
  margin-bottom: 80px !important;
}
@media screen and (min-width: 768px) {
  .ly_container {
    padding-top: 90px;
  }
  .ly_header {
    height: 90px;
  }
  .ly_header_content {
    padding: 10px 143px 10px 20px;
  }
  .ly_header_logo {
    margin-right: 22px;
    min-width: 133px;
    max-width: 242px;
    width: 13.7734775%;
  }
  .ly_header_logo + .ly_header_logo02:before {
    height: 42px;
    left: -17px;
    top: calc(50% - 21px);
  }
  .ly_header_logo02 {
    margin-left: 17px;
    min-width: 281px;
    width: 281px;
  }
  .ly_menuToggle {
    height: 70px;
    right: 17px;
    top: 11px;
    width: 70px;
  }
  .ly_menuToggle .line {
    left: calc(50% - 18px);
    width: 36px;
  }
  .ly_menuToggle .line:first-of-type {
    transform: translateY(-6px);
  }
  .ly_menuToggle .line:nth-of-type(3) {
    transform: translateY(6px);
  }
  .ly_menu {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .ly_menu_btnWrap {
    margin-top: 27px;
  }
  .ly_mainHead {
    min-height: 120px;
    padding-block: 31px 31px;
  }
  .ly_mainHead_ttl {
    font-size: 4rem;
    line-height: 1.45;
  }
  .ly_breadcrumb {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 30px;
    overflow-x: auto;
    padding-block: 6px 6px;
  }
  .ly_breadcrumb_inner {
    display: block;
  }
  .ly_mainContent {
    padding-block: 49px 60px;
  }
  .ly_footer_navList {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 0;
    justify-content: center;
    margin-bottom: 74px;
  }
  .ly_footer_navList > li {
    font-size: 1.4rem;
    line-height: 1.3571428571;
    width: auto;
  }
  .ly_footer_navList > li > a {
    border-bottom: none;
    display: inline;
    padding: 0;
  }
  .ly_footer_navList > li:first-child > a {
    border-top: none;
  }
  .ly_footer_navList > li:not(:first-child):before {
    content: "｜";
    margin-inline: 1em;
  }
  .ly_footer_logoList {
    margin-top: 74px;
  }
  .ly_pageTop {
    left: auto;
    right: 75px;
  }
  .ly_centered {
    width: calc(100% - 60px);
  }
  .ly_centered__02 {
    width: calc(100% - 120px);
  }
  .bl_section {
    padding-block: 0 103px;
  }
  .bl_section02 {
    padding-block: 16px 103px;
  }
  .bl_sectionItem02:not(:last-child) {
    padding-bottom: 105px;
  }
  .bl_columns {
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  }
  .bl_newsItem02 {
    padding: 18px 55px 24px 16px;
  }
  .bl_figure > figcaption,
  .bl_figure > p,
  .bl_figure_caption {
    font-size: 1.5rem;
    line-height: 1.8666666667;
  }
  .bl_box {
    padding: 29px 2.90909091%;
  }
  .bl_box02 {
    padding: 57px 4.54545455% 53px;
  }
  .bl_box02:not(:first-child) {
    margin-top: 48px;
  }
  .bl_box02:not(:last-child) {
    margin-bottom: 48px;
  }
  .bl_box02__02 {
    padding: 60px 9.09090909%;
  }
  .bl_contentBox {
    border-radius: 23px;
    padding: 60px 4.16666667% 100px;
  }
  .bl_contentBox__02 {
    padding-top: 36px;
  }
  .bl_stepList {
    gap: 0 55px;
    margin-bottom: 52px;
    max-width: none;
  }
  .bl_stepList > li {
    font-size: 1.8rem;
    gap: 0 0.25em;
    line-height: 1.3333333333;
    padding: 16px;
  }
  .bl_bnrList {
    max-width: 473px;
  }
  .bl_bnrList:not(:first-child) {
    margin-top: 48px;
  }
  .bl_bnrList:not(:last-child) {
    margin-bottom: 48px;
  }
  .bl_bnrList_wrap {
    padding-block: 20px 20px;
  }
  .bl_table tr {
    display: table-row;
  }
  .bl_table td,
  .bl_table th {
    border-bottom: 1px solid var(--color-border);
    border-top: 1px solid var(--color-border);
    display: table-cell;
  }
  .bl_table th {
    font-size: 1.8rem;
    line-height: 2;
    padding: 22px 19px;
  }
  .bl_table th.row {
    width: 20.9090909%;
  }
  .bl_table td {
    font-size: 1.8rem;
    line-height: 2;
    padding: 22px 30px;
  }
  .bl_richTxt {
    font-size: 1.6rem;
    line-height: 1.6875;
  }
  .bl_richTxt h2 {
    font-size: 3.8rem;
    line-height: 1.3421052632;
  }
  .bl_richTxt h3:not(.bl_box_heading) {
    font-size: 3.6rem;
    line-height: 1.3333333333;
  }
  .bl_richTxt h4 {
    font-size: 3.4rem;
    line-height: 1.3529411765;
    padding-bottom: 16px;
  }
  .bl_richTxt h5 {
    font-size: 3.2rem;
    line-height: 1.34375;
    padding-bottom: 17px;
  }
  .bl_richTxt p:not(.bl_figure_caption) {
    font-size: 1.6rem;
    line-height: 1.6875;
  }
  .bl_richTxt p:not(.bl_figure_caption):not(:first-child) {
    margin-top: 21px;
  }
  .bl_richTxt p:not(.bl_figure_caption):not(:last-child) {
    margin-bottom: 21px;
  }
  .bl_richTxt ol:not(:first-child),
  .bl_richTxt ul:not(:first-child) {
    margin-top: 21px;
  }
  .bl_richTxt ol:not(:last-child),
  .bl_richTxt ul:not(:last-child) {
    margin-bottom: 21px;
  }
  .bl_richTxt ol > li,
  .bl_richTxt ul > li {
    font-size: 1.6rem;
    line-height: 1.6875;
  }
  .bl_richTxt ol > li:not(:last-child),
  .bl_richTxt ul > li:not(:last-child) {
    margin-bottom: 0.625em;
  }
  .bl_richTxt ul > li:before {
    top: 10px;
  }
  .bl_richTxt__02,
  .bl_richTxt__02 ol li,
  .bl_richTxt__02 p,
  .bl_richTxt__02 ul li {
    font-size: 1.8rem;
    line-height: 2;
  }
  .bl_linkCards {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 25px 25px;
  }
  .bl_linkCard {
    width: calc(33.33333% - 16.66667px);
  }
  .bl_searchBox_btnWrap {
    margin-top: 20px;
  }
  .bl_mediaBoxes {
    gap: 50px 50px;
  }
  .bl_mediaBox {
    width: calc(50% - 25px);
  }
  .bl_mediaBox_imgWrap {
    margin-bottom: 20px;
    width: 200px;
  }
  .bl_mediaBox_imgWrap img {
    height: 95px;
    width: 90px;
  }
  .bl_mediaBox_ttl {
    font-size: 2.6rem;
    line-height: 1.3461538462;
  }
  .bl_mediaBox_txtWrap {
    margin-top: 19px;
  }
  .bl_mediaBox_txtWrap > p {
    font-size: 1.8rem;
    line-height: 1.5555555556;
  }
  .bl_slider02_wrap,
  .bl_slider_wrap {
    margin-right: -30px;
  }
  .bl_slider02 .splide__controller {
    padding-right: 30px;
  }
  .bl_bnrSlider_wrap {
    margin-right: -90px;
  }
  .bl_bnrSlider .splide__arrow {
    background: linear-gradient(-90deg, #000, #626262);
    display: grid;
    height: 40px;
    opacity: 1;
    place-content: center;
    position: absolute;
    top: calc(50% - 46px);
    transform: none;
    width: 40px;
  }
  .bl_bnrSlider .splide__arrow--prev {
    left: -50px;
    transform: scaleX(-1);
  }
  .bl_bnrSlider .splide__arrow--next {
    right: 59px;
  }
  .bl_notice {
    border-radius: 20px;
    flex-direction: row;
  }
  .bl_notice_wrap {
    margin-bottom: 51px;
  }
  .bl_notice_ttl {
    width: 202px;
  }
  .bl_notice_content {
    flex: 1;
  }
  .el_heading {
    font-size: 2.4rem;
    line-height: 1.4166666667;
    margin-bottom: 34px;
  }
  .el_heading_wrap {
    align-items: flex-start;
    display: flex;
    gap: 0 30px;
    padding-bottom: 18px;
  }
  .el_heading_wrap .el_heading {
    margin-bottom: 20px;
  }
  .el_heading_wrap .el_btn {
    display: block;
    margin-left: auto;
  }
  .el_heading02 {
    font-size: 2.4rem;
    line-height: 1.3333333333;
    margin-bottom: 58px;
    padding: 14px;
  }
  .el_heading03 {
    font-size: 3rem;
    line-height: 1.3333333333;
    margin-bottom: 50px;
  }
  .el_heading03:after {
    font-size: 1.8rem;
    line-height: 1.3333333333;
    margin-top: 10px;
  }
  .el_heading03_wrap {
    margin-bottom: 50px;
  }
  .el_heading03_linkWrap {
    margin-bottom: 5px;
  }
  .el_indentList > li {
    font-size: 1.4rem;
    line-height: 1.5;
  }
  .el_tags > a,
  .el_tags > span {
    padding: 6px 20px;
  }
  .el_tags__small > a,
  .el_tags__small > span {
    padding: 3px 7px;
  }
  .el_bnrItem_txt {
    font-size: 1.6rem;
    line-height: 1.3125;
    min-height: 2.625em;
  }
  .un_topIntro {
    padding-block: 51px 102px;
  }
  .un_topMvSlider .splide__pagination {
    bottom: 38px;
    gap: 11px 11px;
    left: 35px;
  }
  .un_topMvSlider .splide__pagination__page {
    height: 12px;
    width: 12px;
  }
  .un_topFeatured .el_heading03_wrap {
    margin-bottom: 34px;
  }
  .un_topRecommended {
    margin-top: 35px;
  }
  .un_topLinks {
    padding-block: 100px 100px;
  }
  .un_topLinksList {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px 30px;
  }
  .un_topLinksList > li {
    width: calc(33.33333% - 20px);
  }
  .un_topLinksItem {
    aspect-ratio: 14/9;
  }
  .un_topWhy {
    padding-block: 100px 100px;
  }
  .un_topWhyHeading {
    margin-bottom: 50px;
  }
  .un_topWhyHeading:after {
    font-size: 1.8rem;
    line-height: 1.3333333333;
    margin-top: 10px;
  }
  .un_topWhyHeading_main {
    font-size: 3rem;
    line-height: 1.3333333333;
  }
  .un_topWhyHeading_main .logo {
    width: 190px;
  }
  .un_topReg {
    padding-block: 100px 100px;
  }
  .un_topReg_bgWrap01,
  .un_topReg_bgWrap02 {
    width: 891px;
  }
  .un_topReg_bgWrap01 {
    left: -574px;
    top: -542px;
  }
  .un_topReg_bgWrap02 {
    bottom: -542px;
    right: -574px;
  }
  .un_topRegList {
    gap: 67px 32px;
    margin-top: 80px;
    max-width: 580px;
  }
  .un_topRegList > li {
    width: calc(50% - 16px);
  }
  .un_topRegItem_step {
    height: 84px;
    left: calc(50% - 42px);
    top: -42px;
    width: 84px;
  }
  .un_topRegItem_step .txt {
    font-size: 1.6rem;
    line-height: 1.875;
  }
  .un_topRegItem_step .num {
    font-size: 3.2rem;
    line-height: 1;
  }
  .un_topRegItem_cont {
    padding: 52px 15px 70px;
  }
  .un_topRegItem_cont:after {
    background-size: 62px 50px;
    bottom: 14px;
    height: 50px;
    left: calc(50% - 31px);
    width: 62px;
  }
  .un_topRegItem_ttl {
    font-size: 3.2rem;
    height: 58px;
    line-height: 1;
    margin: 0 -14px 10px;
  }
  .un_topRegItem_txt {
    font-size: 1.6rem;
    line-height: 1.75;
  }
  .un_topNews {
    padding-block: 100px 83px;
  }
  .un_topBnrArea {
    padding-bottom: 97px;
  }
  .un_topContact {
    height: 281px;
  }
  .un_searchFoot {
    margin-top: 38px;
  }
  .un_completeMsg {
    flex-direction: row;
    gap: 0 30px;
    margin-inline: 0;
    max-width: 742px;
  }
  .un_completeMsg_body {
    flex: 1;
    text-align: left;
  }
  .un_completeMsg_lead {
    font-size: 4rem;
  }
  .un_completeMsg_imgWrap {
    width: 70px;
  }
  .hp_spOnly {
    display: none !important;
  }
  .hp_pcOnly {
    display: block !important;
  }
  .hp_spTac {
    text-align: left !important;
  }
  .hp_pcTac {
    text-align: center !important;
  }
}
@media screen and (min-width: 992px) {
  .ly_header_nav {
    display: block;
    margin-left: 40px;
  }
  .ly_mainContent:after,
  .ly_mainContent:before {
    background-image: url(/common/img/backgrounds/bg_pattern_white02.png);
    background-repeat: repeat-y;
    background-size: 1185px 3050px;
    content: "";
    display: block;
    opacity: 0.46;
    position: absolute;
    width: 100%;
    z-index: -1;
  }
  .ly_mainContent:before {
    background-position: left -593px top;
    height: calc(100% - 917px);
    top: 917px;
  }
  .ly_mainContent:after {
    background-position: right -593px top;
    height: calc(100% - 2638px);
    top: 2638px;
  }
  .ly_centered {
    width: calc(100% - 80px);
  }
  .ly_centered__02 {
    width: calc(100% - 140px);
  }
  .ly_content {
    display: flex;
    flex-direction: row;
    gap: 0 40px;
  }
  .ly_content_side {
    display: block;
    min-width: 380px;
    width: 380px;
  }
  .ly_content_sticky {
    left: 0;
    position: -webkit-sticky;
    position: sticky;
    top: 132px;
  }
  .ly_content_main {
    flex: 1;
  }
  .bl_stepList > li {
    flex-direction: row;
    font-size: 1.8rem;
    line-height: 1.3333333333;
  }
  .bl_stepList > li .pcOnly {
    display: initial;
  }
  .bl_contactList {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 22px 20px;
  }
  .bl_contactList > dt {
    padding-top: 9px;
    width: 242px;
  }
  .bl_contactList > dd {
    padding-right: 18px;
    width: calc(100% - 282px);
  }
  .bl_contactList > dd + dt {
    margin-top: 0;
  }
  .bl_contactList__confirm > dd {
    padding-right: 0;
    padding-top: 8px;
  }
  .bl_jobItems {
    gap: 30px 0;
  }
  .bl_jobItem {
    border-radius: 23px;
    padding: 19px 5.12820513% 36px;
  }
  .bl_jobItem_no {
    margin-bottom: 7px;
  }
  .bl_jobItem_no__02 {
    margin-bottom: 15px;
  }
  .bl_jobItem_heading {
    margin-bottom: 25px;
    padding-bottom: 18px;
  }
  .bl_jobItem_media__02 {
    flex-direction: row;
  }
  .bl_jobItem_media__02 .bl_jobItem_imgWrap {
    width: 389px;
  }
  .bl_jobItem_media__02 .bl_jobItem_cont {
    padding-top: 14px;
  }
  .bl_jobItem_cont {
    flex: 1;
  }
  .bl_jobItem_details__02 tr:first-child {
    border-top: 1px dotted var(--color-gray);
  }
  .bl_jobItem_details__02 tr:first-child td,
  .bl_jobItem_details__02 tr:first-child th {
    padding-top: 16px;
  }
  .bl_jobItem_details__02 td,
  .bl_jobItem_details__02 th {
    padding-block: 17px 17px;
  }
  .bl_jobItem_cont02 {
    margin-top: 33px;
  }
  .bl_jobItem_cont02__02 {
    align-items: flex-start;
    display: flex;
    gap: 0 20px;
  }
  .bl_jobItem_cont02__02 .bl_jobItem_ttl {
    font-size: 1.8rem;
    line-height: 1.3333333333;
    padding-bottom: 13px;
    width: 187px;
  }
  .bl_jobItem_cont02__02 .bl_jobItem_txtWrap {
    flex: 1;
    font-size: 1.8rem;
    line-height: 1.6666666667;
  }
  .bl_jobItem_txtWrap {
    font-size: 1.5rem;
  }
  .bl_jobItem_foot {
    justify-content: flex-end;
    margin-top: 21px;
  }
  .bl_searchBox_txt {
    font-size: 1.6rem;
    line-height: 2;
  }
  .bl_fixedLinks {
    padding: 15px 16px;
  }
  .bl_mediaBoxes {
    flex-wrap: nowrap;
  }
  .bl_mediaBox,
  .bl_mediaBox:first-child {
    width: calc(25% - 37.5px);
  }
  .bl_slider_wrap {
    margin-right: 0;
  }
  .bl_slider02_wrap {
    margin-right: calc(50% - 50vw);
  }
  .bl_slider02 .splide__controller {
    gap: 0 60px;
    margin-top: 38px;
    padding-inline: 47px 0;
  }
  .bl_slider02 .splide__arrows {
    gap: 0 50px;
  }
  .bl_slider02 .splide__arrow {
    height: 59px;
    width: 72px;
  }
  .bl_slider02_progress {
    margin-top: -31px;
    padding-left: 302px;
  }
  .bl_bnrSlider_wrap {
    margin-right: calc(50% - 50vw);
  }
  .bl_noticeItem,
  .un_topMv_cont {
    flex-direction: row;
  }
  .un_topMv_cont {
    gap: 0 32px;
  }
  .un_topMv_search {
    width: 400px;
  }
  .un_topMv_search .bl_searchBox {
    padding-inline: 30px 30px;
  }
  .un_topMv_search .bl_searchBox .el_btn {
    min-height: 60px;
    padding: 15px;
  }
  .un_topMv_slider {
    flex: 1;
  }
  .un_topMvSlider_illustration {
    bottom: -5px;
    right: -36px;
    width: 134px;
  }
  .un_topMvSlider_illustration img {
    display: block;
    width: 100%;
  }
  .un_topLinksItem_ttl {
    font-size: 3rem;
    line-height: 1.3333333333;
  }
  .un_topLinksItem_ttl .sub {
    font-size: 1.8rem;
    line-height: 1.3333333333;
  }
  .un_topNewsCont {
    flex-direction: row;
    gap: 75px 40px;
  }
  .un_topNewsCont_item {
    width: calc(50% - 20px);
  }
  .un_searchHead {
    margin-bottom: 18px;
  }
  .un_searchHead_primary {
    display: none;
  }
  .un_searchHead_secondary .bl_pagination {
    display: flex;
    margin-left: auto;
  }
  .un_searchHead_secondary .el_rangeTxt {
    display: none;
  }
}
@media screen and (min-width: 1280px) {
  .ly_footer_content {
    padding-block: 27px 40px;
  }
  .bl_jobItem_media {
    flex-direction: row-reverse;
  }
  .bl_jobItem_media__02 {
    flex-direction: row;
  }
  .bl_jobItem_imgWrap {
    width: 246px;
  }
  .bl_mediaBoxes {
    gap: 50px 40px;
  }
  .bl_mediaBox {
    width: calc(25% - 38px);
  }
  .bl_mediaBox:first-child {
    width: calc(25% - 6px);
  }
  .un_topRegList {
    max-width: none;
  }
  .un_topRegList > li {
    width: calc(25% - 24px);
  }
  .un_topRegList > li:not(:last-child):after {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 13px 16px;
    content: "";
    display: block;
    height: 16px;
    left: calc(100% + 10px);
    position: absolute;
    top: calc(50% - 8px);
    width: 13px;
  }
  .un_topRegList > li:has(.un_topRegItem__01):after {
    background-image: url(/common/img/icons/icon_arrow_triangle_blue.svg);
  }
  .un_topRegList > li:has(.un_topRegItem__02):after {
    background-image: url(/common/img/icons/icon_arrow_triangle_pink.svg);
  }
  .un_topRegList > li:has(.un_topRegItem__03):after {
    background-image: url(/common/img/icons/icon_arrow_triangle_orange.svg);
  }
}
@media screen and (min-width: 1600px) {
  .ly_mainContent_logoBg {
    opacity: 1;
    visibility: visible;
  }
}
@media (hover: hover) {
  .bl_richTxt a:not(.bl_figure a):not(.bl_column a):hover,
  .bl_searchBox_link:hover,
  .el_heading03_link:hover,
  .ly_footer_navList > li > a:hover,
  a.bl_noticeItem:hover .bl_noticeItem_txt {
    opacity: 0.6;
  }
  .el_btn:hover {
    background-color: #edecec;
    border-color: #edecec;
    color: var(--color-black);
  }
  .el_btn__green:hover {
    background-color: rgba(33, 167, 167, 0.6);
    border-color: rgba(33, 167, 167, 0.6);
    color: var(--color-white);
  }
  .el_btn__blue:hover {
    background-color: rgba(20, 160, 222, 0.6);
    border-color: rgba(20, 160, 222, 0.6);
    color: var(--color-white);
  }
  .el_btn__pink:hover {
    background-color: rgba(247, 108, 79, 0.6);
    border-color: rgba(247, 108, 79, 0.6);
    color: var(--color-white);
  }
  .el_btn02:hover {
    color: var(--color-black);
  }
  .el_btn02:hover:after {
    opacity: 1;
  }
  .el_btn02:hover .el_btn02_inner:after {
    background-image: url(/common/img/icons/icon_arrow_black.svg);
  }
  .el_btn03:hover {
    background-color: #effeff;
  }
  .el_btn03__02:hover {
    background-color: rgba(20, 160, 222, 0.6);
  }
  .el_btn03__blue:hover {
    background-color: #effeff;
  }
  .el_btn03__pink:hover {
    background-color: #fef1ee;
  }
  .el_btn03__orange:hover {
    background-color: #fffbf0;
  }
  .el_btn03__green:hover {
    background-color: #e4f3e3;
  }
  .un_topContact_btn:hover {
    background-color: hsla(0, 0%, 100%, 0.6);
  }
  .un_topLinksItem:hover {
    opacity: 0.7;
  }
  .un_topLinksItem:hover img {
    opacity: 1;
  }
}
