@charset "UTF-8";
:root {
  --color-white: #FFFFFF;
  --color-text:#191E2C;
  --color-main:#102A64;
  --color-green:#2AB6C7;
  --color-yellow: #FFD207;
  --color-red: #D6315B;
  --color-bg:#C9E2EA;
}

/* =============================================
  Typography
============================================= */
/* 汎用テキスト */
/* =============================================
  Text Presets
============================================= */
/* 見出し大：PC 40px / SP 24px */
/* 見出し中：PC 24px / SP 20px */
/* 見出し小：PC 20px / SP 16px */
/* 本文小：PC 14px / SP 13px */
/* 1行系・ボタン・ラベル用 */
/* 注釈・キャプション */
/* ボタン・ラベルなど1行用 */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
var {
  font-weight: 500;
}

ol,
ul {
  list-style: none;
  list-style-type: none;
}

li {
  list-style: none;
  list-style-type: none;
}

caption,
th {
  font-weight: normal;
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  font-size: 100%;
}

area {
  outline: none;
  border: none;
}

abbr,
acronym {
  border: 0;
}

* {
  box-sizing: border-box;
}

input,
select,
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  border: 0;
}

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  margin: 0;
  outline: none;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  padding: 0;
}

input[type=submit],
input[type=button] {
  cursor: pointer;
}

input,
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

a {
  outline: none;
}

figure {
  line-height: 0;
}

img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}

body {
  background-color: var(--color-bg);
}
body a {
  color: var(--color-text);
  text-decoration: none;
}

body {
  position: relative;
  margin: 0;
  height: auto;
  overflow-x: hidden;
  overflow-y: visible;
  color: var(--color-text);
  font-family: "Noto Sans JP", sans-serif;
}
/*
.ef-fade01 {
  transition: 1s;
  opacity: 0;
  transform: translate(0, 10%);
}
.fade01 {
  opacity: 1.0;
  transform: translate(0,0);
}
*/
.header {
  display: flex;
  position: fixed;
  justify-content: space-between;
  align-items: center;
  z-index: 3;
  background-color: #fff;
  padding: 10px;
  width: 100%;
}
.header_logo {
  width: 160px;
}
.header_logo img {
  width: 100%;
  height: auto;
}
.header_text {
  font-size: 0.6875rem;
  text-align: right;
}

.footer {
  border-top: 1px solid #bfbfbf;
  background: #fff;
  padding: 40px 0 58px;
}
.footer_inner {
  display: -ms-grid;
  display: grid;
  position: relative;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 80px;
       column-gap: 80px;
  margin-inline: auto;
  padding-inline: 40px;
  width: min(100%, 1200px);
}
.footer_info {
  -ms-grid-column-align: end;
      justify-self: end;
  width: 360px;
}
.footer_logo {
  display: block;
  width: 140px;
}
.footer_logo img {
  display: block;
  width: 100%;
  height: auto;
}
.footer_address {
  margin-top: 24px;
  color: #111;
  font-size: 14px;
  line-height: 1.8;
}
.footer_tel {
  margin-top: 12px;
  color: #111;
  font-size: 14px;
  line-height: 1.8;
}
.footer_links {
  -ms-grid-column-align: start;
      justify-self: start;
  width: 360px;
  text-align: center;
}
.footer_instagram {
  display: block;
  margin: 0 auto;
  width: 34px;
}
.footer_instagram img {
  display: block;
  width: 100%;
  height: auto;
}
.footer_btn {
  display: -ms-grid;
  display: grid;
  place-items: center;
  transition: background 0.3s, color 0.3s;
  margin: 34px auto 0;
  border: 1px solid #333;
  width: 210px;
  height: 36px;
  color: #111;
  font-size: 13px;
  line-height: 1;
  text-decoration: none;
}
.footer_copy {
  grid-column: 1/-1;
  margin-top: 56px;
  color: #111;
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
}

.navToggle {
  display: inline-flex;
  position: relative;
  justify-content: center;
  align-items: center;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  z-index: 10;
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 0;
  width: 48px;
  height: 48px;
}
.navToggle_icon {
  display: block;
  position: relative;
  box-sizing: border-box;
  background: var(--color-main);
  width: 48px;
  height: 48px;
}
.navToggle_line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: top 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
  border-radius: 999px;
  background: #fff;
  width: 20px;
  height: 1px;
}
.navToggle_line:nth-child(1) {
  top: 15px;
}
.navToggle_line:nth-child(2) {
  top: 23px;
}
.navToggle_line:nth-child(3) {
  top: 31px;
}
.navToggle.is-open .navToggle_line:nth-child(1) {
  top: 23px;
  transform: translateX(-50%) rotate(45deg);
}
.navToggle.is-open .navToggle_line:nth-child(2) {
  opacity: 0;
}
.navToggle.is-open .navToggle_line:nth-child(3) {
  top: 23px;
  transform: translateX(-50%) rotate(-45deg);
}

.headerContact {
  display: flex;
  align-items: center;
  gap: 12px;
}

.headerContact_tel {
  display: -ms-grid;
  display: grid;
  flex-shrink: 0;
  place-items: center;
  transition: opacity 0.3s;
  border-radius: 8px;
  background: #5b5b5b;
  width: 64px;
  height: 64px;
}
.headerContact_tel img {
  width: 24px;
  height: auto;
}

.headerContact_entry {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  transition: opacity 0.3s;
  border-radius: 8px;
  background: #f56a1a;
  width: 212px;
  height: 64px;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.08em;
  text-decoration: none;
}
.headerContact_entry span {
  line-height: 1;
}
.headerContact_entry img {
  width: 16px;
  height: auto;
}

.homeKv {
  background-color: #2F8AC8;
}
.homeKv_inner {
  margin: 0 auto;
  padding: 120px 0 32px;
  max-width: 1200px;
  text-align: center;
}

.recruitIntro {
  padding: 64px 0 72px;
}

.recruitIntro_inner {
  margin-inline: auto;
  padding-inline: 24px;
  width: min(100%, 900px);
}

.recruitIntro_label {
  -webkit-clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
          clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  margin-inline: auto;
  background: #1687c9;
  padding: 6px 18px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
}

.recruitIntro_heading {
  margin-top: 22px;
  color: #333;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: center;
}

.recruitIntro_text {
  margin: 36px auto 0;
  width: min(100%, 900px);
  color: #333;
  font-size: 14px;
  line-height: 2.1;
  letter-spacing: 0.03em;
}
.recruitIntro_text p + p {
  margin-top: 20px;
}
.recruitIntro_text ._underline {
  background: linear-gradient(transparent 58%, #fff36d 58%);
}

.recruitIntro_list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 64px;
}

.recruitIntro_figure {
  margin: 0;
  overflow: hidden;
}
.recruitIntro_figure img {
  display: block;
  aspect-ratio: 360/245;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.recruitIntro_caption {
  margin-top: 14px;
  color: #333;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.02em;
}

.recruitFeature {
  background: #2e90c8;
  padding: 72px 0 64px;
}
.recruitFeature_inner {
  margin-inline: auto;
  padding-inline: 40px;
  width: min(100%, 1200px);
}
.recruitFeature_heading {
  position: relative;
  margin: 0 auto 62px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
.recruitFeature_heading::before, .recruitFeature_heading::after {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  content: "";
}
.recruitFeature_heading::before {
  bottom: -14px;
  background: #fff;
  width: 260px;
  height: 2px;
}
.recruitFeature_heading::after {
  bottom: -22px;
  transform: translateX(-50%) rotate(45deg);
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  background: #2e90c8;
  width: 14px;
  height: 14px;
}
.recruitFeature_list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 28px;
}
.recruitFeature_item {
  position: relative;
  padding-top: 22px;
}
.recruitFeature_num {
  display: -ms-grid;
  display: grid;
  position: absolute;
  top: 0;
  left: 50%;
  place-items: center;
  transform: translateX(-50%);
  z-index: 2;
  border-radius: 50%;
  background: #f2f2f2;
  width: 62px;
  height: 62px;
  color: #333;
  font-weight: 700;
  font-size: 24px;
}
.recruitFeature_card {
  border-radius: 6px;
  background: #f3f3f3;
  padding: 52px 18px 26px;
  height: 100%;
}
.recruitFeature_lead {
  color: #333;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
}
.recruitFeature_title {
  margin-top: 4px;
  margin-bottom: 22px;
  border-bottom: 1px dashed #cfcfcf;
  padding-bottom: 18px;
  color: #79b928;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-align: center;
}
.recruitFeature_points li {
  color: #333;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.9;
}
.recruitFeature_points li::before {
  margin-right: 2px;
  content: "・";
}
.recruitFeature_points li span {
  display: inline;
  background: linear-gradient(transparent 58%, #e8f06a 58%);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.recruitFeature_map {
  aspect-ratio: 3/2;
  width: 100%;
}
.recruitFeature_img {
  margin-top: 18px;
}
.recruitFeature_img img {
  display: block;
  width: 100%;
  height: auto;
}
.recruitFeature_note {
  margin-top: 8px;
  color: #666;
  font-size: 10px;
  line-height: 1.6;
}
.recruitFeature_text {
  margin-top: 14px;
  color: #333;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.02em;
}

.recruitApply {
  background: #f4f4f4;
  padding: 72px 0 84px;
}
.recruitApply_inner {
  margin-inline: auto;
  padding-inline: 40px;
  width: min(100%, 1200px);
  text-align: center;
}
.recruitApply_heading {
  position: relative;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #333;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
.recruitApply_heading::before, .recruitApply_heading::after {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  content: "";
}
.recruitApply_heading::before {
  bottom: -12px;
  background: #2e90c8;
  width: 200px;
  height: 2px;
}
.recruitApply_heading::after {
  bottom: -20px;
  transform: translateX(-50%) rotate(45deg);
  border-right: 2px solid #2e90c8;
  border-bottom: 2px solid #2e90c8;
  background: #f4f4f4;
  width: 14px;
  height: 14px;
}
.recruitApply_title {
  margin-top: 56px;
  color: #333;
  font-weight: 700;
  font-size: 42px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.recruitApply_text {
  margin-top: 28px;
  color: #333;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.04em;
}
.recruitApply_icons {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 56px auto 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.recruitApply_icon {
  display: -ms-grid;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  width: 108px;
  height: 108px;
}
.recruitApply_icon img {
  display: block;
  width: 58px;
  height: auto;
}
.recruitApply_note {
  margin-top: 48px;
  color: #333;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.04em;
}
.recruitApply_message {
  margin-top: 54px;
  color: #333;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
.recruitApply_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  transition: opacity 0.3s;
  margin: 28px auto 0;
  box-shadow: 0 4px 0 #d85d13;
  border-radius: 4px;
  background: #f56d1b;
  width: min(100%, 560px);
  height: 96px;
  color: #fff;
  font-weight: 700;
  font-size: 42px;
  letter-spacing: 0.08em;
  text-decoration: none;
}
.recruitApply_btn img {
  width: 28px;
  height: auto;
}

.recruitContact {
  background: var(--color-white);
}
.recruitContact_inner {
  padding: 76px 24px 70px;
}
.recruitContact_head {
  margin-bottom: 40px;
  text-align: center;
}
.recruitContact_en {
  margin-top: 0;
  margin-bottom: 12px;
  color: var(--color-red);
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.recruitContact_heading {
  margin-top: 0;
  margin-bottom: 0;
  color: var(--color-text);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.recruitContact_form {
  display: -ms-grid;
  display: grid;
  gap: 32px;
}
.recruitContact_field {
  display: -ms-grid;
  display: grid;
  gap: 14px;
  border-bottom: 1px solid #dfdfdf;
  padding-bottom: 30px;
}
.recruitContact_field[data-property-field] {
  display: none;
}
.recruitContact_field.is-show {
  display: -ms-grid;
  display: grid;
}
.recruitContact_labelRow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.recruitContact_label {
  margin: 0;
  color: var(--color-text);
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.recruitContact_note {
  font-weight: 700;
  font-size: 0.6875rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.02em;
}
.recruitContact_required {
  display: -ms-grid;
  display: grid;
  flex-shrink: 0;
  place-items: center;
  border-radius: 2px;
  background: var(--color-red);
  width: 52px;
  height: 28px;
  color: var(--color-white);
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.recruitContact_radioList {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 18px;
}
.recruitContact_radio {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  color: var(--color-text);
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.recruitContact_radio input {
  position: relative;
  flex-shrink: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  margin: 0;
  border: 1px solid #cfcfcf;
  border-radius: 50%;
  background: var(--color-white);
  width: 24px;
  height: 24px;
}
.recruitContact_radio input::before {
  position: absolute;
  opacity: 0;
  inset: 5px;
  border-radius: 50%;
  background: var(--color-red);
  content: "";
}
.recruitContact_radio input:checked {
  border-color: var(--color-red);
}
.recruitContact_radio input:checked::before {
  opacity: 1;
}
.recruitContact_input, .recruitContact_textarea {
  border: 1px solid #cfcfcf;
  border-radius: 4px;
  background: var(--color-white);
  width: 100%;
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.recruitContact_input:focus, .recruitContact_textarea:focus {
  outline: 2px solid rgba(42, 182, 199, 0.3);
  outline-offset: 2px;
  border-color: var(--color-green);
}
.recruitContact_input {
  padding: 0 12px;
  height: 47px;
}
.recruitContact ._zip {
  width: 120px;
}
.recruitContact_textarea {
  padding: 12px;
  min-height: 214px;
  resize: vertical;
}
.recruitContact_subField {
  display: -ms-grid;
  display: grid;
  gap: 8px;
}
.recruitContact_subLabel {
  color: var(--color-text);
  font-weight: 700;
  font-size: 0.6875rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.02em;
}
.recruitContact_box {
  display: flex;
  align-items: center;
  gap: 10px;
}
.recruitContact_checkList {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.recruitContact_check {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  color: var(--color-text);
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.recruitContact_check input {
  position: relative;
  flex-shrink: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: background 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  margin: 0;
  border: 1px solid #cfcfcf;
  border-radius: 4px;
  background: var(--color-white);
  width: 24px;
  height: 24px;
}
.recruitContact_check input::before {
  position: absolute;
  top: 3px;
  left: 8px;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.2s ease;
  border-right: 2px solid var(--color-white);
  border-bottom: 2px solid var(--color-white);
  width: 5px;
  height: 11px;
  content: "";
}
.recruitContact_check input:checked {
  border-color: var(--color-red);
  background: var(--color-red);
}
.recruitContact_check input:checked::before {
  opacity: 1;
}
.recruitContact_check input:focus {
  outline: 2px solid rgba(42, 182, 199, 0.3);
  outline-offset: 2px;
}
.recruitContact_check span {
  line-height: 1.5;
}
.recruitContact_privacy {
  margin-top: -8px;
  text-align: center;
}
.recruitContact_privacyLabel {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.recruitContact_privacyLabel input {
  position: relative;
  flex-shrink: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  margin: 0;
  margin-top: 1px;
  border: 1px solid #cfcfcf;
  border-radius: 4px;
  background: var(--color-white);
  width: 22px;
  height: 22px;
}
.recruitContact_privacyLabel input::before {
  position: absolute;
  top: 2px;
  left: 7px;
  transform: rotate(45deg);
  opacity: 0;
  border-right: 2px solid var(--color-white);
  border-bottom: 2px solid var(--color-white);
  width: 5px;
  height: 11px;
  content: "";
}
.recruitContact_privacyLabel input:checked {
  border-color: var(--color-red);
  background: var(--color-red);
}
.recruitContact_privacyLabel input:checked::before {
  opacity: 1;
}
.recruitContact_privacyLabel span {
  line-height: 1.7;
  text-align: left;
}
.recruitContact_privacyLink {
  transition: opacity 0.3s ease;
  color: var(--color-red);
  text-decoration: underline;
}
.recruitContact_privacyLink:hover {
  opacity: 0.7;
}
.recruitContact_submitWrap {
  margin-top: 2px;
  text-align: center;
}
.recruitContact_submit {
  display: -ms-inline-grid;
  display: inline-grid;
  place-items: center;
  transition: opacity 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  border: 0;
  border-radius: 4px;
  background: #7fa2b8;
  width: min(100%, 280px);
  height: 64px;
  color: var(--color-white);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.recruitContact_submit:hover {
  opacity: 0.85;
}
.recruitContact_submit:active {
  transform: translateY(1px);
}
.recruitContact_error {
  padding-left: 10px;
  color: #aa1313;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.recruitContact_thanksLead {
  margin: 80px 10px;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  text-align: center;
}
.recruitContact_thanksTxt {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  text-align: center;
}
.recruitContact_formConfirm {
  margin: 0 auto;
  width: auto;
}
.recruitContact_formConfirm dl {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  border-bottom: 1px solid #dfdfdf;
  padding-bottom: 20px;
}
.recruitContact_formConfirm dt {
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.recruitContact_formConfirm dd {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.recruitContact_btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  text-align: center;
}
.recruitContact_submit {
  margin: 0 auto 20px;
  text-align: center;
}
.recruitContact_back {
  display: -ms-inline-grid;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  margin: 0 auto;
  border: 0;
  border-radius: 4px;
  background: #999;
  width: min(100%, 200px);
  height: 42px;
  color: var(--color-white);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  text-align: center;
}

.recruitPrivacy {
  padding: 40px 0;
}
.recruitPrivacy_inner {
  margin: 0 auto;
  width: min(100% - 40px, 1000px);
}
.recruitPrivacy_head {
  margin-bottom: 20px;
  text-align: center;
}
.recruitPrivacy_heading {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.5;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.recruitPrivacy_body {
  border: 1px solid #ddd;
  background: #fff;
  padding: 40px;
  max-height: 300px;
  overflow-y: auto;
  line-height: 1.9;
}
.recruitPrivacy_body h2 {
  margin-top: 48px;
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 12px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
}
.recruitPrivacy_body h2:first-child {
  margin-top: 0;
}
.recruitPrivacy_body h3 {
  margin-top: 32px;
  margin-bottom: 12px;
  border-left: 4px solid #333;
  padding-left: 14px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.6;
}
.recruitPrivacy_body p {
  margin-top: 0;
  margin-bottom: 18px;
  font-size: 14px;
  line-height: 1.9;
}
.recruitPrivacy_body ul {
  display: -ms-grid;
  display: grid;
  gap: 8px;
  margin: 0 0 24px;
  padding-left: 1.4em;
}
.recruitPrivacy_body li {
  font-size: 15px;
  line-height: 1.8;
  list-style: disc;
}
.recruitPrivacy_body dl {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 120px 1fr;
  grid-template-columns: 120px 1fr;
  border-top: 1px solid #ddd;
  font-size: 15px;
}
.recruitPrivacy_body dt,
.recruitPrivacy_body dd {
  margin: 0;
  border-bottom: 1px solid #ddd;
  padding: 14px 0;
}
.recruitPrivacy_body dt {
  font-weight: 700;
}
.recruitPrivacy_body::-webkit-scrollbar {
  width: 8px;
}
.recruitPrivacy_body::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: #999;
}
.recruitPrivacy_body::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.recruitPrivacy_sign {
  margin-top: 32px;
  text-align: right;
}
.recruitPrivacy_sign p {
  margin-bottom: 4px;
}
@media print, screen and (min-width: 768px) {
  html {
    scroll-padding-top: 80px;
  }
  body a {
    transition: all 0.5s ease;
  }
  body a:hover {
    opacity: 0.6;
  }
  ._sp {
    display: none !important;
  }
  .main._home {
    padding-top: 5rem;
  }
  .navToggle.is-open {
    position: fixed !important;
    top: 16px !important;
    right: 24px !important;
    z-index: 1200 !important;
  }
  .recruitContact_en {
    font-size: 0.875rem;
  }
  .recruitContact_heading {
    font-size: 1.5rem;
  }
  .recruitContact_label {
    font-size: 0.875rem;
  }
  .recruitContact_note {
    font-size: 0.75rem;
  }
  .recruitContact_required {
    font-size: 0.875rem;
  }
  .recruitContact_radio {
    font-size: 0.875rem;
  }
  .recruitContact_input, .recruitContact_textarea {
    font-size: 0.875rem;
  }
  .recruitContact_subLabel {
    font-size: 0.75rem;
  }
  .recruitContact_checkList {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 24px;
  }
  .recruitContact_check {
    font-size: 0.875rem;
  }
  .recruitContact_privacyLabel {
    font-size: 0.875rem;
  }
  .recruitContact_submit {
    font-size: 1.125rem;
  }
  .recruitContact_error {
    font-size: 0.875rem;
  }
  .recruitContact_thanksLead {
    font-size: 2.5rem;
  }
  .recruitContact_thanksTxt {
    font-size: 1.25rem;
  }
  .recruitContact_formConfirm dt {
    font-size: 0.875rem;
  }
  .recruitContact_formConfirm dd {
    font-size: 0.875rem;
  }
  .recruitContact_back {
    font-size: 1.125rem;
  }
  .recruitContact_inner {
    margin-right: auto;
    margin-left: auto;
    padding-top: 100px;
    padding-bottom: 100px;
    max-width: 760px;
  }
  .recruitContact_head {
    margin-bottom: 50px;
  }
  .recruitContact_form {
    gap: 36px;
  }
  .recruitContact_radioList {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 18px;
  }
  .recruitContact_submit {
    width: 320px;
  }
  .recruitContact_back {
    width: 200px;
  }
  .recruitContact_formConfirm {
    margin: 0 auto;
    width: 600px;
  }
  .recruitContact_formConfirm dl {
    display: flex;
    margin-bottom: 25px;
    border-bottom: 1px solid #dfdfdf;
    padding-bottom: 20px;
  }
  .recruitContact_formConfirm dt {
    width: 200px;
    font-weight: 700;
    font-size: 0.875rem;
    line-height: 1.75;
    font-family: "Noto Sans JP", sans-serif;
    letter-spacing: 0.05em;
  }
  .recruitContact_formConfirm dd {
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.75;
    font-family: "Noto Sans JP", sans-serif;
    letter-spacing: 0.05em;
  }
  .recruitPrivacy_heading {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  ._pc {
    display: none !important;
  }
  .header_logo {
    width: 120px;
  }
  .footer {
    padding: 42px 0 40px;
  }
  .footer_inner {
    display: block;
    padding-inline: 20px;
    text-align: center;
  }
  .footer_info {
    width: 100%;
  }
  .footer_logo {
    margin-inline: auto;
    width: 170px;
  }
  .footer_address {
    margin-top: 28px;
    font-size: 16px;
    line-height: 1.8;
  }
  .footer_tel {
    margin-top: 18px;
    font-size: 16px;
  }
  .footer_links {
    margin-top: 28px;
    width: 100%;
  }
  .footer_instagram {
    position: absolute;
    top: 0;
    right: 20px;
    width: 32px;
  }
  .footer_btn {
    margin-top: 34px;
    width: min(100%, 276px);
    height: 46px;
    font-size: 16px;
  }
  .footer_copy {
    margin-top: 24px;
    font-size: 13px;
  }
  .headerContact_tel {
    width: 42px;
    height: 42px;
  }
  .headerContact_tel img {
    width: 20px;
  }
  .headerContact_entry {
    gap: 14px;
    width: 130px;
    height: 42px;
    font-size: 18px;
  }
  .headerContact_entry img {
    width: 14px;
  }
  .homeKv_inner {
    padding: 62px 0 0;
  }
  .recruitIntro {
    padding: 40px 0 48px;
  }
  .recruitIntro_inner {
    padding-inline: 20px;
  }
  .recruitIntro_label {
    padding: 5px 14px;
    font-size: 13px;
  }
  .recruitIntro_heading {
    margin-top: 18px;
    font-size: 20px;
  }
  .recruitIntro_text {
    margin-top: 28px;
    font-size: 13px;
    line-height: 1.9;
  }
  .recruitIntro_text p + p {
    margin-top: 18px;
  }
  .recruitIntro_text ._space {
    margin-left: -0.3em;
  }
  .recruitIntro_list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 36px;
  }
  .recruitIntro_caption {
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.7;
  }
  .recruitFeature {
    padding: 52px 0 48px;
  }
  .recruitFeature_inner {
    padding-inline: 16px;
  }
  .recruitFeature_heading {
    margin-bottom: 42px;
    font-size: 24px;
  }
  .recruitFeature_heading::before {
    width: 200px;
  }
  .recruitFeature_list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .recruitFeature_card {
    padding: 48px 14px 22px;
  }
  .recruitFeature_lead {
    font-size: 18px;
  }
  .recruitFeature_title {
    font-size: 28px;
  }
  .recruitFeature_points {
    margin: 18px auto;
    padding-top: 14px;
    width: 250px;
  }
  .recruitFeature_points li {
    font-size: 13px;
    line-height: 1.8;
  }
  .recruitFeature_text {
    font-size: 13px;
    line-height: 1.9;
  }
  .recruitApply {
    padding: 48px 0 56px;
  }
  .recruitApply_inner {
    padding-inline: 16px;
  }
  .recruitApply_heading {
    font-size: 24px;
  }
  .recruitApply_heading::before {
    width: 200px;
  }
  .recruitApply_title {
    margin-top: 44px;
    font-size: 22px;
    line-height: 1.6;
  }
  .recruitApply_text {
    margin-top: 18px;
    font-size: 14px;
    line-height: 2;
  }
  .recruitApply_icons {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 34px;
  }
  .recruitApply_icon {
    width: 82px;
    height: 82px;
  }
  .recruitApply_icon img {
    width: 42px;
  }
  .recruitApply_note {
    margin-top: 34px;
    font-size: 13px;
    line-height: 2;
  }
  .recruitApply_message {
    margin-top: 38px;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.9;
  }
  .recruitApply_btn {
    gap: 18px;
    margin-top: 20px;
    height: 72px;
    font-size: 24px;
  }
  .recruitApply_btn img {
    width: 18px;
  }
  .recruitPrivacy {
    padding: 56px 0;
  }
  .recruitPrivacy_inner {
    width: min(100% - 24px, 100%);
  }
  .recruitPrivacy_head {
    margin-bottom: 28px;
  }
  .recruitPrivacy_body {
    padding: 24px 18px;
    max-height: 420px;
  }
  .recruitPrivacy_body h2 {
    margin-top: 36px;
    font-size: 20px;
  }
  .recruitPrivacy_body h3 {
    margin-top: 28px;
    font-size: 16px;
  }
  .recruitPrivacy_body p {
    font-size: 14px;
  }
  .recruitPrivacy_body li {
    font-size: 14px;
  }
  .recruitPrivacy_body dl {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    font-size: 14px;
  }
  .recruitPrivacy_body dt {
    border-bottom: none;
    padding-bottom: 4px;
  }
  .recruitPrivacy_body dd {
    padding-top: 0;
  }
  .recruitPrivacy_sign {
    margin-top: 24px;
    text-align: left;
  }
}
@media (hover: hover) {
  .footer_btn:hover {
    background: #111;
    color: #fff;
  }
  .headerContact_tel:hover {
    opacity: 0.8;
  }
  .headerContact_entry:hover {
    opacity: 0.8;
  }
  .recruitApply_btn:hover {
    opacity: 0.85;
  }
}
@media print, screen and (min-width: 768px) and (min-width: 768px) {
  .recruitContact_formConfirm dt {
    font-size: 0.875rem;
  }
  .recruitContact_formConfirm dd {
    font-size: 0.875rem;
  }
}
