@charset "UTF-8";
/* =====================
	全体設定
 ======================= */
/** -------------------- 基本設定 -------------------- **/
body {
  font-family: var(--font_ja);
  /*font-size: 18px;*/
  font-size: clamp(12px, 0.9375vw, 0.9375vw);
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--c_text);
}
body * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  max-width: 100%;
  display: block;
}

.clearfix {
  clear: both;
}

a {
  color: var(--c_text);
  -webkit-transition: var(--anim);
  transition: var(--anim);
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
}

/** -------------------- 基本レイアウト -------------------- **/
.section {
  padding: 5.208% 0;
}
.section:nth-of-type(odd):nth-of-type(n+2) {
  background: var(--c_bg);
}

.inner800 {
  width: 41.667%;
  margin: 0 auto;
}

.inner1000 {
  width: 52.083%;
  margin: 0 auto;
}

.inner1200 {
  width: 62.5%;
  margin: 0 auto;
}

.inner1300 {
  width: 67.708%;
  margin: 0 auto;
}

/** -------------------- ヘッダー -------------------- **/
.header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: var(--c_wht);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 2.556em;
     -moz-column-gap: 2.556em;
          column-gap: 2.556em;
  padding: 0 2.556em;
}
.header .header-logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: auto;
  font-family: var(--font_title);
}
.header .header-logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .header-logo-img {
  max-width: 9.778em;
  height: 5em;
}
.header .header-logo-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center right;
     object-position: center right;
}
.header .header-logo-name {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 150%;
  font-weight: 700;
}
.header .header-logo-name + .header-logo-txt {
  font-weight: 700;
}
.header .header-logo-txt {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 150%;
  font-weight: 500;
  padding-left: 0.889em;
  margin-left: 0.889em;
  border-left: 1px solid var(--c_border);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .header-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-column-gap: 1.333em;
     -moz-column-gap: 1.333em;
          column-gap: 1.333em;
}
.header .header-cta-tel a {
  font-size: 111.111%;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.25em;
     -moz-column-gap: 0.25em;
          column-gap: 0.25em;
  pointer-events: none;
}
.header .header-cta-tel a:before {
  content: "";
  width: 1em;
  height: 1em;
  background: url(../img/common/icon_tel.png) no-repeat center/contain;
  -webkit-filter: var(--filter_text);
          filter: var(--filter_text);
}
.header .header-cta-form {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 9.444em;
          flex: 0 0 9.444em;
}
.header .header-cta-form a {
  font-family: var(--font_title);
  font-size: 111.111%;
  font-weight: 700;
  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;
  -webkit-column-gap: 0.25em;
     -moz-column-gap: 0.25em;
          column-gap: 0.25em;
  width: 100%;
  height: 100%;
  padding: 0.5em;
  min-height: 4.5em;
  color: var(--c_acc_txt);
  background: var(--c_acc);
}
.header .header-cta-form a:before, .header .header-cta-form a:after {
  -webkit-filter: var(--filter_acc_txt);
          filter: var(--filter_acc_txt);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: var(--anim);
  transition: var(--anim);
}
.header .header-cta-form a:hover {
  opacity: 1;
  background: var(--c_hover);
}
.header .header-cta-form--entry a:before {
  content: "";
  width: 1em;
  height: 1em;
  background: url(../img/common/icon_entry.png) no-repeat center/contain;
}
.header .header-cta-form--contact a:before {
  content: "";
  width: 1em;
  height: 1em;
  background: url(../img/common/icon_contact.png) no-repeat center/contain;
}
.header .header-trigger {
  width: 2.222em;
  height: 1.556em;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  cursor: pointer;
}
.header .header-trigger span {
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 3px;
  border-radius: 50px;
  background: var(--c_border);
  -webkit-transition: var(--anim);
  transition: var(--anim);
}
.header .header-trigger span:first-child {
  top: 0;
}
.header .header-trigger span:nth-child(2), .header .header-trigger span:nth-child(3) {
  top: 0;
  bottom: 0;
}
.header .header-trigger span:last-child {
  bottom: 0;
}
.header .header-trigger.is-open span:first-child, .header .header-trigger.is-open span:last-child {
  opacity: 0;
}
.header .header-trigger.is-open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header .header-trigger.is-open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.header .header-menu {
  position: fixed;
  right: 0;
  top: 5em;
  width: 100%;
  max-height: calc(100% - 5em);
  overflow-x: hidden;
  overflow-y: auto;
  padding: 2.604%;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateX(1em);
          transform: translateX(1em);
  -webkit-transition: var(--anim);
  transition: var(--anim);
  background: var(--c_sub);
  color: var(--c_sub_txt);
}
.header .header-menu.is-open {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.header .header-menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 133.333%;
  font-weight: 500;
  gap: 1.5em 3em;
}
.header .header-menu-list a {
  text-decoration: underline;
  text-underline-offset: 0.25em;
  text-decoration-color: transparent;
  color: var(--c_sub_txt);
}
.header .header-menu-list a:hover {
  opacity: 1;
  text-decoration-color: currentColor;
}

/** -------------------- フッター -------------------- **/
.footer {
  background: var(--c_sub);
  color: var(--c_sub_txt);
  padding: 4.167% 0;
}
.footer a {
  color: var(--c_sub_txt);
}
.footer .footer-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer .footer-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 2.222em;
}
.footer .footer-right {
  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: end;
      -ms-flex-align: end;
          align-items: flex-end;
  row-gap: 2.222em;
}
.footer .footer-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer .footer-logo-img img {
  max-width: 9.778em;
  max-height: 5em;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center right;
     object-position: center right;
}
.footer .footer-logo-name {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-family: var(--font_title);
  font-size: 250%;
  font-weight: 700;
  background: var(--c_sub2);
  color: var(--c_sub2_txt);
  padding-left: 0.25em;
}
.footer .footer-logo-name + .footer-logo-txt {
  font-size: 250%;
  font-weight: 700;
  border: 0;
  margin-left: 0;
  background: var(--c_sub2);
  color: var(--c_sub2_txt);
  padding-right: 0.25em;
}
.footer .footer-logo-txt {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-family: var(--font_title);
  font-size: 150%;
  font-weight: 500;
  padding-left: 0.889em;
  margin-left: 0.889em;
  border-left: 1px solid var(--c_border);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer .footer-profile {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1em 1fr;
  grid-template-columns: auto 1fr;
  gap: 0 1em;
}
.footer .footer-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.111em;
}
.footer .footer-sns > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 1.667em;
          flex: 0 0 1.667em;
}
.footer .footer-sitemap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 4.444em auto;
  grid-template-columns: auto auto;
  gap: 1.67em 4.444em;
  font-weight: 700;
  line-height: 1.67;
}
.footer .footer-other a {
  font-size: 111.111%;
  font-weight: 700;
  display: block;
  text-align: center;
  background: var(--c_wht);
  color: var(--c_acc);
  border: 3px solid var(--c_acc);
  border-radius: 100px;
  padding: 1.2em 2em;
  min-width: 17.5em;
  position: relative;
}
.footer .footer-other a:after {
  content: "";
  width: 0.8em;
  height: 1em;
  background: url(../img/common/arrow.png) no-repeat center/contain;
  position: absolute;
  right: 0.8em;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-filter: var(--filter_acc);
          filter: var(--filter_acc);
  -webkit-transition: var(--anim);
  transition: var(--anim);
}
.footer .footer-other a:hover {
  opacity: 1;
  background: var(--c_hover);
  color: var(--c_wht);
}
.footer .footer-other a:hover:after {
  -webkit-filter: var(--filter_wht);
          filter: var(--filter_wht);
}

/** -------------------- 共通パーツ -------------------- **/
.section-title {
  font-family: var(--font_title);
  text-align: center;
  margin-bottom: 4.444em;
}

.section-title-jp {
  font-size: 266.667%;
  font-weight: 700;
}

.section-title-eng {
  font-size: 177.778%;
  font-weight: 700;
}
.section-title-eng:before {
  content: "- ";
}
.section-title-eng:after {
  content: " -";
}

.section-lead {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 44.444em;
  margin: 0 auto 4.444em;
}

.page-header {
  background: var(--c_base);
  text-align: center;
}
.page-header-title {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--c_base_txt);
  min-height: 11.111em;
  padding: 1.778em 0;
  font-family: var(--font_title);
}
.page-header-title-main {
  font-size: 277.778%;
  font-weight: 700;
}
.page-header-title-sub {
  font-size: 177.778%;
  font-weight: 500;
}

a.btn {
  font-size: 111.111%;
  font-weight: 700;
  display: block;
  text-align: center;
  background: var(--c_wht);
  color: var(--c_base);
  border: 3px solid var(--c_base);
  border-radius: 100px;
  padding: 1.2em 2em;
  min-width: 17.5em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
}
a.btn:after {
  content: "";
  width: 0.8em;
  height: 1em;
  background: url(../img/common/arrow.png) no-repeat center/contain;
  position: absolute;
  right: 0.8em;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-filter: var(--filter_base);
          filter: var(--filter_base);
  -webkit-transition: var(--anim);
  transition: var(--anim);
}
a.btn:hover {
  opacity: 1;
  background: var(--c_base);
  color: var(--c_wht);
}
a.btn:hover:after {
  -webkit-filter: var(--filter_wht);
          filter: var(--filter_wht);
}

/* PCのみ
  ------------------------ */
@media (min-width: 700px) {
  .sm-only {
    display: none !important;
  }
}
/* タブレット
  ------------------------ */
@media (max-width: 1280px) {
  .inner800 {
    width: 70%;
  }
  .inner1000 {
    width: 80%;
  }
  .inner1200 {
    width: 86%;
  }
  .inner1300 {
    width: 90%;
  }
}
/* スマホ
  ------------------------ */
@media (max-width: 699px) {
  body {
    font-size: 16px;
  }
  .pc-only {
    display: none !important;
  }
  /** -------------------- 基本レイアウト -------------------- **/
  .section {
    padding: 50px 0;
  }
  [class^=inner] {
    width: 100%;
    padding: 0 20px;
  }
  /** -------------------- ヘッダー -------------------- **/
  .header {
    -webkit-column-gap: 12px;
       -moz-column-gap: 12px;
            column-gap: 12px;
    padding: 0 20px;
    height: 50px;
  }
  .header .header-logo-img {
    max-width: 100px;
    height: 50px;
  }
  .header .header-logo-name {
    font-size: 100%;
  }
  .header .header-logo-txt {
    font-size: 100%;
    padding-left: 0.5em;
    margin-left: 0.5em;
  }
  .header .header-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
  .header .header-cta-tel {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    background: var(--c_wht);
  }
  .header .header-cta-tel a {
    font-size: 18px;
    height: 100%;
    min-height: 50px;
    background: var(--c_sub);
    color: var(--c_sub_txt);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    pointer-events: auto;
  }
  .header .header-cta-tel a:before {
    -webkit-filter: var(--filter_sub_txt);
            filter: var(--filter_sub_txt);
  }
  .header .header-cta-form {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .header .header-cta-form a {
    font-size: 18px;
    min-height: 50px;
  }
  .header .header-trigger {
    width: 32px;
    height: 28px;
  }
  .header .header-trigger span {
    width: 24px;
    height: 2px;
    right: 0;
  }
  .header .header-trigger span:first-child {
    top: 6px;
  }
  .header .header-trigger span:last-child {
    bottom: 6px;
  }
  .header .header-menu {
    top: 50px;
    max-height: calc(100% - 50px);
    padding: 20px 0;
  }
  .header .header-menu-list {
    font-size: 16px;
  }
  .header .header-menu-list > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }
  /** -------------------- フッター -------------------- **/
  .footer {
    padding: 40px 0;
    margin-bottom: 50px;
  }
  .footer .footer-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto;
    grid-template-columns: auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    row-gap: 32px;
  }
  .footer .footer-left {
    row-gap: 16px;
  }
  .footer .footer-right {
    row-gap: 16px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .footer .footer-logo-img img {
    max-width: 100px;
    max-height: 50px;
  }
  .footer .footer-logo-name {
    font-size: 18px;
  }
  .footer .footer-logo-name + .footer-logo-txt {
    font-size: 18px;
  }
  .footer .footer-logo-txt {
    font-size: 18px;
  }
  .footer .footer-profile {
    font-size: 14px;
  }
  .footer .footer-sns {
    gap: 16px;
  }
  .footer .footer-sns > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 24px;
            flex: 0 0 24px;
  }
  .footer .footer-sitemap {
    gap: 0.5em 2em;
    font-size: 14px;
  }
  .footer .footer-other a {
    font-size: 16px;
    border-width: 2px;
    padding: 12px 28px;
  }
  /** -------------------- 共通パーツ -------------------- **/
  .section-title {
    margin-bottom: 40px;
  }
  .section-title-jp {
    font-size: 28px;
  }
  .section-title-eng {
    font-size: 18px;
  }
  .section-lead {
    max-width: none;
    margin-bottom: 40px;
  }
  .page-header-title {
    min-height: 120px;
    padding: 20px 0;
  }
  .page-header-title-main {
    font-size: 28px;
  }
  .page-header-title-sub {
    font-size: 18px;
  }
  a.btn {
    font-size: 16px;
    border-width: 2px;
    padding: 12px 28px;
  }
}
/* =====================
	TOPページ
 ======================= */
/** -------------------- MV -------------------- **/
section.mv {
  position: relative;
}
section.mv .mv-bg img {
  width: 100%;
}
section.mv .mv-container {
  position: absolute;
  left: 0;
  top: 0;
  width: 39.792%;
  height: 100%;
  background: var(--c_base);
  color: var(--c_base_txt);
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
section.mv .mv-title {
  text-align: center;
  font-family: var(--font_title);
  font-size: 244.444%;
  font-weight: 800;
  padding: 0 1em;
}

/** -------------------- About -------------------- **/
section.about .about-catchcopy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 8.889em;
}
section.about .about-catchcopy-img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  -webkit-transform: translateY(-4.444em);
          transform: translateY(-4.444em);
}
section.about .about-catchcopy-img img {
  width: 100%;
}
section.about .about-catchcopy-txtbox {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  background: var(--c_sub2);
  color: var(--c_sub2_txt);
  padding: 3.667em 2.222em;
}
section.about .about-catchcopy-txtbox-in {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
section.about .about-catchcopy-title {
  font-family: var(--font_title);
  font-size: 177.778%;
  font-weight: 700;
  margin-bottom: 1.25em;
}
section.about .about-catchcopy-title:last-child {
  margin-bottom: 0;
}

/** -------------------- Job -------------------- **/
section.job .job-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2em 1fr 2em 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.222em 2em;
}
section.job .job-list-item {
  border: 0.5px solid var(--c_border);
  background: var(--c_wht);
}
section.job .job-list-item-header {
  position: relative;
  width: 100%;
  padding-top: 52.846%;
}
section.job .job-list-item-img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
section.job .job-list-item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.job .job-list-item-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  color: var(--c_base_txt);
  font-family: var(--font_title);
  font-size: 133.333%;
  font-weight: 700;
  padding: 0.625em 1.25em;
  z-index: 2;
}
section.job .job-list-item-title:before {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--c_base);
  opacity: 0.55;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
section.job .job-list-item-body {
  padding: 1.5em;
}

/** -------------------- Data -------------------- **/
section.data .data-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2.778em 1fr 2.778em 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.389em 2.778em;
}
section.data .data-list-item {
  background: var(--c_sub);
  color: var(--c_sub_txt);
  -webkit-box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.16);
          box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.16);
  text-align: center;
  padding: 1.556em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  opacity: 0;
  -webkit-transform: translateY(0.5em);
          transform: translateY(0.5em);
  -webkit-transition: var(--anim);
  transition: var(--anim);
}
section.data .data-list-item.is-show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
section.data .data-list-item-title {
  font-family: var(--font_title);
  font-size: 177.778%;
  font-weight: 700;
}
section.data .data-list-item-main {
  font-size: 177.778%;
  font-weight: 700;
}
section.data .data-list-item-main > span {
  font-size: 175%;
}
section.data .data-list-item-main > span > span {
  font-size: 142.857%;
}
section.data .data-list-item-note {
  font-size: 77.778%;
  font-weight: 500;
  margin: -1em 0 1em;
}
section.data .data-list-item-img {
  width: 76%;
  padding-top: 57.377%;
  margin: auto auto 0;
  position: relative;
}
section.data .data-list-item-img img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

/** -------------------- Interview -------------------- **/
.interview .interview-block {
  margin-bottom: 10%;
}
.interview .interview-block:last-child {
  margin-bottom: 0;
}
.interview .interview-block-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 8%;
}
.interview .interview-block-img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 60%;
          flex: 0 0 60%;
  position: relative;
  z-index: 2;
}
.interview .interview-block-profile {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 32.5%;
          flex: 0 0 32.5%;
  margin-left: -5.3%;
  -webkit-transform: translateY(1.167em);
          transform: translateY(1.167em);
  background: var(--c_sub);
  color: var(--c_sub_txt);
  padding: 1.5em 1.667em 1.5em 4.611em;
}
.interview .interview-block-title {
  font-size: 133.333%;
  font-weight: 700;
}
.interview .interview-block-title > span {
  font-size: 83.333%;
}
.interview .interview-block-position {
  margin-top: 1.818em;
  font-size: 122.222%;
  font-weight: 700;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1em 1fr;
  grid-template-columns: auto 1fr;
  gap: 0 1em;
}
.interview .interview-block-q {
  margin-top: 4%;
  position: relative;
  z-index: 2;
  padding: 0.444em 0.889em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: var(--c_sub2_txt);
  background: var(--c_sub2);
}
.interview .interview-block-q:before {
  content: "Q：";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 111.111%;
  font-weight: 700;
}
.interview .interview-block-q > * {
  font-size: 111.111%;
  font-weight: 700;
}
.interview .interview-block-a {
  padding: 0.667em 0 0.667em 0.889em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.interview .interview-block-a:before {
  content: "A：";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 111.111%;
}

/** -------------------- Message -------------------- **/
section.message .message-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
section.message .message-left {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 41.667%;
          flex: 0 0 41.667%;
}
section.message .message-right {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 58.333%;
          flex: 0 0 58.333%;
  margin-top: 6.667%;
  background: var(--c_sub2);
  color: var(--c_sub2_txt);
  padding: 5.417% 3.333% 7%;
}
section.message .message-name {
  margin-top: 0.875em;
  font-size: 177.778%;
  font-weight: 700;
}
section.message .message-name-position {
  font-size: 62.5%;
  font-weight: 700;
  display: block;
}
section.message .message-catchcopy {
  font-family: var(--font_title);
  font-size: 177.778%;
  font-weight: 700;
  margin-bottom: 1.25em;
}
section.message .message-txtbox p + p {
  margin-top: 1.5em;
}

/** -------------------- Flow -------------------- **/
section.flow .flow-list-item {
  margin-bottom: 2.778em;
  counter-increment: cnt;
}
section.flow .flow-list-item:last-child {
  margin-bottom: 0;
}
section.flow .flow-list-item-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-column-gap: 1em;
     -moz-column-gap: 1em;
          column-gap: 1em;
  font-size: 177.778%;
  font-weight: 700;
}
section.flow .flow-list-item-title:before {
  content: counter(cnt);
  background: var(--c_sub);
  color: var(--c_sub_txt);
  border-radius: 50%;
  width: 1.563em;
  height: 1.563em;
  padding: 0 0 0.125em 0.063em;
  -ms-flex-negative: 0;
      flex-shrink: 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;
}
section.flow .flow-list-item-txtbox {
  padding: 1.111em 0 0 4.556em;
}
section.flow .flow-list-item-txtbox a {
  text-decoration: underline;
  text-underline-offset: 0.111em;
}

/** -------------------- Requirements -------------------- **/
section.requirements .requirements-table {
  width: 100%;
  table-layout: fixed;
}
section.requirements .requirements-table + .requirements-table {
  margin-top: 8%;
}
section.requirements .requirements-table th {
  text-align: center;
  vertical-align: middle;
  background: var(--c_bg);
  font-size: 111.111%;
  font-weight: 700;
  padding: 0.8em 0.5em;
  border: 1px solid var(--c_table_border);
}
section.requirements .requirements-table th:first-child {
  width: 10em;
}
section.requirements .requirements-table td {
  padding: 1.111em 0.556em;
  border: 1px solid var(--c_table_border);
  background: var(--c_wht);
}
section.requirements .requirements-cta {
  margin-top: 6%;
}
section.requirements .requirements-cta a {
  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;
  -webkit-column-gap: 0.333em;
     -moz-column-gap: 0.333em;
          column-gap: 0.333em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 53%;
  margin: 0 auto;
  font-size: 166.667%;
  font-weight: 700;
  background: var(--c_acc);
  color: var(--c_acc_txt);
  border-radius: 0.667em;
  padding: 1.767em;
}
section.requirements .requirements-cta a:before {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-filter: var(--filter_acc_txt);
          filter: var(--filter_acc_txt);
}
section.requirements .requirements-cta a:hover {
  opacity: 1;
  background: var(--c_hover);
}
section.requirements .requirements-cta--entry a:before {
  content: "";
  width: 1em;
  height: 1em;
  background: url(../img/common/icon_entry.png) no-repeat center/contain;
}
section.requirements .requirements-cta--contact a:before {
  content: "";
  width: 1em;
  height: 1em;
  background: url(../img/common/icon_contact.png) no-repeat center/contain;
}
section.requirements .requirements-cta--stop a {
  background: var(--c_text);
  color: var(--c_contrast);
  pointer-events: none;
  opacity: 0.5;
}

/** -------------------- FAQ -------------------- **/
section.faq .faq-block {
  margin-bottom: 4%;
  border-radius: 0.667em;
  overflow: hidden;
}
section.faq .faq-block:last-child {
  margin-bottom: 0;
}
section.faq .faq-block-q {
  background: var(--c_sub);
  color: var(--c_sub_txt);
  font-size: 111.111%;
  padding: 1.5em 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-column-gap: 1em;
     -moz-column-gap: 1em;
          column-gap: 1em;
  cursor: pointer;
}
section.faq .faq-block-q:before {
  content: "Q.";
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
section.faq .faq-block-q:after {
  content: "";
  margin: auto 0 auto auto;
  width: 0.75em;
  height: 1em;
  background: url(../img/common/arrow.png) no-repeat center/contain;
  -webkit-filter: var(--filter_sub_txt);
          filter: var(--filter_sub_txt);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: var(--anim);
  transition: var(--anim);
}
section.faq .faq-block-q.is-open:after {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
section.faq .faq-block-a {
  background: var(--c_wht);
  padding: 1.667em 1.111em;
  display: none;
}
section.faq .faq-block-a-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-column-gap: 1em;
     -moz-column-gap: 1em;
          column-gap: 1em;
}
section.faq .faq-block-a-txt:before {
  content: "A.";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 111.111%;
}
section.faq .faq-block-a-txt a {
  text-decoration: underline;
  text-underline-offset: 0.111em;
}

/** -------------------- CTA -------------------- **/
section.cta {
  position: relative;
}
section.cta .cta-bg {
  position: relative;
}
section.cta .cta-bg:before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
}
section.cta .cta-bg img {
  width: 100%;
}
section.cta .cta-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 100%;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 1.444em;
}
section.cta .cta-main {
  width: 100%;
}
section.cta .cta-main a {
  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;
  -webkit-column-gap: 0.333em;
     -moz-column-gap: 0.333em;
          column-gap: 0.333em;
  font-family: var(--font_title);
  font-size: 166.667%;
  font-weight: 700;
  color: var(--c_acc_txt);
  border: 3px solid var(--c_acc_txt);
  border-radius: 0.533em;
  padding: 1.667em;
  position: relative;
  z-index: 2;
}
section.cta .cta-main a:before {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-filter: var(--filter_acc_txt);
          filter: var(--filter_acc_txt);
  -webkit-transition: var(--anim);
  transition: var(--anim);
}
section.cta .cta-main a:after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 0.533em;
  background: var(--c_acc);
  opacity: 0.77;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-transition: var(--anim);
  transition: var(--anim);
}
section.cta .cta-main a:hover {
  opacity: 1;
}
section.cta .cta-main a:hover:after {
  opacity: 1;
}
section.cta .cta-main--entry a:before {
  content: "";
  width: 1em;
  height: 1em;
  background: url(../img/common/icon_entry.png) no-repeat center/contain;
}
section.cta .cta-main--contact a:before {
  content: "";
  width: 1em;
  height: 1em;
  background: url(../img/common/icon_contact.png) no-repeat center/contain;
}
section.cta .cta-sub {
  color: var(--c_acc_txt);
  font-weight: 700;
}

/* タブレット
  ------------------------ */
/* スマホ
  ------------------------ */
@media (max-width: 699px) {
  /** -------------------- MV -------------------- **/
  section.mv .mv-container {
    position: relative;
    width: 100%;
    height: auto;
    padding: 28px 0;
  }
  section.mv .mv-title {
    font-size: 24px;
  }
  /** -------------------- About -------------------- **/
  section.about .about-catchcopy {
    display: block;
    margin-top: 0;
  }
  section.about .about-catchcopy-img {
    -webkit-transform: none;
            transform: none;
    margin: 0 -20px;
  }
  section.about .about-catchcopy-txtbox {
    padding: 30px 20px;
  }
  section.about .about-catchcopy-title {
    font-size: 22px;
  }
  /** -------------------- Job -------------------- **/
  section.job .job-list {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    gap: 20px 0;
  }
  section.job .job-list-item-title {
    font-size: 18px;
  }
  section.job .job-list-item-body {
    padding: 20px;
  }
  /** -------------------- Data -------------------- **/
  section.data .data-list {
    -ms-grid-columns: 80%;
    grid-template-columns: 80%;
    gap: 20px 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  section.data .data-list-item {
    -webkit-box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.16);
            box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.16);
    padding: 20px;
  }
  section.data .data-list-item-title {
    font-size: 18px;
  }
  section.data .data-list-item-main {
    font-size: 18px;
  }
  section.data .data-list-item-main > span {
    font-size: 36px;
  }
  section.data .data-list-item-note {
    font-size: 14px;
  }
  /** -------------------- Interview -------------------- **/
  section.interview .interview-block {
    margin-bottom: 50px;
  }
  section.interview .interview-block-header {
    display: block;
    margin: 0 0 20px;
  }
  section.interview .interview-block-img {
    width: 90%;
    margin-left: -20px;
  }
  section.interview .interview-block-profile {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 80%;
    margin: -40px 0 0 auto;
    padding: 60px 20px 20px;
    -webkit-transform: none;
            transform: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-column-gap: 32px;
       -moz-column-gap: 32px;
            column-gap: 32px;
  }
  section.interview .interview-block-title {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    font-size: 20px;
  }
  section.interview .interview-block-title > span {
    font-size: 14px;
  }
  section.interview .interview-block-position {
    margin-top: 0;
    font-size: 14px;
  }
  section.interview .interview-block-q {
    margin-top: 20px;
    padding: 4px 8px;
  }
  section.interview .interview-block-q:before {
    font-size: 18px;
  }
  section.interview .interview-block-q > * {
    font-size: 18px;
  }
  section.interview .interview-block-a {
    padding: 8px 8px 4px;
  }
  section.interview .interview-block-a:before {
    font-size: 18px;
  }
  /** -------------------- Message -------------------- **/
  section.message .message-container {
    display: block;
  }
  section.message .message-left {
    width: 60%;
    margin: 0 auto;
  }
  section.message .message-right {
    margin: 20px -20px 0;
    padding: 20px;
  }
  section.message .message-name {
    margin-top: 12px;
    font-size: 18px;
  }
  section.message .message-name-position {
    font-size: 14px;
  }
  section.message .message-catchcopy {
    font-size: 18px;
    margin-bottom: 20px;
  }
  /** -------------------- Flow -------------------- **/
  section.flow .flow-list-item {
    margin-bottom: 28px;
  }
  section.flow .flow-list-item-title {
    font-size: 18px;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
  section.flow .flow-list-item-title:before {
    width: 28px;
    height: 28px;
  }
  section.flow .flow-list-item-txtbox {
    padding: 8px 0 0 48px;
  }
  /** -------------------- Requirements -------------------- **/
  section.requirements .requirements-table + .requirements-table {
    margin-top: 60px;
  }
  section.requirements .requirements-table th {
    font-size: 16px;
    display: block;
    padding: 8px;
  }
  section.requirements .requirements-table th:first-child {
    width: 100%;
  }
  section.requirements .requirements-table th:nth-child(n+2) {
    border-top: 0;
  }
  section.requirements .requirements-table td {
    display: block;
    padding: 8px;
  }
  section.requirements .requirements-table td:nth-child(n+2) {
    border-top: 0;
  }
  section.requirements .requirements-table tr:nth-child(n+2) th:first-child, section.requirements .requirements-table tr:nth-child(n+2) td:first-child {
    border-top: 0;
  }
  section.requirements .requirements-cta {
    margin-top: 30px;
  }
  section.requirements .requirements-cta a {
    font-size: 24px;
    width: 100%;
    min-width: auto;
    padding: 28px 20px;
    border-radius: 12px;
  }
  /** -------------------- FAQ -------------------- **/
  section.faq .faq-block {
    margin-bottom: 20px;
    border-radius: 8px;
  }
  section.faq .faq-block-q {
    font-size: 18px;
    padding: 16px 12px;
    -webkit-column-gap: 8px;
       -moz-column-gap: 8px;
            column-gap: 8px;
  }
  section.faq .faq-block-a {
    padding: 16px 12px;
  }
  section.faq .faq-block-a-txt {
    -webkit-column-gap: 8px;
       -moz-column-gap: 8px;
            column-gap: 8px;
  }
  section.faq .faq-block-a-txt:before {
    font-size: 18px;
  }
  /** -------------------- CTA -------------------- **/
  section.cta {
    padding: 40px 0;
  }
  section.cta .cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  section.cta .cta-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  section.cta .cta-container {
    position: relative;
    height: auto;
    row-gap: 20px;
  }
  section.cta .cta-main a {
    font-size: 24px;
    border-width: 2px;
    border-radius: 12px;
    padding: 20px;
  }
  section.cta .cta-main a:after {
    border-radius: 12px;
  }
}
/* =====================
	募集要項一覧
 ======================= */
body.post-type-archive-requirements .requirements-archive-item {
  margin-bottom: 10%;
}
body.post-type-archive-requirements .requirements-archive-item:last-child {
  margin-bottom: 0;
}
body.post-type-archive-requirements .requirements-archive-item-title {
  font-size: 177.778%;
  font-weight: 700;
  margin-bottom: 0.889em;
  background: var(--c_sub);
  color: var(--c_sub_txt);
  padding: 0.25em 0.5em;
}
body.post-type-archive-requirements .requirements-archive-txt {
  margin-top: 2.222em;
}

/* タブレット
  ------------------------ */
/* スマホ
  ------------------------ */
@media (max-width: 699px) {
  body.post-type-archive-requirements .requirements-archive-item {
    margin-bottom: 50px;
  }
  body.post-type-archive-requirements .requirements-archive-item-title {
    font-size: 20px;
  }
}
/* =====================
	プライバシーポリシー
 ======================= */
body.privacy .privacy-main > * + * {
  margin-top: 1.5em;
}
body.privacy .privacy-main h2 {
  font-size: 133.333%;
  font-weight: 700;
  margin: 3em 0 0.5em;
}
body.privacy .privacy-main h2:first-child {
  margin-top: 0;
}
body.privacy .privacy-main h2:last-child {
  margin-bottom: 0;
}
body.privacy .privacy-main h3 {
  font-size: 122.222%;
  font-weight: 700;
  margin: 3em 0 0.5em;
}
body.privacy .privacy-main h3:first-child {
  margin-top: 0;
}
body.privacy .privacy-main h3:last-child {
  margin-bottom: 0;
}
body.privacy .privacy-main h4 {
  font-size: 111.111%;
  font-weight: 700;
  margin: 3em 0 0.5em;
}
body.privacy .privacy-main h4:first-child {
  margin-top: 0;
}
body.privacy .privacy-main h4:last-child {
  margin-bottom: 0;
}

/* タブレット
  ------------------------ */
/* スマホ
  ------------------------ */
@media (max-width: 699px) {
  body.privacy .privacy-main {
    font-size: 14px;
  }
  body.privacy .privacy-main h2 {
    font-size: 18px;
  }
  body.privacy .privacy-main h3 {
    font-size: 17px;
  }
  body.privacy .privacy-main h4 {
    font-size: 16px;
  }
}
/* =====================
	フォーム
 ======================= */
body.page .form-main > p:first-child {
  margin: 0 auto 10%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
body.page .form-main .wpcf7 dl {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(auto, 25%) 6% 1fr;
  grid-template-columns: minmax(auto, 25%) 1fr;
  gap: 2.222em 6%;
}
body.page .form-main .wpcf7 dl dt {
  position: relative;
  font-weight: 700;
  padding: 0.5em 0 0 0;
}
body.page .form-main .wpcf7 dl dt.req {
  padding-right: 5em;
}
body.page .form-main .wpcf7 dl dt.req:after {
  content: "必須";
  background: var(--c_base);
  color: var(--c_base_txt);
  border-radius: 100px;
  padding: 0 1em;
  position: absolute;
  right: 0;
  top: 0.5em;
}
body.page .form-main .wpcf7 dl dd .zip {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 0 0.5em;
}
body.page .form-main .wpcf7 dl dd .zip input {
  width: 10em;
}
body.page .form-main .wpcf7 dl dd .ymd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 1em;
}
body.page .form-main .wpcf7 dl dd .ymd > div {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 0 0.5em;
}
body.page .form-main .wpcf7 dl dd .ymd > div .wpcf7-form-control-wrap {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
body.page .form-main .wpcf7 dl .wpcf7-form-control:not(select):not(input) {
  padding-top: 0.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5em 2em;
}
body.page .form-main .wpcf7 .wpcf7-list-item {
  margin: 0;
}
body.page .form-main .wpcf7 input[type=text], body.page .form-main .wpcf7 input[type=email], body.page .form-main .wpcf7 input[type=tel] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  font-family: var(--font_ja);
  font-size: 100%;
  font-weight: 500;
  padding: 0.5em;
  border: 1px solid var(--c_border);
  background: var(--c_wht);
  color: var(--c_text);
}
body.page .form-main .wpcf7 input[type=radio] {
  margin: 0;
  font-size: 100%;
  width: 1em;
  height: 1em;
}
body.page .form-main .wpcf7 input[type=checkbox] {
  margin: 0;
  font-size: 100%;
  width: 1em;
  height: 1em;
}
body.page .form-main .wpcf7 input[type=submit], body.page .form-main .wpcf7 input[type=button] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: var(--font_ja);
  font-size: 1.333em;
  font-weight: 700;
  padding: 0.5em 3em;
  border: 2px solid var(--c_base);
  background: var(--c_base);
  color: var(--c_base_txt);
  border-radius: 100px;
  cursor: pointer;
  -webkit-transition: var(--anim);
  transition: var(--anim);
}
body.page .form-main .wpcf7 input[type=submit]:hover, body.page .form-main .wpcf7 input[type=button]:hover {
  background: var(--c_base_txt);
  color: var(--c_base);
}
body.page .form-main .wpcf7 input[type=submit].back_button, body.page .form-main .wpcf7 input[type=button].back_button {
  border-color: var(--c_border);
  background: var(--c_border);
  color: var(--c_wht);
}
body.page .form-main .wpcf7 input[type=submit].back_button:hover, body.page .form-main .wpcf7 input[type=button].back_button:hover {
  background: var(--c_wht);
  color: var(--c_border);
}
body.page .form-main .wpcf7 input[type=submit]:disabled, body.page .form-main .wpcf7 input[type=button]:disabled {
  opacity: 0.2;
  pointer-events: none;
}
body.page .form-main .wpcf7 select {
  width: 100%;
  font-family: var(--font_ja);
  font-size: 100%;
  font-weight: 500;
  padding: 0.5em;
  border: 1px solid var(--c_border);
  background: var(--c_wht);
  color: var(--c_text);
}
body.page .form-main .wpcf7 textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  font-family: var(--font_ja);
  font-size: 100%;
  font-weight: 500;
  padding: 0.5em;
  border: 1px solid var(--c_border);
  background: var(--c_wht);
  color: var(--c_text);
  height: 10em;
}
body.page .form-main .wpcf7 label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 0.5em;
  cursor: pointer;
}
body.page .form-main .wpcf7 #email_error {
  color: #dc3232;
  font-size: 1em;
  font-weight: normal;
  display: block;
}
body.page .form-main .wpcf7 .privacy-check {
  margin: 6% 0;
  text-align: center;
}
body.page .form-main .wpcf7 .privacy-check a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
body.page .form-main .wpcf7 .btn-area {
  margin-top: 6%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1em 3em;
}
body.page .form-main #confirm-area {
  display: none;
}
body.page .form-main #confirm-area dl dd {
  padding-top: 0.5em;
}
body.page .form-main #confirm-area .wpcf7-form-control:not(select):not(input) {
  padding-top: 0;
}
body.page .form-main #thanks-area {
  display: none;
}
body.page .wpcf7-response-output {
  display: none;
}

/* タブレット
  ------------------------ */
/* スマホ
  ------------------------ */
@media (max-width: 699px) {
  body.page .form-main > p:first-child {
    margin-bottom: 50px;
  }
  body.page .form-main .wpcf7 dl {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    gap: 0;
  }
  body.page .form-main .wpcf7 dl dt {
    margin-top: 32px;
    padding: 0 0 12px;
  }
  body.page .form-main .wpcf7 dl dt:first-child {
    margin-top: 0;
  }
  body.page .form-main .wpcf7 dl dt.req:after {
    top: 0;
  }
  body.page .form-main .wpcf7 dl .wpcf7-form-control:not(select):not(input) {
    padding-top: 0;
  }
  body.page .form-main .wpcf7 input[type=submit], body.page .form-main .wpcf7 input[type=button] {
    font-size: 20px;
    width: 80%;
    -webkit-box-ordinal-group: -1;
        -ms-flex-order: -2;
            order: -2;
  }
  body.page .form-main .wpcf7 input[type=submit].back_button, body.page .form-main .wpcf7 input[type=button].back_button {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  body.page .form-main .wpcf7 .privacy-check {
    margin: 40px 0;
    text-align: left;
  }
  body.page .form-main .wpcf7 .btn-area {
    margin-top: 40px;
  }
}
/* =====================
	サンクスページ
 ======================= */
body.page .thanks-page {
  text-align: center;
  line-height: 2;
}
body.page .thanks-page p + p {
  margin-top: 4em;
}

/* タブレット
  ------------------------ */
/* スマホ
  ------------------------ */
@media (max-width: 699px) {
  body.page .thanks-page {
    text-align: left;
    line-height: 1.75;
  }
  body.page .thanks-page p + p {
    margin-top: 2.5em;
  }
}
/* =====================
	OTHER
 ======================= */
body.page .manual-main .inner1000 > * + * {
  margin-top: 1.5em;
}
body.page .manual-main h1 {
  font-family: var(--font_title);
  font-size: 266.667%;
  font-weight: 700;
  margin-bottom: 1.25em;
  text-align: center;
}
body.page .manual-main h2 {
  font-family: var(--font_title);
  font-size: 200%;
  font-weight: 700;
  margin: 2.222em 0 1.333em;
  padding: 0 0 0.222em 0.444em;
  border-left: 0.333em solid var(--c_base);
  border-bottom: 0.111em solid var(--c_base);
}
body.page .manual-main h2:first-of-type {
  margin-top: 0;
}
body.page .manual-main h2:last-child {
  margin-bottom: 0;
}
body.page .manual-main h3 {
  font-family: var(--font_title);
  font-size: 133.333%;
  font-weight: 500;
  color: var(--c_base);
}
body.page .manual-main h3 + * {
  margin-top: 0.5em !important;
}
body.page .manual-main a {
  text-decoration: underline;
  text-underline-offset: 0.25em;
}
body.page .manual-main a:hover {
  color: var(--c_base);
}
body.page .manual-main ul {
  list-style: disc;
  list-style-position: inside;
}
body.page .manual-main ul > li {
  padding-left: 1.5em;
  text-indent: -1.5em;
}
body.page .manual-main ul > li + li {
  margin-top: 0.5em;
}
body.page .manual-main ol {
  list-style: decimal;
  list-style-position: inside;
}
body.page .manual-main img {
  border: 1px solid var(--c_table_border);
}
body.page .manual-main code {
  background: var(--c_bg);
  display: inline-block;
  padding: 0.5em;
}