@charset "UTF-8";
:root {
  /* fonts */
  --font-main: Noto Sans JP, sans-serif;
  --font-sub: Zen Kaku Gothic New, sans-serif;
  /* colors */
  --color-main-100: #1971ff;
  --color-main-200: #50a2e6;
  --color-main-300: #99cdf7;
  --color-main-400: #d0e4f5;
  --color-main-500: #e0f1ff;
  --color-accent-100: #ecac3c;
  --color-accent-200: #ffcb40;
  --color-txt-100: #02456a;
  --color-txt-200: #000;
  --color-border-100: #d2d2d2;
  --color-border-200: #dadada;
  --color-line-100: #06c755;
  --color-base-100: #ebebeb;
  --color-base-200: #000;
  --color-base-300: #000;
  --color-base-400: #000;
  --color-base-500: #000;
  --color-white: #ffffff;
  --color-black: #000000;
  /* font-weights */
  --font-thin: 100;
  --font-exlight: 200;
  --font-light: 300;
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-exbold: 800;
  --font-black: 900;
}
@media screen and (min-width: 767px) {
  :root {
    --cmn-pd-sm: 100px;
    --cmn-pd-md: 100px;
    --cmn-pd-lg: 120px;
    --cmn-pd-xl: 140px;
    --ttl-mb-sm: 50px;
    --ttl-mb-md: 60px;
    --ttl-mb-lg: 75px;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --cmn-pd-sm: 60px;
    --cmn-pd-md: 70px;
    --cmn-pd-lg: 90px;
    --cmn-pd-xl: 100px;
    --ttl-mb-sm: 40px;
    --ttl-mb-md: 50px;
    --ttl-mb-lg: 60px;
  }
}

/* display ------------------------------------------------- */
.block {
  display: block;
}

.inblock {
  display: inline-block;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* flex-direction ------------------------------------------------- */
.fd-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.fd-row-rev {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.fd-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.fd-col-rev {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

/* align-items ------------------------------------------------- */
.items-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.items-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.items-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

/* justify-content ------------------------------------------------- */
.justify-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.justify-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.justify-btw {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/* text-align ------------------------------------------------- */
.text-center {
  text-align: center;
}

.text-start {
  text-align: start;
}

.text-end {
  text-align: end;
}

/* font-family */
.font-main {
  font-family: Noto Sans JP, sans-serif;
}

.font-sub {
  font-family: Zen Kaku Gothic New, sans-serif;
}

/* font-color */
.color-main-100 {
  color: var(--color-main-100);
}

.color-main-200 {
  color: var(--color-main-200);
}

.color-main-300 {
  color: var(--color-main-300);
}

.color-main-400 {
  color: var(--color-main-400);
}

.color-main-500 {
  color: var(--color-main-500);
}

.color-accent-100 {
  color: var(--color-accent-100);
}

.color-accent-200 {
  color: var(--color-accent-200);
}

.color-txt-100 {
  color: var(--color-txt-100);
}

.color-txt-200 {
  color: var(--color-txt-200);
}

.color-border-100 {
  color: var(--color-border-100);
}

.color-border-200 {
  color: var(--color-border-200);
}

.color-line-100 {
  color: var(--color-line-100);
}

.color-base-100 {
  color: var(--color-base-100);
}

.color-base-200 {
  color: var(--color-base-200);
}

.color-base-300 {
  color: var(--color-base-300);
}

.color-base-400 {
  color: var(--color-base-400);
}

.color-base-500 {
  color: var(--color-base-500);
}

.color-white {
  color: var(--color-white);
}

.color-black {
  color: var(--color-black);
}

html {
  font-family: var(--font-main);
}

body {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  word-break: normal;
  font-optical-sizing: auto;
  overflow-wrap: anywhere;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

a:hover {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  opacity: 0.7;
}

iframe {
  border: none;
}

.logo a,
.logo img {
  display: block;
}

@media screen and (min-width: 767px) {
  body {
    width: 100%;
    min-width: 1280px;
    position: relative;
  }
  .inner {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
  }
  .inbox {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
  }
  .pc-none {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  body {
    width: 100%;
    min-width: 350px;
    position: relative;
  }
  .inbox,
  .inner {
    max-width: 768px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
  }
  .sp-none {
    display: none !important;
  }
  .logo .logo-item {
    display: block;
    line-height: 1;
  }
}
/*common-lead ---------------------------------------------*/
/*common-features ---------------------------------------------*/
/*common-description ---------------------------------------------*/
/*common-recruit ---------------------------------------------*/
/*==========================================
SP style
===========================================*/
/*common-lead ---------------------------------------------*/
/*common-features ---------------------------------------------*/
/*common-description ---------------------------------------------*/
/*common-recruit ---------------------------------------------*/
.btn {
  display: block;
  font-family: var(--font-main);
  position: relative;
  z-index: 1;
}

.btn-accent-100 {
  display: block;
  position: relative;
  z-index: 1;
  text-align: center;
  font-family: var(--font-main);
  font-weight: var(--font-bold);
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.06em;
  width: 300px;
  padding: 15px 50px;
  color: var(--color-white);
  background: var(--color-accent-100);
  border-radius: 25px;
}
.btn-accent-100::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 17/17;
  width: 17px;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(/img/common/arw-bg-white.png) no-repeat;
  background-size: contain;
}

.btn-main-100 {
  display: block;
  position: relative;
  z-index: 1;
  text-align: center;
  font-family: var(--font-main);
  font-weight: var(--font-bold);
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.06em;
  width: 310px;
  padding: 20px 10px;
  color: var(--color-white);
  background: var(--color-main-100);
  border-radius: 10px;
}
.btn-main-100 .btn-cont {
  --icon-width: 18;
  --icon-height: 18;
  --icon-gap: 8;
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-left: calc(var(--icon-width) * 1px + var(--icon-gap) * 1px);
}
.btn-main-100 .btn-cont::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: var(--icon-width)/var(--icon-height);
  width: calc(var(--icon-width) * 1px);
  left: 0;
  top: calc(50% + 1px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(/img/common/exlink-icon.png) no-repeat;
  background-size: contain;
}

.ttl, .top-recruit-ttl, .top-about-ttl, .top-about-subttl, .top-links-ttl, .top-news-ttl, .beginner-recruit-ttl, .beginner-lead-ttl, .beginner-features-ttl, .interview-ttl, .beginner-description-ttl, .partner-recruit-ttl, .partner-lead-ttl, .partner-features-ttl, .partner-description-ttl, .works-ttl, .self-employed-recruit-ttl, .self-employed-lead-ttl, .self-employed-features-ttl, .self-employed-description-ttl, .faq-ttl, .greeting-ttl, .com-info-ttl, .form-ttl,
.complete-ttl,
.notfound-ttl,
.privacy-ttl,
.site-map-ttl,
.news-ttl, .ttl-lg, .top-links-subttl {
  font-family: var(--font-sub);
  color: var(--color-txt-100);
  font-size: 40px;
  line-height: 1.4;
  letter-spacing: 0.06em;
  font-weight: var(--font-bold);
}

.ttl-lg, .top-links-subttl {
  font-size: 42px;
  line-height: 1.3333333333;
}

.ttl-sv, .sv-ttl {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: var(--font-main);
  font-size: 52px;
  line-height: 1.5576923077;
  letter-spacing: 0.06em;
  font-weight: var(--font-bold);
  color: var(--color-white);
}

.sub-ttl, .sub-ttl-white, .sub-ttl-white-lh-1, .top-recruit-subttl, .sub-ttl-lh-1, .top-about-name, .interview-header {
  font-family: var(--font-sub);
  font-weight: var(--font-bold);
  color: var(--color-txt-100);
  font-size: 30px;
  line-height: 1.8666666667;
  letter-spacing: 0.06em;
}

.sub-ttl-lh-1, .top-about-name, .interview-header {
  line-height: 1;
}

.sub-ttl-white, .sub-ttl-white-lh-1, .top-recruit-subttl {
  color: var(--color-white);
}

.sub-ttl-white-lh-1, .top-recruit-subttl {
  line-height: 1;
}

.sub-ttl-sm, .beginner-recruit-txt, .partner-recruit-txt, .self-employed-recruit-txt {
  font-family: var(--font-sub);
  font-weight: var(--font-bold);
  color: var(--color-txt-100);
  font-size: 25px;
  line-height: 2.24;
  letter-spacing: 0.06em;
}

.sub-ttl-sm-200, .beginner-features-subttl, .partner-features-subttl, .self-employed-features-subttl {
  font-family: var(--font-sub);
  font-weight: var(--font-bold);
  color: var(--color-white);
  font-size: 28px;
  line-height: 1.4285714286;
  letter-spacing: 0.06em;
}

.txt, .top-about-lead, .works-subttl, .faq .empty-message, .txt-lg, .faq-term, .txt-lh-sm, .beginner-lead-txt, .partner-lead-txt, .self-employed-lead-txt {
  font-family: var(--font-main);
  font-size: 18px;
  line-height: 2.2222222222;
  letter-spacing: 0.04em;
  font-weight: var(--font-medium);
  color: var(--color-txt-100);
}

.txt-lh-sm, .beginner-lead-txt, .partner-lead-txt, .self-employed-lead-txt {
  line-height: 2.1111111111;
}

.txt-lg, .faq-term {
  font-size: 20px;
  line-height: 1.8;
}

.txt-sm, .top-recruit-txt {
  font-family: var(--font-main);
  font-size: 17px;
  line-height: 1.8823529412;
  letter-spacing: 0.04em;
  font-weight: var(--font-bold);
  color: var(--color-txt-100);
}

.txt-xs, .top-about-txt, .top-links-txt, .beginner-description-header, .beginner-description-data, .partner-description-header, .partner-description-data, .self-employed-description-header, .self-employed-description-data, .com-info-header, .com-info-data, .txt-xs-ls-0, .beginner-features-txt, .partner-features-txt, .self-employed-features-txt, .txt-xs-ls-sm, .interview-txt, .faq-definition {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.04em;
  font-weight: var(--font-medium);
  color: var(--color-txt-100);
}

.txt-2xs, .works-txt {
  font-family: var(--font-main);
  font-size: 15px;
  line-height: 1.7333333333;
  letter-spacing: 0.02em;
  font-weight: var(--font-medium);
  color: var(--color-txt-100);
}

.txt-xs-ls-sm, .interview-txt, .faq-definition {
  letter-spacing: 0.02em;
}

.txt-xs-ls-0, .beginner-features-txt, .partner-features-txt, .self-employed-features-txt {
  letter-spacing: 0;
}

.txt-xs-lh-lg, .footer-address, .txt-xs-lh-lg-ls-0, .greeting-txt {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.04em;
  font-weight: var(--font-normal);
  color: var(--color-txt-100);
}

.txt-xs-lh-lg-ls-0, .greeting-txt {
  letter-spacing: 0;
}

.txt-news-date, .top-news-item .date, .detail .date {
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: var(--font-medium);
  line-height: 24px;
  letter-spacing: 0.02em;
  color: var(--color-main-100);
}

.txt-news-tag, .top-news-item .tag, .detail .tag {
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: var(--font-medium);
  line-height: 24px;
  letter-spacing: 0.04em;
  color: var(--color-white);
}

.txt-news-ttl, .top-news-item-ttl, .news .top-news-item-ttl {
  font-family: var(--font-main);
  font-size: 17px;
  line-height: 2.1176470588;
  font-weight: var(--font-medium);
  letter-spacing: 0.04em;
  color: var(--color-txt-100);
}

.txt-hd-nav, .header .nav-list {
  font-family: var(--font-main);
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--color-txt-100);
  font-weight: var(--font-bold);
}

.txt-ft-nav, .footer-nav, .txt-ft-nav-sm {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0em;
  color: var(--color-white);
  font-weight: var(--font-medium);
}

.txt-ft-nav-sm {
  font-size: 12px;
}

/*電話アイコンと番号 -------------------------------------------*/
@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
.tel, .tel-white {
  font-family: var(--font-main);
  font-size: 22px;
  font-weight: var(--font-bold);
  position: relative;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--color-txt-100);
}
.tel-num {
  --icon-width: 19;
  --icon-height: 19;
  display: inline-block;
  display: block;
  line-height: 1;
  padding-left: 5px;
  margin-left: calc(var(--icon-width) * 1px);
  position: relative;
  z-index: 1;
}
.tel-num::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: var(--icon-width)/var(--icon-height);
  width: calc(var(--icon-width) * 1px);
  left: 0;
  top: calc(50% + 2px);
  -webkit-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%);
  background: url(/img/common/tel-icon.png) no-repeat;
  background-size: contain;
}

.tel-svg img {
  display: block;
}

.tel-white {
  color: var(--color-white);
}
.tel-white .tel-num::before {
  background: url(/img/common/tel-icon-white.png) no-repeat;
  background-size: contain;
}

/*site-map ---------------------------------------------*/
.site-map {
  --color-site-map: var(--color-txt-100);
  padding: var(--cmn-pd-md, 120px) 0;
}
.site-map-list {
  font-size: 18px;
  color: var(--color-site-map);
}
.site-map-item {
  border-bottom: 1px solid var(--color-site-map);
  font-weight: var(--font-medium, 500);
  display: block;
  width: 100%;
  position: relative;
  z-index: 1;
  line-height: 1.7;
}
.site-map-item a {
  display: block;
  padding: 2% 0 2% 3%;
  position: relative;
  z-index: 1;
}
.site-map-item a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23202931' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/*404 ---------------------------------------------*/
.notfound {
  --color-notfound-txt: var(--color-txt-100);
  --color-notfound-link: var(--color-main-100);
  padding: var(--cmn-pd-md, 120px) 0;
}
.notfound-txt {
  font-weight: var(--font-medium, 500);
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0;
  color: var(--color-notfound-txt);
}
.notfound-txt a {
  color: var(--color-notfound-link);
  text-decoration: underline;
}

/*bread-clumb ---------------------------------------------*/
.bread-clumb {
  --bread-clumb-height: 60px;
  --color-bread-clumb: var(--color-txt-100);
  padding: calc((var(--bread-clumb-height) - 23.8px) / 2) 0;
  overflow: hidden;
  position: absolute;
  z-index: 2;
  width: 100%;
  max-width: 1080px;
  left: calc(50% - 540px);
}
.bread-clumb-list {
  overflow: hidden;
}
.bread-clumb-item {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-bread-clumb);
  white-space: nowrap;
}
.bread-clumb-item:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
}
.bread-clumb-item:not(:last-child) {
  padding-right: 1.07em;
  margin-right: 1.07em;
  position: relative;
  z-index: 1;
}
.bread-clumb-item:not(:last-child)::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0.71em;
  height: 0.71em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23202931' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}
.bread-clumb .current {
  color: var(--color-main-100);
}

/*privacy ---------------------------------------------*/
.privacy {
  --color-privacy: var(--color-txt-100);
  padding: var(--cmn-pd-md, 120px) 0;
}
.privacy .ttl02 {
  font-size: 24px;
  font-family: var(--font-main);
  padding-bottom: 10px;
  margin-bottom: 15px;
  color: var(--color-privacy);
  font-weight: var(--font-bold, bold);
  border-bottom: 1px solid var(--color-privacy);
}
.privacy .privacy-box {
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-privacy);
}
.privacy .privacy-box:not(:last-child) {
  margin-bottom: 70px;
}

/*contact ---------------------------------------------*/
#contact {
  --color-contact-main: var(--color-main-100);
  --color-contact-required-mark-txt: var(--color-white);
  --color-contact-required-mark-bg: var(--color-main-100);
  --color-contact-th-bg: var(--color-main-200);
  --color-contact-th-txt: var(--color-txt-100);
  --color-contact-td-bg: #fff;
  --color-contact-disabled-bg: #ccc;
  --color-contact-disabled-txt: #777;
  padding: var(--cmn-pd-md, 120px) 0;
}
#contact table {
  width: 100%;
  margin-bottom: 16px;
  border-collapse: collapse;
}
#contact table tr td {
  font-size: 15px;
  padding: 10px;
  vertical-align: middle;
  text-align: left;
  font-weight: 400;
  border: 1px solid #dfdfdf;
  background: var(--color-contact-td-bg);
}
#contact table tr th {
  font-size: 15px;
  padding: 10px;
  vertical-align: middle;
  text-align: left;
  font-weight: 400;
  border: 1px solid #dfdfdf;
  width: 30%;
  color: var(--color-contact-th-txt);
  background: var(--color-contact-th-bg);
}
#contact table .required-mark {
  color: var(--color-contact-required-mark-txt);
  font-size: 13px;
  border-radius: 0;
  background: var(--color-contact-required-mark-bg);
}
#contact label[for=agree] a {
  color: var(--color-contact-main);
  padding-bottom: 2px;
  border-bottom: 1px solid var(--color-contact-main);
}
#contact .contact-btn.contact-submits-wrap button[type=button],
#contact input[type=button],
#contact input[type=submit],
#contact button[type=button] {
  color: #fff;
  background: var(--color-contact-main);
  font-size: 16px;
  border: unset;
  -webkit-transition: ease 0.2s;
  transition: ease 0.2s;
}
#contact .contact-btn.contact-submits-wrap button[type=button]:hover,
#contact input[type=button]:hover,
#contact input[type=submit]:hover,
#contact button[type=button]:hover {
  opacity: 0.7;
}
#contact .contact-btn.contact-submits-wrap button[type=button][disabled],
#contact input[type=button][disabled],
#contact input[type=submit][disabled],
#contact button[type=button][disabled] {
  color: var(--color-contact-disabled-txt);
  background: var(--color-contact-disabled-bg);
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  #contact table {
    border-collapse: separate;
  }
  #contact table tr {
    margin-bottom: 5vw;
  }
  #contact table tr td {
    font-size: 4vw;
    padding: 4vw;
    text-align: left;
    font-weight: 400;
    border: 1px solid #dfdfdf;
    background: var(--color-contact-td-bg);
  }
  #contact table tr th {
    font-size: 4vw;
    padding: 4vw;
    text-align: left;
    font-weight: 400;
    border: 1px solid #dfdfdf;
    width: 100%;
    color: var(--color-contact-th-txt);
    background: var(--color-contact-th-bg);
  }
  #contact table tr textarea,
  #contact table tr input {
    font-size: 4vw;
    padding: 4vw;
  }
  #contact table .required-mark {
    font-weight: 500;
    color: var(--color-contact-required-mark-txt);
    font-size: 3.5vw;
    border-radius: 0;
    background: var(--color-contact-required-mark-bg);
  }
  #contact input[type=button],
  #contact input[type=submit],
  #contact button[type=button] {
    width: 95%;
    font-size: 4vw;
    margin-bottom: 2vw;
  }
}

/*complete ---------------------------------------------*/
.complete {
  --color-complete-txt: var(--color-txt-100);
  --color-complete-link: var(--color-main-100);
  padding: var(--cmn-pd-md, 120px) 0;
}
.complete-box {
  font-weight: var(--font-medium, 500);
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0;
  color: var(--color-complete-txt);
}
.complete-box a {
  display: inline-block;
  margin-top: 20px;
  color: var(--color-complete-link);
  text-decoration: underline;
}

.pagenation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 60px;
  gap: 20px;
  font-size: 16px;
}
.pagenation li {
  font-family: var(--font-main);
  font-weight: var(--font-medium);
  color: var(--color-txt-100);
  line-height: 1;
  width: 30px;
  height: 30px;
  text-align: center;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pagenation a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 7px 0;
}
.pagenation .current::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 20px;
  height: 2px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: var(--color-txt-100);
}

.tag-change {
  --color-tag-change-def-txt: #b3b3b3;
  --color-tag-change-def-bg: #eee;
  --color-tag-change-current-txt: var(--color-white);
  --color-tag-change-current-bg: var(--color-accent-100);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 40px;
}
.tag-change li {
  font-family: var(--font-main);
  font-weight: var(--font-medium);
  font-size: 16px;
  line-height: 1;
  letter-spacing: auto;
  border-radius: 3px;
  color: var(--color-tag-change-def-txt);
  background: var(--color-tag-change-def-bg);
}
.tag-change li a {
  display: block;
  padding: 12px 26px;
}
.tag-change .current {
  color: var(--color-tag-change-current-txt);
  background: var(--color-tag-change-current-bg);
}
.tag-change a {
  display: block;
  width: 100%;
  text-align: center;
}

.page-btn {
  --color-page-btn-txt: var(--color-txt-100);
  --color-page-btn-border: var(--color-main-200);
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 72px;
  padding-top: 48px;
  text-align: center;
  border-top: 1px solid var(--color-page-btn-border);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.page-btn .left,
.page-btn .mid,
.page-btn .right {
  font-size: 16px;
  font-family: var(--font-main);
  color: var(--color-page-btn-txt);
  font-weight: var(--font-medium);
}
.page-btn .left {
  position: relative;
  z-index: 1;
  max-width: 33%;
  margin-right: auto;
}
.page-btn .left a {
  display: block;
  position: relative;
  z-index: 1;
  padding-left: 30px;
}
.page-btn .left a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 18px;
  height: 6px;
  border-bottom: 1px solid var(--color-page-btn-txt);
  border-right: 1px solid var(--color-page-btn-txt);
  -webkit-transform: scale(-1, 1) skew(30deg) translateY(-50%);
          transform: scale(-1, 1) skew(30deg) translateY(-50%);
}
.page-btn .right {
  position: relative;
  z-index: 1;
  max-width: 33%;
  margin-left: auto;
}
.page-btn .right a {
  display: block;
  position: relative;
  z-index: 1;
  padding-right: 30px;
}
.page-btn .right a::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 18px;
  height: 6px;
  border-bottom: 1px solid var(--color-page-btn-txt);
  border-right: 1px solid var(--color-page-btn-txt);
  -webkit-transform: skew(30deg) translateY(-50%);
          transform: skew(30deg) translateY(-50%);
}
.page-btn .mid {
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: 0;
}

.detail {
  --color-news-detail: var(--color-txt-100);
}
.detail-ttl {
  font-size: 28px;
  color: var(--color-news-detail);
  margin-bottom: 20px;
  line-height: 1.5;
}

/*header ---------------------------------------------*/
.header {
  height: 125px;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  overflow: hidden;
}
.header-info {
  margin-top: 27px;
  margin-bottom: 16px;
}
.header .tel-area {
  margin-right: 18px;
}
.header .tel {
  margin-bottom: 8px;
}
.header .sns-icon {
  margin-right: 20px;
}
.header .nav-list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
}
.header .nav-item {
  position: relative;
  z-index: 1;
}
.header .nav-item a {
  display: block;
}
.header .current {
  color: var(--color-main-100);
}

/*mv ---------------------------------------------*/
.mv {
  --mv-height: 805px;
  height: var(--mv-height);
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: url(/img/top/mv-bg-deco.png) no-repeat center bottom/contain, url(/img/top/mv-bg.png) no-repeat center center/cover;
}
.mv::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 795/267;
  width: 795px;
  left: calc(50% - 940px);
  bottom: 2px;
  background: url(/img/top/mv-deco-left.png) no-repeat;
  background-size: contain;
}
.mv::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 421/221;
  width: 421px;
  right: calc(50% - 646px);
  bottom: 2px;
  background: url(/img/top/mv-deco-right.png) no-repeat;
  background-size: contain;
}
.mv-catch {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 23px;
  z-index: 100;
  left: 50%;
  top: 244px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.mv-catch::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 144/143;
  width: 144px;
  top: -104px;
  left: -137px;
  background: url(/img/top/mv-catch-deco-left.png) no-repeat;
  background-size: contain;
}
.mv-catch::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 95/91;
  width: 95px;
  top: 46px;
  right: -76px;
  background: url(/img/top/mv-catch-deco-right.png) no-repeat;
  background-size: contain;
}

/*top-recruit ---------------------------------------------*/
.top-recruit {
  padding-top: var(--cmn-pd-md);
  padding-bottom: var(--cmn-pd-xl);
  position: relative;
  z-index: 1;
  background: url(/img/top/top-recruit-deco-bottom.png) no-repeat center bottom/contain;
}
.top-recruit::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 651/314;
  width: 651px;
  left: 0;
  bottom: 0;
  background: url(/img/top/top-recruit-deco-left.png) no-repeat;
  background-size: contain;
}
.top-recruit::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 273/305;
  width: 273px;
  right: 0;
  top: 181px;
  background: url(/img/top/top-recruit-deco-right.png) no-repeat;
  background-size: contain;
}
.top-recruit-ttl {
  margin-bottom: var(--ttl-mb-md);
}
.top-recruit-ttl .ttl-deco {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-bottom: 42px;
}
.top-recruit-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 2.8333333333;
  width: 34px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(/img/common/deco-dot.png) no-repeat;
  background-size: contain;
}
.top-recruit-list {
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 30px;
}
.top-recruit-item {
  width: 100%;
  max-width: 340px;
}
.top-recruit-side {
  width: 100%;
  padding: 30px 60px 40px;
  background: url(/img/common/pat01.png);
  background-color: var(--color-main-100);
  border-radius: 10px 10px 0 0;
}
.top-recruit-subttl {
  width: 100%;
  margin-bottom: 20px;
}
.top-recruit-txt {
  width: 100%;
  background: var(--color-main-500);
  padding: 24px 20px;
  text-align: center;
  border-radius: 0 0 10px 10px;
  position: relative;
  z-index: 1;
}
.top-recruit-txt::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 50/20;
  width: 50px;
  left: 50%;
  top: 0;
  -webkit-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  background: var(--color-main-300);
}
.top-recruit-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.top-recruit-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-recruit-check .check {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-left: 20px;
}
.top-recruit-check .check::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 10/10;
  width: 10px;
  left: 0;
  top: 13px;
  background: gold;
}

/*top-about ---------------------------------------------*/
.top-about {
  padding-top: var(--cmn-pd-md);
  padding-bottom: var(--cmn-pd-lg);
  background: var(--color-main-500);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.top-about::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 418/1182;
  width: 418px;
  left: 0;
  top: 287px;
  background: url(/img/top/top-about-bg-deco-l.png) no-repeat;
  background-size: contain;
}
.top-about::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 675/1658;
  width: 675px;
  right: -110px;
  bottom: 230px;
  background: url(/img/top/top-about-bg-deco-r.png) no-repeat;
  background-size: contain;
}
.top-about-ttl {
  margin-bottom: var(--ttl-mb-sm);
}
.top-about-ttl .ttl-deco {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-bottom: 42px;
}
.top-about-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 2.8333333333;
  width: 34px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(/img/common/deco-dot.png) no-repeat;
  background-size: contain;
}
.top-about-ttl .bdr {
  color: var(--color-main-100);
  display: inline-block;
  position: relative;
  z-index: 1;
}
.top-about-ttl .bdr::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 16px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: var(--color-main-300);
}
.top-about-lead {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}
.top-about-lead::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 191/200;
  width: 191px;
  left: calc(50% - 520px);
  top: 64px;
  background: url(/img/top/top-about-lead-deco-l.png) no-repeat;
  background-size: contain;
}
.top-about-lead::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 182/136;
  width: 182px;
  top: 133px;
  right: calc(50% - 520px);
  background: url(/img/top/top-about-lead-deco-r.png) no-repeat;
  background-size: contain;
}
.top-about-lead .color {
  color: var(--color-main-100);
  font-weight: var(--font-medium);
}
.top-about .list-wrapper {
  width: 100%;
  text-align: center;
}
.top-about .list-wrapper:not(:last-child) {
  margin-bottom: 50px;
}
.top-about-subttl {
  width: 100%;
  color: var(--color-white);
  padding: 7px 0;
  background: var(--color-main-100);
  border-radius: 20px 20px 0 0;
}
.top-about-list {
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 30px;
  background: url(/img/common/pat02.png);
  background-color: var(--color-white);
  padding: 50px 100px;
  border: 2px solid var(--color-main-100);
  border-radius: 0 0 20px 20px;
}
.top-about-item {
  width: 100%;
  max-width: 340px;
}
.top-about-img {
  width: 100%;
  height: 242px;
  border: 2px solid var(--color-main-100);
  border-radius: 10px;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}
.top-about-img::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 5px solid var(--color-white);
}
.top-about-img img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-about-txtarea {
  width: 100%;
}
.top-about-name {
  width: 100%;
  color: var(--color-main-100);
  padding-bottom: 15px;
  position: relative;
  z-index: 1;
}
.top-about-name::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 40px;
  height: 3px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: var(--color-main-300);
}
.top-about-txt {
  padding-top: 16px;
}

/*top-links ---------------------------------------------*/
.top-links {
  padding: var(--cmn-pd-lg) 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: url(/img/common/nami-top.png) no-repeat center top/contain, url(/img/common/nami-btm.png) no-repeat center bottom/contain, url(/img/top/top-links-deco-l.png) no-repeat left top -178px/auto, url(/img/top/top-links-deco-r-t.png) no-repeat right top -117px/auto, url(/img/top/top-links-deco-r-b.png) no-repeat right bottom -140px/auto;
}
.top-links-ttl {
  margin-bottom: var(--ttl-mb-md);
}
.top-links-ttl .bdr {
  display: inline-block;
  position: relative;
  z-index: 1;
  color: var(--color-main-100);
}
.top-links-ttl .bdr::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 16px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: var(--color-main-300);
}
.top-links-ttl .indent {
  display: inline-block;
  padding-left: 44px;
}
.top-links-ttl .ttl-deco {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-bottom: 42px;
}
.top-links-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 2.8333333333;
  width: 34px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(/img/common/deco-dot.png) no-repeat;
  background-size: contain;
}
.top-links-list {
  width: 100%;
  position: relative;
  z-index: 1;
}
.top-links-list li:nth-of-type(odd) {
  padding-left: 115px;
}
.top-links-list li:nth-of-type(odd) .top-links-txtarea {
  margin-right: 70px;
}
.top-links-list li:nth-of-type(odd) .top-links-subttl::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 363/278;
  width: 363px;
  left: -210px;
  top: -122px;
  background: url(/img/top/top-links-subttl-deco-l.png) no-repeat;
  background-size: contain;
}
.top-links-list li:nth-of-type(odd):not(:last-child) {
  margin-bottom: 130px;
}
.top-links-list li:nth-of-type(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.top-links-list li:nth-of-type(even) .top-links-txtarea {
  margin-left: 111px;
}
.top-links-list li:nth-of-type(even) .top-links-subttl::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 341/325;
  width: 341px;
  left: -108px;
  top: -166px;
  background: url(/img/top/top-links-subttl-deco-r.png) no-repeat;
  background-size: contain;
}
.top-links-list li:nth-of-type(even):not(:last-child) {
  margin-bottom: 180px;
}
.top-links-item {
  width: 100%;
}
.top-links-txtarea {
  width: 100%;
  max-width: 460px;
}
.top-links-subttl {
  width: 100%;
  margin-bottom: 40px;
  position: relative;
}
.top-links-subttl .lg {
  color: var(--color-main-100);
  font-size: 1.2380952381em;
}
.top-links-txt {
  margin-bottom: 40px;
}
.top-links-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.top-links-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*top-news ---------------------------------------------*/
.top-news {
  padding: var(--cmn-pd-md) 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: var(--color-main-500);
}
.top-news-heading {
  width: 100%;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--color-main-300);
}
.top-news-list {
  width: 100%;
  gap: 30px;
  padding-top: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.top-news-item {
  width: 100%;
  max-width: 340px;
}
.top-news-item-body {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.top-news-item-img {
  aspect-ratio: 340/240;
  width: 340px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 10px;
}
.top-news-item-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-news-item-ttl {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.top-news-item .meta {
  margin-bottom: 6px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.top-news-item .date {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 15px;
}
.top-news-item .tag-list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 7px;
}
.top-news-item .tag {
  padding: 0 18px;
  text-align: center;
  background: var(--color-main-100);
  border-radius: 12px;
}

/*==========================================
footer
===========================================*/
.footer {
  padding-bottom: 40px;
  background: var(--color-txt-100);
  color: var(--color-white);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.footer-side {
  text-align: left;
}
.footer-logo {
  margin-top: 43px;
  margin-bottom: 30px;
}
.footer-address {
  color: var(--color-white);
  margin-bottom: 22px;
}
.footer-links {
  gap: 20px;
  margin-bottom: 30px;
}
.footer .tel-area .tel-white {
  margin-bottom: 9px;
}
.footer-nav {
  margin-top: 96px;
}
.footer .nav-list {
  display: grid;
  grid-template-rows: repeat(5, auto);
  grid-auto-flow: column;
  gap: 35px 55px;
}
.footer .nav-item {
  position: relative;
  z-index: 1;
}
.footer .current {
  color: var(--color-accent-100);
}
.footer .copy-wrapper {
  text-align: center;
  margin: 0 auto;
}
.footer .copy {
  display: block;
  font-family: var(--font-main);
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.04em;
  font-weight: var(--font-normal);
  color: var(--color-white);
  padding-top: 66px;
}

/*==========================================
SV
===========================================*/
/*==========================================
sv
===========================================*/
.sv {
  --sv-height: 500px;
  height: var(--sv-height);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.sv-wrap {
  width: 100%;
  height: 100%;
}
.sv-img {
  width: 100%;
  height: 100%;
}
.sv-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sv-ttl {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.sv-ttl-deco {
  display: block;
  background: var(--color-main-100);
  border-radius: 10px;
  padding: 1.5px 34px 7.5px;
}

/*==========================================
beginner
===========================================*/
/*beginner-recruit ---------------------------------------------*/
.beginner-recruit {
  padding: var(--cmn-pd-lg) 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: url(/img/common/nami-btm.png) no-repeat center bottom/contain, url(/img/beginner/beginner-recruit-deco-left.png) no-repeat left bottom calc(clamp(11.563rem, 2.813rem + 10.94vw, 15.938rem) * -1)/clamp(26.625rem, -1.5rem + 35.16vw, 40.688rem);
}
.beginner-recruit::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 273/305;
  width: 273px;
  right: -84px;
  right: 0;
  top: 152px;
  background: url(/img/beginner/beginner-recruit-deco-right.png) no-repeat;
  background-size: contain;
}
.beginner-recruit-ttl {
  margin-bottom: var(--ttl-mb-md);
}
.beginner-recruit-ttl .ttl-deco {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-bottom: 42px;
}
.beginner-recruit-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 2.8333333333;
  width: 34px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(/img/common/deco-dot.png) no-repeat;
  background-size: contain;
}
.beginner-recruit-body {
  width: 100%;
  padding: 0 132px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.beginner-recruit-txt {
  width: 460px;
  padding: 40px;
  min-height: 200px;
  background: url(/img/common/pat01.png);
  background-color: var(--color-main-300);
  border-radius: 10px;
  position: relative;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 19px;
}
.beginner-recruit-txt::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 119/62;
  width: 119px;
  left: 16px;
  top: 90px;
  -webkit-transform: translate(-100%, 0%);
          transform: translate(-100%, 0%);
  background: url(/img/beginner/beginner-recruit-txt-deco.png) no-repeat;
  background-size: contain;
}
.beginner-recruit-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 104px;
}
.beginner-recruit-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*beginner-lead ---------------------------------------------*/
.beginner-lead {
  padding: var(--cmn-pd-md) 0;
  background: var(--color-main-500);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.beginner-lead::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 300/344;
  width: 300px;
  left: calc(50% - 710px);
  top: 108px;
  background: url(/img/beginner/beginner-lead-deco-left.png) no-repeat;
  background-size: contain;
}
.beginner-lead::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 427/428;
  width: 427px;
  right: calc(50% - 822px);
  top: 82px;
  background: url(/img/beginner/beginner-lead-deco-right.png) no-repeat;
  background-size: contain;
}
.beginner-lead-wrap {
  width: 100%;
  position: relative;
  z-index: 1;
}
.beginner-lead-wrap::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 191/200;
  width: 191px;
  left: calc(50% - 515px);
  top: 158px;
  top: calc(158px - var(--cmn-pd-md));
  background: url(/img/top/top-about-lead-deco-l.png) no-repeat;
  background-size: contain;
}
.beginner-lead-wrap::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 182/136;
  width: 182px;
  right: calc(50% - 515px);
  top: 344px;
  top: calc(344px - var(--cmn-pd-md));
  background: url(/img/top/top-about-lead-deco-r.png) no-repeat;
  background-size: contain;
}
.beginner-lead-ttl {
  margin-bottom: var(--ttl-mb-sm);
}
.beginner-lead-ttl .ttl-deco {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-bottom: 42px;
}
.beginner-lead-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 2.8333333333;
  width: 34px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(/img/common/deco-dot.png) no-repeat;
  background-size: contain;
}
.beginner-lead-ttl .bdr {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.beginner-lead-ttl .bdr::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 16px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: var(--color-main-300);
}
.beginner-lead-ttl .color {
  display: inline-block;
  color: var(--color-main-100);
}
.beginner-lead-txt {
  width: 100%;
  max-width: 570px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

/*beginner-features ---------------------------------------------*/
.beginner-features {
  padding: var(--cmn-pd-lg) 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: url(/img/common/nami-top.png) no-repeat center top/contain, url(/img/common/nami-btm.png) no-repeat center bottom/contain, url(/img/beginner/beginner-features-deco-l.png) no-repeat left -127px top -127px/auto, url(/img/beginner/beginner-features-deco-r-t.png) no-repeat right -102px top 150px/auto, url(/img/beginner/beginner-features-deco-r-b.png) no-repeat right -110px bottom -136px/auto;
}
.beginner-features-ttl {
  margin-bottom: var(--ttl-mb-md);
}
.beginner-features-ttl .ttl-deco {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-bottom: 42px;
}
.beginner-features-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 2.8333333333;
  width: 34px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(/img/common/deco-dot.png) no-repeat;
  background-size: contain;
}
.beginner-features-list {
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.beginner-features-item {
  width: 100%;
  max-width: 520px;
  position: relative;
  z-index: 1;
}
.beginner-features .num {
  display: block;
  position: absolute;
  top: 11px;
  left: 21px;
  font-family: var(--font-main);
  font-size: 75px;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: var(--font-medium);
  color: var(--color-main-300);
}
.beginner-features-heading {
  width: 100%;
  padding: 40px 30px 30px 42px;
  background: var(--color-main-100);
  border-radius: 20px 20px 0 0;
}
.beginner-features-subttl {
  width: 100%;
  text-align: center;
}
.beginner-features-txt {
  width: 100%;
  height: 100%;
  padding: 13px 20px 23px;
  background: url(/img/common/pat02.png);
  background-color: var(--color-white);
  border-radius: 0 0 20px 20px;
  border: 2px solid var(--color-main-100);
  border-top: none;
}
.beginner-features-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 180px;
  margin: 0 auto;
  margin-bottom: 16px;
}
.beginner-features-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*interview ---------------------------------------------*/
.interview {
  padding: var(--cmn-pd-md) 0;
  background: var(--color-main-500);
}
.interview-ttl {
  margin-bottom: var(--ttl-mb-md);
}
.interview-ttl .ttl-deco {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-bottom: 42px;
}
.interview-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 2.8333333333;
  width: 34px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(/img/common/deco-dot.png) no-repeat;
  background-size: contain;
}
.interview-list {
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 40px;
}
.interview-item {
  width: 100%;
}
.interview-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 15px;
  margin-right: 40px;
}
.interview-body {
  width: 100%;
  padding: 40px 60px 33px;
  margin-left: 30px;
  background: var(--color-white);
  border-radius: 20px;
  position: relative;
}
.interview-body::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 30/46;
  width: 30px;
  left: -29px;
  top: 82px;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
  background: var(--color-white);
}
.interview-header {
  width: 100%;
  border-bottom: 1px solid var(--color-main-300);
  padding-bottom: 10px;
}
.interview-subttl {
  width: 100%;
  color: var(--color-main-100);
}
.interview .gender {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-left: 30px;
  font-size: 18px;
  color: var(--color-txt-100);
}
.interview-txt {
  padding-top: 14px;
}

/*beginner-description ---------------------------------------------*/
.beginner-description {
  padding-top: var(--cmn-pd-lg);
  padding-bottom: var(--cmn-pd-md);
  overflow: hidden;
  background: url(/img/common/nami-top.png) no-repeat center top/contain, url(/img/common/nami-btm.png) no-repeat center bottom/contain;
}
.beginner-description-ttl {
  margin-bottom: var(--ttl-mb-md);
}
.beginner-description-ttl .ttl-deco {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-bottom: 42px;
}
.beginner-description-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 2.8333333333;
  width: 34px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(/img/common/deco-dot.png) no-repeat;
  background-size: contain;
}
.beginner-description .table-wrapper {
  width: 100%;
  border: 2px solid var(--color-main-100);
  border-radius: 10px;
  position: relative;
  z-index: 1;
}
.beginner-description-table {
  width: 100%;
}
.beginner-description-row {
  width: 100%;
}
.beginner-description-row:not(:last-child) th,
.beginner-description-row:not(:last-child) td {
  border-bottom: 1px solid var(--color-border-200);
}
.beginner-description-row:first-child th {
  border-radius: 5px 0 0 0;
}
.beginner-description-row:first-child td {
  border-radius: 0 5px 0 0;
}
.beginner-description-row:last-child th {
  border-radius: 0 0 0 5px;
}
.beginner-description-row:last-child td {
  border-radius: 0 0 5px 0;
}
.beginner-description-header {
  color: var(--color-white);
  width: 350px;
  padding: 16px 10px;
  background: var(--color-main-100);
  text-align: center;
}
.beginner-description-data {
  padding: 16px 29px;
}

/*==========================================
partner
===========================================*/
/*partner-recruit ---------------------------------------------*/
.partner-recruit {
  padding: var(--cmn-pd-lg) 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: url(/img/common/nami-btm.png) no-repeat center bottom/contain, url(/img/beginner/beginner-recruit-deco-left.png) no-repeat left bottom calc(clamp(11.563rem, 2.813rem + 10.94vw, 15.938rem) * -1)/clamp(26.625rem, -1.5rem + 35.16vw, 40.688rem);
}
.partner-recruit::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 273/305;
  width: 273px;
  right: -84px;
  right: 0;
  top: 152px;
  background: url(/img/beginner/beginner-recruit-deco-right.png) no-repeat;
  background-size: contain;
}
.partner-recruit-ttl {
  margin-bottom: var(--ttl-mb-md);
}
.partner-recruit-ttl .ttl-deco {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-bottom: 42px;
}
.partner-recruit-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 2.8333333333;
  width: 34px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(/img/common/deco-dot.png) no-repeat;
  background-size: contain;
}
.partner-recruit-body {
  width: 100%;
  padding: 0 132px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.partner-recruit-txt {
  width: 460px;
  padding: 40px;
  min-height: 200px;
  background: url(/img/common/pat01.png);
  background-color: var(--color-main-300);
  border-radius: 10px;
  position: relative;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 19px;
}
.partner-recruit-txt::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 119/62;
  width: 119px;
  left: 16px;
  top: 90px;
  -webkit-transform: translate(-100%, 0%);
          transform: translate(-100%, 0%);
  background: url(/img/beginner/beginner-recruit-txt-deco.png) no-repeat;
  background-size: contain;
}
.partner-recruit-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 104px;
}
.partner-recruit-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*partner-lead ---------------------------------------------*/
.partner-lead {
  padding: var(--cmn-pd-md) 0;
  background: var(--color-main-500);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.partner-lead::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 300/344;
  width: 300px;
  left: calc(50% - 710px);
  top: 108px;
  background: url(/img/beginner/beginner-lead-deco-left.png) no-repeat;
  background-size: contain;
}
.partner-lead::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 427/428;
  width: 427px;
  right: calc(50% - 822px);
  top: 82px;
  background: url(/img/beginner/beginner-lead-deco-right.png) no-repeat;
  background-size: contain;
}
.partner-lead-wrap {
  width: 100%;
  position: relative;
  z-index: 1;
}
.partner-lead-wrap::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 191/200;
  width: 191px;
  left: calc(50% - 515px);
  top: 158px;
  top: calc(158px - var(--cmn-pd-md));
  background: url(/img/top/top-about-lead-deco-l.png) no-repeat;
  background-size: contain;
}
.partner-lead-wrap::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 182/136;
  width: 182px;
  right: calc(50% - 515px);
  top: 344px;
  top: calc(344px - var(--cmn-pd-md));
  background: url(/img/top/top-about-lead-deco-r.png) no-repeat;
  background-size: contain;
}
.partner-lead-ttl {
  margin-bottom: var(--ttl-mb-sm);
}
.partner-lead-ttl .ttl-deco {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-bottom: 42px;
}
.partner-lead-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 2.8333333333;
  width: 34px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(/img/common/deco-dot.png) no-repeat;
  background-size: contain;
}
.partner-lead-ttl .bdr {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.partner-lead-ttl .bdr::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 16px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: var(--color-main-300);
}
.partner-lead-ttl .color {
  display: inline-block;
  color: var(--color-main-100);
}
.partner-lead-txt {
  width: 100%;
  max-width: 570px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

/*partner-features ---------------------------------------------*/
.partner-features {
  padding: var(--cmn-pd-lg) 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: url(/img/common/nami-top.png) no-repeat center top/contain, url(/img/common/nami-btm.png) no-repeat center bottom/contain, url(/img/beginner/beginner-features-deco-l.png) no-repeat left -127px top -127px/auto, url(/img/beginner/beginner-features-deco-r-t.png) no-repeat right -102px top 150px/auto, url(/img/beginner/beginner-features-deco-r-b.png) no-repeat right -110px bottom -136px/auto;
}
.partner-features-ttl {
  margin-bottom: var(--ttl-mb-md);
}
.partner-features-ttl .ttl-deco {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-bottom: 42px;
}
.partner-features-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 2.8333333333;
  width: 34px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(/img/common/deco-dot.png) no-repeat;
  background-size: contain;
}
.partner-features-list {
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.partner-features-item {
  width: 100%;
  max-width: 520px;
  position: relative;
  z-index: 1;
}
.partner-features .num {
  display: block;
  position: absolute;
  top: 11px;
  left: 21px;
  font-family: var(--font-main);
  font-size: 75px;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: var(--font-medium);
  color: var(--color-main-300);
}
.partner-features-heading {
  width: 100%;
  padding: 40px 30px 30px 42px;
  background: var(--color-main-100);
  border-radius: 20px 20px 0 0;
}
.partner-features-subttl {
  width: 100%;
  text-align: center;
}
.partner-features-txt {
  width: 100%;
  height: 100%;
  padding: 13px 20px 23px;
  background: url(/img/common/pat02.png);
  background-color: var(--color-white);
  border-radius: 0 0 20px 20px;
  border: 2px solid var(--color-main-100);
  border-top: none;
}
.partner-features-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 180px;
  margin: 0 auto;
  margin-bottom: 16px;
}
.partner-features-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*partner-description ---------------------------------------------*/
.partner-description {
  padding-top: var(--cmn-pd-lg);
  padding-bottom: var(--cmn-pd-md);
  overflow: hidden;
  background: url(/img/common/nami-top.png) no-repeat center top/contain, url(/img/common/nami-btm.png) no-repeat center bottom/contain;
}
.partner-description-ttl {
  margin-bottom: var(--ttl-mb-md);
}
.partner-description-ttl .ttl-deco {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-bottom: 42px;
}
.partner-description-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 2.8333333333;
  width: 34px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(/img/common/deco-dot.png) no-repeat;
  background-size: contain;
}
.partner-description .table-wrapper {
  width: 100%;
  border: 2px solid var(--color-main-100);
  border-radius: 10px;
  position: relative;
  z-index: 1;
}
.partner-description-table {
  width: 100%;
}
.partner-description-row {
  width: 100%;
}
.partner-description-row:not(:last-child) th,
.partner-description-row:not(:last-child) td {
  border-bottom: 1px solid var(--color-border-200);
}
.partner-description-row:first-child th {
  border-radius: 5px 0 0 0;
}
.partner-description-row:first-child td {
  border-radius: 0 5px 0 0;
}
.partner-description-row:last-child th {
  border-radius: 0 0 0 5px;
}
.partner-description-row:last-child td {
  border-radius: 0 0 5px 0;
}
.partner-description-header {
  color: var(--color-white);
  width: 350px;
  padding: 16px 10px;
  background: var(--color-main-100);
  text-align: center;
}
.partner-description-data {
  padding: 16px 29px;
}

/*works ---------------------------------------------*/
.works {
  padding: var(--cmn-pd-md) 0;
  background: var(--color-main-500);
  overflow: hidden;
}
.works-ttl {
  margin-bottom: var(--ttl-mb-md);
}
.works-ttl .ttl-deco {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-bottom: 42px;
}
.works-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 2.8333333333;
  width: 34px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(/img/common/deco-dot.png) no-repeat;
  background-size: contain;
}
.works-list {
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.works-item {
  width: 100%;
  max-width: 340px;
  padding: 10px 10px 20px;
  background: var(--color-white);
  border-radius: 10px;
}
.works-img {
  aspect-ratio: 320/220;
  width: 320px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  border-radius: 5px;
  overflow: hidden;
}
.works-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.works-txtarea {
  width: 100%;
}
.works-subttl {
  width: 100%;
  font-family: var(--font-sub);
  font-weight: var(--font-bold);
  color: var(--color-main-100);
  border-bottom: 1px solid var(--color-main-300);
  text-align: center;
}
.works-txt {
  padding: 9px 10px 0;
}

/*==========================================
self-employed
===========================================*/
/*self-employed-recruit ---------------------------------------------*/
.self-employed-recruit {
  padding: var(--cmn-pd-lg) 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: url(/img/common/nami-btm.png) no-repeat center bottom/contain, url(/img/beginner/beginner-recruit-deco-left.png) no-repeat left bottom calc(clamp(11.563rem, 2.813rem + 10.94vw, 15.938rem) * -1)/clamp(26.625rem, -1.5rem + 35.16vw, 40.688rem);
}
.self-employed-recruit::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 273/305;
  width: 273px;
  right: -84px;
  right: 0;
  top: 152px;
  background: url(/img/beginner/beginner-recruit-deco-right.png) no-repeat;
  background-size: contain;
}
.self-employed-recruit-ttl {
  margin-bottom: var(--ttl-mb-md);
}
.self-employed-recruit-ttl .ttl-deco {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-bottom: 42px;
}
.self-employed-recruit-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 2.8333333333;
  width: 34px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(/img/common/deco-dot.png) no-repeat;
  background-size: contain;
}
.self-employed-recruit-body {
  width: 100%;
  padding: 0 132px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.self-employed-recruit-txt {
  width: 460px;
  padding: 40px;
  min-height: 200px;
  background: url(/img/common/pat01.png);
  background-color: var(--color-main-300);
  border-radius: 10px;
  position: relative;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 19px;
}
.self-employed-recruit-txt::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 119/62;
  width: 119px;
  left: 16px;
  top: 90px;
  -webkit-transform: translate(-100%, 0%);
          transform: translate(-100%, 0%);
  background: url(/img/beginner/beginner-recruit-txt-deco.png) no-repeat;
  background-size: contain;
}
.self-employed-recruit-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 104px;
}
.self-employed-recruit-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*self-employed-lead ---------------------------------------------*/
.self-employed-lead {
  padding: var(--cmn-pd-md) 0;
  background: var(--color-main-500);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.self-employed-lead::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 300/344;
  width: 300px;
  left: calc(50% - 710px);
  top: 108px;
  background: url(/img/beginner/beginner-lead-deco-left.png) no-repeat;
  background-size: contain;
}
.self-employed-lead::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 427/428;
  width: 427px;
  right: calc(50% - 822px);
  top: 82px;
  background: url(/img/beginner/beginner-lead-deco-right.png) no-repeat;
  background-size: contain;
}
.self-employed-lead-wrap {
  width: 100%;
  position: relative;
  z-index: 1;
}
.self-employed-lead-wrap::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 191/200;
  width: 191px;
  left: calc(50% - 515px);
  top: 158px;
  top: calc(158px - var(--cmn-pd-md));
  background: url(/img/top/top-about-lead-deco-l.png) no-repeat;
  background-size: contain;
}
.self-employed-lead-wrap::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 182/136;
  width: 182px;
  right: calc(50% - 515px);
  top: 344px;
  top: calc(344px - var(--cmn-pd-md));
  background: url(/img/top/top-about-lead-deco-r.png) no-repeat;
  background-size: contain;
}
.self-employed-lead-ttl {
  margin-bottom: var(--ttl-mb-sm);
}
.self-employed-lead-ttl .ttl-deco {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-bottom: 42px;
}
.self-employed-lead-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 2.8333333333;
  width: 34px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(/img/common/deco-dot.png) no-repeat;
  background-size: contain;
}
.self-employed-lead-ttl .bdr {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.self-employed-lead-ttl .bdr::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 16px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: var(--color-main-300);
}
.self-employed-lead-ttl .color {
  display: inline-block;
  color: var(--color-main-100);
}
.self-employed-lead-txt {
  width: 100%;
  max-width: 570px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

/*self-employed-features ---------------------------------------------*/
.self-employed-features {
  padding: var(--cmn-pd-lg) 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: url(/img/common/nami-top.png) no-repeat center top/contain, url(/img/common/nami-btm.png) no-repeat center bottom/contain, url(/img/beginner/beginner-features-deco-l.png) no-repeat left -127px top -127px/auto, url(/img/beginner/beginner-features-deco-r-t.png) no-repeat right -102px top 150px/auto, url(/img/beginner/beginner-features-deco-r-b.png) no-repeat right -110px bottom -136px/auto;
}
.self-employed-features-ttl {
  margin-bottom: var(--ttl-mb-md);
}
.self-employed-features-ttl .ttl-deco {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-bottom: 42px;
}
.self-employed-features-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 2.8333333333;
  width: 34px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(/img/common/deco-dot.png) no-repeat;
  background-size: contain;
}
.self-employed-features-list {
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.self-employed-features-item {
  width: 100%;
  max-width: 520px;
  position: relative;
  z-index: 1;
}
.self-employed-features .num {
  display: block;
  position: absolute;
  top: 11px;
  left: 21px;
  font-family: var(--font-main);
  font-size: 75px;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: var(--font-medium);
  color: var(--color-main-300);
}
.self-employed-features-heading {
  width: 100%;
  padding: 40px 30px 30px 42px;
  background: var(--color-main-100);
  border-radius: 20px 20px 0 0;
}
.self-employed-features-subttl {
  width: 100%;
  text-align: center;
}
.self-employed-features-txt {
  width: 100%;
  height: 100%;
  padding: 13px 20px 23px;
  background: url(/img/common/pat02.png);
  background-color: var(--color-white);
  border-radius: 0 0 20px 20px;
  border: 2px solid var(--color-main-100);
  border-top: none;
}
.self-employed-features-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 180px;
  margin: 0 auto;
  margin-bottom: 16px;
}
.self-employed-features-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*self-employed-description ---------------------------------------------*/
.self-employed-description {
  padding-top: var(--cmn-pd-lg);
  padding-bottom: var(--cmn-pd-md);
  overflow: hidden;
  background: url(/img/common/nami-top.png) no-repeat center top/contain, url(/img/common/nami-btm.png) no-repeat center bottom/contain;
}
.self-employed-description-ttl {
  margin-bottom: var(--ttl-mb-md);
}
.self-employed-description-ttl .ttl-deco {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-bottom: 42px;
}
.self-employed-description-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 2.8333333333;
  width: 34px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(/img/common/deco-dot.png) no-repeat;
  background-size: contain;
}
.self-employed-description .table-wrapper {
  width: 100%;
  border: 2px solid var(--color-main-100);
  border-radius: 10px;
  position: relative;
  z-index: 1;
}
.self-employed-description-table {
  width: 100%;
}
.self-employed-description-row {
  width: 100%;
}
.self-employed-description-row:not(:last-child) th,
.self-employed-description-row:not(:last-child) td {
  border-bottom: 1px solid var(--color-border-200);
}
.self-employed-description-row:first-child th {
  border-radius: 5px 0 0 0;
}
.self-employed-description-row:first-child td {
  border-radius: 0 5px 0 0;
}
.self-employed-description-row:last-child th {
  border-radius: 0 0 0 5px;
}
.self-employed-description-row:last-child td {
  border-radius: 0 0 5px 0;
}
.self-employed-description-header {
  color: var(--color-white);
  width: 350px;
  padding: 16px 10px;
  background: var(--color-main-100);
  text-align: center;
}
.self-employed-description-data {
  padding: 16px 29px;
}

/*faq ---------------------------------------------*/
.faq {
  padding: var(--cmn-pd-md) 0;
  background: var(--color-main-500);
  overflow: hidden;
}
.faq-ttl {
  margin-bottom: var(--ttl-mb-md);
}
.faq-ttl .ttl-deco {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-bottom: 42px;
}
.faq-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 2.8333333333;
  width: 34px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(/img/common/deco-dot.png) no-repeat;
  background-size: contain;
}
.faq-list {
  width: 100%;
  gap: 40px;
}
.faq-item {
  width: 100%;
}
.faq-term {
  width: 100%;
  font-family: var(--font-sub);
  color: var(--color-white);
  font-weight: var(--font-bold);
  padding: 22px 50px;
  padding-left: 103px;
  background: var(--color-main-100);
  border-radius: 10px 10px 0 0;
  position: relative;
  z-index: 1;
}
.faq-term .en {
  display: block;
  position: absolute;
  left: 50px;
  top: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-family: var(--font-sub);
  font-size: 26px;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: var(--font-bold);
  color: var(--color-main-100);
  width: 40px;
  padding: 6px 0px 8px;
  text-align: center;
  border-radius: 50%;
  background: var(--color-white);
}
.faq-definition {
  width: 100%;
  padding: 31px 50px;
  padding-left: 103px;
  background: var(--color-white);
  border-radius: 0 0 10px 10px;
  position: relative;
  z-index: 1;
}
.faq-definition .en {
  display: block;
  position: absolute;
  left: 50px;
  top: 25px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-family: var(--font-sub);
  font-size: 26px;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: var(--font-bold);
  color: var(--color-white);
  width: 40px;
  padding: 5px 0px 9px;
  text-align: center;
  border-radius: 50%;
  background: var(--color-accent-100);
}
/*==========================================
company
===========================================*/
/*greeting ---------------------------------------------*/
.greeting {
  padding: var(--cmn-pd-lg) 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: url(/img/common/nami-btm.png) no-repeat center bottom/contain, url(/img/beginner/beginner-recruit-deco-left.png) no-repeat left bottom -190px/clamp(26.625rem, -1.5rem + 35.16vw, 40.688rem);
}
.greeting::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 273/305;
  width: 273px;
  right: 0;
  top: 272px;
  background: url(/img/beginner/beginner-recruit-deco-right.png) no-repeat;
  background-size: contain;
}
.greeting-ttl {
  margin-bottom: var(--ttl-mb-md);
}
.greeting-ttl .ttl-deco {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-bottom: 42px;
}
.greeting-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 2.8333333333;
  width: 34px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(/img/common/deco-dot.png) no-repeat;
  background-size: contain;
}
.greeting-body {
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.greeting-txt {
  width: 730px;
  padding: 32px 40px 20px;
  background: url(/img/common/pat01.png);
  background-color: var(--color-main-300);
  border-radius: 10px;
  position: relative;
}
.greeting-txt::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 119/62;
  width: 119px;
  left: 8px;
  top: calc(50% + 26px);
  -webkit-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%);
  background: url(/img/beginner/beginner-recruit-txt-deco.png) no-repeat;
  background-size: contain;
}
.greeting-txt .cmn-txt-mb {
  margin-bottom: 1em;
}
.greeting-name {
  margin-top: 21px;
  font-family: var(--font-sub);
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.06em;
  font-weight: var(--font-bold);
  color: var(--color-txt-100);
  text-align: right;
}
.greeting-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 110px;
}
.greeting-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*com-info ---------------------------------------------*/
.com-info {
  padding: var(--cmn-pd-md) 0;
  background: var(--color-main-500);
  overflow: hidden;
}
.com-info-ttl {
  margin-bottom: var(--ttl-mb-md);
}
.com-info-ttl .ttl-deco {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-bottom: 42px;
}
.com-info-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 2.8333333333;
  width: 34px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(/img/common/deco-dot.png) no-repeat;
  background-size: contain;
}
.com-info .table-wrapper {
  width: 100%;
  border: 2px solid var(--color-main-100);
  border-radius: 10px;
  position: relative;
  z-index: 1;
  margin-bottom: 50px;
}
.com-info-table {
  width: 100%;
}
.com-info-row {
  width: 100%;
}
.com-info-row:not(:last-child) th,
.com-info-row:not(:last-child) td {
  border-bottom: 1px solid var(--color-border-200);
}
.com-info-row:first-child th {
  border-radius: 5px 0 0 0;
}
.com-info-row:first-child td {
  border-radius: 0 9px 0 0;
}
.com-info-row:last-child th {
  border-radius: 0 0 0 5px;
}
.com-info-row:last-child td {
  border-radius: 0 0 9px 0;
}
.com-info-header {
  color: var(--color-white);
  width: 350px;
  padding: 16px 10px;
  background: var(--color-main-100);
  text-align: center;
}
.com-info-data {
  padding: 16px 29px;
  background: var(--color-white);
}
.com-info-data .tel-svg {
  display: inline-block;
  margin-left: 8px;
}
.com-info iframe {
  width: 100%;
  height: 380px;
  display: block;
  border: none;
  border-radius: 10px;
}

/*news ---------------------------------------------*/
.news .top-news-list {
  padding: 0;
}
.news .top-news-item-ttl {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.detail .meta {
  margin-bottom: 60px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.detail .date {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 15px;
}
.detail .tag-list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 7px;
}
.detail .tag {
  padding: 0 18px;
  text-align: center;
  background: var(--color-main-100);
  border-radius: 12px;
}

.form,
.complete,
.notfound,
.privacy,
.site-map,
.news,
.detail {
  padding: var(--cmn-pd-md) 0;
  overflow: hidden;
}

.form-ttl,
.complete-ttl,
.notfound-ttl,
.privacy-ttl,
.site-map-ttl,
.news-ttl {
  margin-bottom: var(--ttl-mb-md);
}
.form-ttl .ttl-deco,
.complete-ttl .ttl-deco,
.notfound-ttl .ttl-deco,
.privacy-ttl .ttl-deco,
.site-map-ttl .ttl-deco,
.news-ttl .ttl-deco {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-bottom: 42px;
}
.form-ttl .ttl-deco::before,
.complete-ttl .ttl-deco::before,
.notfound-ttl .ttl-deco::before,
.privacy-ttl .ttl-deco::before,
.site-map-ttl .ttl-deco::before,
.news-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 2.8333333333;
  width: 34px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(/img/common/deco-dot.png) no-repeat;
  background-size: contain;
}

#contact {
  --color-contact-main: var(--color-main-100);
  --color-contact-required-mark-txt: var(--color-white);
  --color-contact-required-mark-bg: var(--color-accent-100);
  --color-contact-th-bg: var(--color-txt-100);
  --color-contact-th-txt: var(--color-white);
  --color-contact-td-bg: #fff;
  --color-contact-disabled-bg: #ccc;
  --color-contact-disabled-txt: #777;
}

.tag-change {
  --color-tag-change-current-bg: var(--color-main-100);
}