@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap");
/* ========================================
 *  Font Family
 * ======================================== */
/* ==============================
*   Color
*==============================*/
/* ==============================
*   Font Size
*==============================*/
/*==============================
//  Media Query
//==============================*/
body {
  min-width: 1240px;
}
body.modal {
  min-width: auto;
}

@media screen and (max-width: 767px) {
  body {
    min-width: initial;
  }
}
/*==============================
//  Font Size Rem
//
//  【概要】        font-sizeの単位をremに変換する
//  【第一引数】    希望のfont-size（数字のみ）
//  【備考】        IE対応のためpxでも出力する
//==============================*/
/*==============================
//  Font Size Rem Line Height Half Leading
//
//  【概要】
//      ・font-sizeの単位をremに変換
//      ・行間のサイズをもとに自動でline-heightを指定
//      ・ハーフリーディングを自動調整
//  【第一引数】
//      ・希望のfont-size（数字のみ）
//  【第二引数】
//      ・希望の行間サイズ（数字のみ）
//==============================*/
/*==============================
//
//  【概要】
//      ・pxをvwに変換
//  【第一引数】
//      ・pxサイズ（数字のみ）
//  【第二引数】
//      ・デザイン幅（数字のみ）初期値はf-variableに記述
//==============================*/
/*==============================
//  px→vwの計算
//==============================*/
/*! destyle.css v2.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}
@media screen and (max-width: 767px) {
  html {
    font-size: 4.2666666667vw;
  }
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: normal;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  top: -0.5em;
}

sup {
  top: -0.5em;
}

/* Embedded content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
       appearance: radio;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

button[disabled],
[type=button][disabled],
[type=reset][disabled],
[type=submit][disabled] {
  cursor: default;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove arrow in IE10 & IE11
 */
select::-ms-expand {
  display: none;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable] {
  outline: none;
}

/* Table */
/* ============================================ */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

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

/* Misc */
/* ============================================ */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

body {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  color: #333333;
  line-height: 180%;
  position: relative;
  min-width: 1240px;
  font-size: 20px;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 4vw;
    min-width: initial;
  }
}

a {
  text-decoration: underline;
  color: #0097CF;
  transition: 0.3s all;
}
a:hover {
  text-decoration: none;
}

button {
  outline: none;
}

td,
th {
  vertical-align: middle;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #bbb;
}

input::placeholder,
textarea::placeholder {
  color: #bbb;
}

img {
  max-width: 100%;
  backface-visibility: hidden;
}

[v-cloak] {
  display: none !important;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

[v-cloak] {
  display: none;
}

main {
  position: relative;
}

main {
  padding: 0;
}
@media screen and (max-width: 767px) {
  main {
    padding: 60px 0 0;
  }
}

.l-section {
  width: 100%;
  position: relative;
  margin: 0 auto;
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .l-section {
    padding: 13.3333333333vw 5.3333333333vw;
  }
}
.l-section.lower {
  padding: 60px 0 100px;
}
@media screen and (max-width: 767px) {
  .l-section.lower {
    padding: 8vw 5.3333333333vw 13.3333333333vw;
  }
}
.l-section_cv {
  margin: -60px auto 0;
  padding: 0 0 110px;
  background: url(../../src/img/cv_bg.png) top 60px center no-repeat;
  background-size: cover;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-section_cv {
    margin: -13.3333333333vw auto 0;
    padding: 0 0 13.3333333333vw;
    background: url(../../src/img/cv_bg.png) top 13.3333333333vw center no-repeat;
    background-size: cover;
  }
}
.l-section_cv_wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-section_cv_wrap {
    max-width: 89.3333333333vw;
    grid-template-columns: 1fr;
    gap: 5.3333333333vw;
  }
}
.l-section_cv_wrap.col01 {
  max-width: 780px;
  grid-template-columns: 1fr;
}
@media screen and (max-width: 767px) {
  .l-section_cv_wrap.col01 {
    max-width: 89.3333333333vw;
  }
}
.l-section_cv_wrap.col01 .l-section_cv_wrap_search a {
  padding: 50px 190px 40px;
}
@media screen and (max-width: 767px) {
  .l-section_cv_wrap.col01 .l-section_cv_wrap_search a {
    padding: 6.6666666667vw 5.3333333333vw;
  }
}
.l-section_cv_wrap.col01 .l-section_cv_wrap_web a {
  padding: 50px 30px 40px;
}
@media screen and (max-width: 767px) {
  .l-section_cv_wrap.col01 .l-section_cv_wrap_web a {
    padding: 6.6666666667vw 5.3333333333vw;
  }
}
.l-section_cv_wrap.col01 .l-section_cv_wrap_web a .inner {
  padding: 0 160px;
}
@media screen and (max-width: 767px) {
  .l-section_cv_wrap.col01 .l-section_cv_wrap_web a .inner {
    padding: 0 5.3333333333vw;
  }
}
.l-section_cv_wrap.col01 .l-section_cv_wrap_web a .l-section_cv_wrap_web_txt {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .l-section_cv_wrap.col01 .l-section_cv_wrap_web a .l-section_cv_wrap_web_txt {
    font-size: 3.4666666667vw;
    text-align: left;
  }
}
.l-section_cv_wrap_web {
  width: 100%;
  height: auto;
  background-color: #FFDA1B;
  z-index: 2;
  border-radius: 10px;
  transition: 0.3s all;
}
@media screen and (max-width: 767px) {
  .l-section_cv_wrap_web {
    border-radius: 6px;
  }
}
.l-section_cv_wrap_web a {
  width: 100%;
  height: 100%;
  display: inline-block;
  padding: 50px 90px 40px;
  color: #333333;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .l-section_cv_wrap_web a {
    padding: 6.6666666667vw 5.3333333333vw 5.3333333333vw;
  }
}
.l-section_cv_wrap_web_ttl {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  width: 100%;
  margin-bottom: 22px;
  text-align: center;
  font-size: 30px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .l-section_cv_wrap_web_ttl {
    margin-bottom: 3.4666666667vw;
    font-size: 5.3333333333vw;
  }
}
.l-section_cv_wrap_web_ttl::before, .l-section_cv_wrap_web_ttl::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #333333;
}
.l-section_cv_wrap_web_btn {
  width: 100%;
  height: 65px;
  border-radius: 100px;
  background-color: #ffffff;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15);
  font-size: 24px;
  font-weight: bold;
  line-height: 65px;
  margin-bottom: 20px;
  padding: 0 0 0 20px;
}
@media screen and (max-width: 767px) {
  .l-section_cv_wrap_web_btn {
    height: 14.4vw;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.15);
    font-size: 4.8vw;
    line-height: 14.4vw;
    margin-bottom: 4vw;
    padding: 0 0 0 5.3333333333vw;
  }
}
.l-section_cv_wrap_web_btn span {
  position: relative;
}
.l-section_cv_wrap_web_btn span em {
  font-family: "Poppins", serif;
  font-style: normal;
  font-weight: 500;
}
.l-section_cv_wrap_web_btn span::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: -35px;
  width: 24px;
  height: 24px;
  background: url(../../src/img/icon/web.svg) center center no-repeat;
  background-size: cover;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .l-section_cv_wrap_web_btn span::before {
    left: -9.3333333333vw;
    width: 7.4666666667vw;
    height: 7.4666666667vw;
  }
}
.l-section_cv_wrap_web_txt {
  font-size: 20px;
  line-height: 160%;
}
@media screen and (max-width: 767px) {
  .l-section_cv_wrap_web_txt {
    font-size: 4vw;
  }
}
.l-section_cv_wrap_web:hover {
  background-color: #F8D314;
}
.l-section_cv_wrap_search {
  width: 100%;
  height: auto;
  background-color: #0097CF;
  z-index: 2;
  border-radius: 10px;
  transition: 0.3s all;
}
@media screen and (max-width: 767px) {
  .l-section_cv_wrap_search {
    border-radius: 6px;
  }
}
.l-section_cv_wrap_search a {
  width: 100%;
  height: 100%;
  display: inline-block;
  padding: 50px 90px 40px;
  color: #ffffff;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .l-section_cv_wrap_search a {
    padding: 6.6666666667vw 5.3333333333vw 5.3333333333vw;
  }
}
.l-section_cv_wrap_search_ttl {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  width: 100%;
  margin-bottom: 22px;
  text-align: center;
  font-size: 30px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .l-section_cv_wrap_search_ttl {
    margin-bottom: 3.4666666667vw;
    font-size: 5.3333333333vw;
  }
}
.l-section_cv_wrap_search_ttl::before, .l-section_cv_wrap_search_ttl::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #ffffff;
}
.l-section_cv_wrap_search_btn {
  width: 100%;
  height: 65px;
  border-radius: 100px;
  background-color: #ffffff;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15);
  font-size: 24px;
  font-weight: bold;
  line-height: 65px;
  margin-bottom: 20px;
  color: #0097CF;
  padding: 0 0 0 20px;
}
@media screen and (max-width: 767px) {
  .l-section_cv_wrap_search_btn {
    height: 14.4vw;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.15);
    font-size: 4.8vw;
    line-height: 14.4vw;
    margin-bottom: 4vw;
    padding: 0 0 0 5.3333333333vw;
  }
}
.l-section_cv_wrap_search_btn span {
  position: relative;
}
.l-section_cv_wrap_search_btn span::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: -35px;
  width: 24px;
  height: 24px;
  background: url(../../src/img/icon/search_b.svg) center center no-repeat;
  background-size: cover;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .l-section_cv_wrap_search_btn span::before {
    left: -9.3333333333vw;
    width: 7.4666666667vw;
    height: 7.4666666667vw;
  }
}
.l-section_cv_wrap_search_txt {
  font-size: 20px;
  line-height: 160%;
}
@media screen and (max-width: 767px) {
  .l-section_cv_wrap_search_txt {
    font-size: 4vw;
  }
}
.l-section_cv_wrap_search:hover {
  background-color: #0085C4;
}
.l-section_contact {
  width: 100%;
  height: 563px;
  padding: 0;
  background-color: #0097CF;
  display: grid;
  grid-template-columns: 1fr 800px 1fr;
  gap: 0;
}
@media screen and (max-width: 767px) {
  .l-section_contact {
    height: auto;
    grid-template-columns: 1fr;
  }
}
.l-section_contact_left {
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-section_contact_left {
    display: none;
  }
}
.l-section_contact_left::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url(../../src/img/foot_img01.png) right center no-repeat;
  background-size: auto 100%;
  z-index: 2;
}
.l-section_contact_right {
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-section_contact_right {
    display: none;
  }
}
.l-section_contact_right::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../../src/img/foot_img02.png) left center no-repeat;
  background-size: auto 100%;
  z-index: 2;
}
.l-section_contact_wrap {
  padding: 0 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .l-section_contact_wrap {
    padding: 10.6666666667vw 5.3333333333vw;
  }
}
.l-section_contact_wrap_ttl {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  width: 100%;
  margin-bottom: 25px;
  text-align: center;
  font-size: 30px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .l-section_contact_wrap_ttl {
    font-size: 6.4vw;
    margin-bottom: 5.3333333333vw;
  }
}
.l-section_contact_wrap_ttl::before, .l-section_contact_wrap_ttl::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #ffffff;
}
.l-section_contact_wrap_txt {
  font-size: 26px;
  line-height: 160%;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .l-section_contact_wrap_txt {
    font-size: 4.2666666667vw;
    margin-bottom: 3.2vw;
  }
}
.l-section_contact_wrap_txt em {
  font-family: "Poppins", serif;
  font-style: normal;
  font-weight: 400;
}
.l-section_contact_wrap_tel {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 0;
}
@media screen and (max-width: 767px) {
  .l-section_contact_wrap_tel {
    grid-template-columns: 1fr;
    gap: 1.3333333333vw 0;
    width: 57.3333333333vw;
    margin: 0 auto;
  }
}
.l-section_contact_wrap_tel li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 0;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .l-section_contact_wrap_tel li {
    grid-template-columns: 20vw 1fr;
  }
}
.l-section_contact_wrap_tel li .txt {
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .l-section_contact_wrap_tel li .txt {
    font-size: 4.2666666667vw;
  }
}
.l-section_contact_wrap_tel li .tel-link {
  font-family: "Poppins", serif;
  font-size: 28px;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .l-section_contact_wrap_tel li .tel-link {
    font-size: 4.8vw;
  }
  .l-section_contact_wrap_tel li .tel-link a {
    color: #ffffff;
    text-decoration: none;
  }
}
.l-section_contact_img {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
@media screen and (min-width: 768px) {
  .l-section_contact_img {
    display: none;
  }
}
.l-section_btn_wrap {
  text-align: center;
  margin: 50px auto 0;
}
@media screen and (max-width: 767px) {
  .l-section_btn_wrap {
    margin: 6.6666666667vw auto 0;
  }
}

.bg_color {
  background: url(../../src/img/bg02.png) center center repeat-y;
  background-size: 100% auto;
}

.bg_color_gray {
  background-color: #F6F6F6;
}

.bg_color_gray2 {
  background-color: #F8F8F8;
}

.bg_color_white {
  background-color: #ffffff;
}

.bg_color_blue {
  background-color: #0097CF;
}

.l-inner {
  width: 1240px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding: 0 4vw;
  }
}

.second_ttl_wrap {
  margin: 50px auto -10px;
  max-width: 1100px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .second_ttl_wrap {
    max-width: calc(100% - 10.6666666667vw);
    margin: 10.6666666667vw auto -5.3333333333vw;
    text-align: left;
  }
}
.second_ttl_wrap_h3 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .second_ttl_wrap_h3 {
    font-size: 6.4vw;
    margin-bottom: 2.6666666667vw;
  }
}
.second_ttl_wrap_btn {
  color: #0097CF;
  font-size: 16px;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .second_ttl_wrap_btn {
    font-size: 3.7333333333vw;
  }
}
.second_ttl_wrap_btn:hover {
  opacity: 0.7;
}
.second_ttl_wrap_btn span {
  position: relative;
}
.second_ttl_wrap_btn span::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: -25px;
  width: 22px;
  height: 22px;
  background: url(../../src/img/icon/arrow_blue.svg) center center no-repeat;
  background-size: cover;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .second_ttl_wrap_btn span::after {
    right: -5.3333333333vw;
    width: 4.8vw;
    height: 4.8vw;
  }
}
.second_ttl_wrap .job-no-txt {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .second_ttl_wrap .job-no-txt {
    margin-top: 4vw;
  }
}
.second_ttl_wrap .job-no-txt span {
  display: inline-block;
  font-size: 16px;
  background-color: #EDF5FD;
  padding: 15px 40px;
  border-radius: 6px;
  border: 1px solid #B1D6E4;
}
@media screen and (max-width: 767px) {
  .second_ttl_wrap .job-no-txt span {
    font-size: 4vw;
    padding: 4vw;
    line-height: 160%;
  }
}

/* ---------------------------------------------------------------------------
 * アニメーション
--------------------------------------------------------------------------- */
.sa {
  opacity: 0;
  transition: all 0.8s ease;
}

.sa.show {
  opacity: 1;
  transform: none;
}

/* 表示方向 */
.sa--lr {
  transform: translate(-100px, 0);
}

.sa--rl {
  transform: translate(100px, 0);
}

.sa--up {
  transform: translate(0, 50px);
}

.sa--down {
  transform: translate(0, -100px);
}

.sa--scaleUp {
  transform: scale(0.5);
}

.sa--scaleDown {
  transform: scale(1.5);
}

.sa--rotateL {
  transform: rotate(180deg);
}

.sa--rotateR {
  transform: rotate(-180deg);
}

/* 時間ずらし */
.sa.time01 {
  transition-delay: 0s;
}

.sa.time02 {
  transition-delay: 0.3s;
}

.sa.time03 {
  transition-delay: 0.6s;
}

.sa.time04 {
  transition-delay: 0.9s;
}

.fade {
  animation-name: fade;
  animation-duration: 2s;
  animation-iteration-count: 1;
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes SlideIn {
  0% {
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes SlideIn2 {
  0% {
    transform: translate(100px, 0);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.c-btn_contact {
  width: 400px;
  height: 65px;
  margin: 0 auto 40px;
  background: #ffffff;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15);
  border-radius: 100px;
  padding: 0 0 0 40px;
  font-size: 24px;
  line-height: 65px;
  color: #0097CF;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .c-btn_contact {
    width: 89.3333333333vw;
    height: 14.4vw;
    margin: 0 auto 8vw;
    line-height: 14.4vw;
    padding: 0 0 0 8vw;
    font-size: 4.8vw;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.15);
  }
}
.c-btn_contact.btn {
  border: 2px solid #0097CF;
  margin: 0 auto;
}
.c-btn_contact span {
  position: relative;
}
.c-btn_contact span::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: -40px;
  width: 26px;
  height: 21px;
  transform: translateY(-50%);
  background: url(../../src/img/icon/icon_mail.svg) center center no-repeat;
  background-size: cover;
  transition: 0.3s all;
}
@media screen and (max-width: 767px) {
  .c-btn_contact span::before {
    left: -9.3333333333vw;
    width: 6.1333333333vw;
    height: 4.8vw;
  }
}
.c-btn_contact:hover {
  background: #EDF5FD;
}
.c-btn_download {
  width: 400px;
  height: 65px;
  margin: 0 auto;
  background: #0097CF;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15);
  border-radius: 100px;
  padding: 0 30px 0 0;
  font-size: 22px;
  line-height: 62px;
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  border: 2px solid #0097CF;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-btn_download {
    width: 89.3333333333vw;
    height: 14.4vw;
    line-height: 14.4vw;
    padding: 0 5.3333333333vw 0 0;
    font-size: 4.8vw;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.15);
  }
}
.c-btn_download:hover {
  background: #0085C4;
}
.c-btn_download span {
  position: relative;
}
.c-btn_download span::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: -35px;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
  background: url(../../src/img/icon/download_w.svg) center center no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .c-btn_download span::after {
    right: -7.2vw;
    width: 5.3333333333vw;
    height: 5.3333333333vw;
  }
}
.c-btn_web {
  width: 400px;
  height: 65px;
  margin: 0 auto 20px;
  background: #FFDA1B;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15);
  border-radius: 100px;
  padding: 0 0 0 40px;
  font-size: 24px;
  line-height: 65px;
  color: #333333;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
}
@media screen and (max-width: 1500px) {
  .c-btn_web {
    width: 320px;
    height: 60px;
    font-size: 20px;
    line-height: 60px;
  }
}
@media screen and (max-width: 767px) {
  .c-btn_web {
    height: 14.4vw;
    line-height: 14.4vw;
    font-size: 5.3333333333vw;
    padding: 0 0 0 4vw;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.15);
  }
}
.c-btn_web span {
  position: relative;
}
.c-btn_web span em {
  font-family: "Poppins", serif;
  font-style: normal;
  font-weight: 500;
}
.c-btn_web span::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: -40px;
  width: 28px;
  height: 28px;
  transform: translateY(-50%);
  background: url(../../src/img/icon/web.svg) center center no-repeat;
  background-size: cover;
  transition: 0.3s all;
}
@media screen and (max-width: 767px) {
  .c-btn_web span::before {
    left: 12vw;
    width: 7.2vw;
    height: 5.0666666667vw;
  }
}
.c-btn_web:hover {
  background: #F8D314;
}
.c-btn_search {
  width: 400px;
  height: 65px;
  margin: 0 auto;
  background: #0097CF;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15);
  border-radius: 100px;
  padding: 0 0 0 40px;
  font-size: 24px;
  line-height: 65px;
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
}
@media screen and (max-width: 1500px) {
  .c-btn_search {
    width: 320px;
    height: 60px;
    font-size: 20px;
    line-height: 60px;
  }
}
@media screen and (max-width: 767px) {
  .c-btn_search {
    height: 14.4vw;
    line-height: 14.4vw;
    font-size: 5.3333333333vw;
    padding: 0 0 0 4vw;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.15);
  }
}
.c-btn_search span {
  position: relative;
}
.c-btn_search span::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: -40px;
  width: 28px;
  height: 28px;
  transform: translateY(-50%);
  background: url(../../src/img/icon/search_w.svg) center center no-repeat;
  background-size: cover;
  transition: 0.3s all;
}
@media screen and (max-width: 767px) {
  .c-btn_search span::before {
    left: 12vw;
    width: 7.2vw;
    height: 5.0666666667vw;
  }
}
.c-btn_search:hover {
  background: #0085C4;
}
.c-btn_right a {
  width: 400px;
  height: 65px;
  margin: 0 auto;
  background: #ffffff;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15);
  border-radius: 100px;
  padding: 0;
  font-size: 24px;
  line-height: 62px;
  color: #0097CF;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  border: 2px solid #0097CF;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-btn_right a {
    width: 100%;
    height: 14.4vw;
    line-height: 14.4vw;
    font-size: 4.8vw;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.15);
  }
}
.c-btn_right a:hover {
  background: #EDF5FD;
}
.c-btn_right a::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  width: 12px;
  height: 12px;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s all;
  border-top: 2px solid #0097CF;
  border-right: 2px solid #0097CF;
}
@media screen and (max-width: 767px) {
  .c-btn_right a::after {
    right: 5.8666666667vw;
    width: 2.6666666667vw;
    height: 2.6666666667vw;
  }
}
.c-btn_right a:hover::after {
  right: 22px;
}
.c-btn_right.yellow a {
  background-color: #FFDA1B;
  border: 2px solid #FFDA1B;
  color: #333333;
}
.c-btn_right.yellow a:hover {
  background: #F8D314;
}
.c-btn_right.yellow a::after {
  border-top: 2px solid #333333;
  border-right: 2px solid #333333;
}
.c-btn_right.blue a {
  background-color: #0097CF;
  border: 2px solid #0097CF;
  color: #ffffff;
}
.c-btn_right.blue a:hover {
  background: #0085C4;
}
.c-btn_right.blue a::after {
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
}
.c-btn_left a {
  width: 400px;
  height: 65px;
  margin: 0 auto;
  background: #0097CF;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15);
  border-radius: 100px;
  padding: 0;
  font-size: 24px;
  line-height: 60px;
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-btn_left a {
    width: 89.3333333333vw;
    height: 14.4vw;
    line-height: 14.4vw;
    font-size: 4.8vw;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.15);
  }
}
.c-btn_left a::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 30px;
  width: 12px;
  height: 12px;
  transform: translateY(-50%) rotate(-135deg);
  transition: 0.3s all;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
}
@media screen and (max-width: 767px) {
  .c-btn_left a::after {
    left: 5.8666666667vw;
    width: 2.1333333333vw;
    height: 2.1333333333vw;
  }
}
.c-btn_left a:hover::after {
  left: 25px;
}
.c-btn_left.small a {
  width: 300px;
  height: 55px;
  font-size: 18px;
  line-height: 55px;
}
@media screen and (max-width: 767px) {
  .c-btn_left.small a {
    width: 80vw;
    height: 14.4vw;
    font-size: 4.8vw;
    line-height: 14.4vw;
  }
}
.c-btn_line a {
  width: 100%;
  max-width: 400px;
  height: 80px;
  margin: 0 auto;
  background: #06C755;
  border-radius: 6px;
  padding: 5px 10px 5px 20px;
  font-size: 18px;
  line-height: 130%;
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  border: 2px solid #06C755;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .c-btn_line a {
    border-radius: 4px;
    height: 16vw;
    padding: 1.3333333333vw 2.6666666667vw;
    font-size: 2.9333333333vw;
  }
}
.c-btn_line a:hover {
  opacity: 0.8;
}
.c-btn_line a:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 66px;
  height: 66px;
  transform: translateY(-50%);
  background: url(../../src/img/icon/line_qr.png) center center no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .c-btn_line a:after {
    right: 1.3333333333vw;
    width: 10.6666666667vw;
    height: 10.6666666667vw;
  }
}
.c-btn_job_print {
  width: 120px;
}
.c-btn_job_print a {
  font-size: 16px;
  line-height: 170%;
  color: #0097CF;
  font-weight: bold;
  text-decoration: none;
  padding-left: 33px;
}
.c-btn_job_print a:hover {
  opacity: 0.7;
}
.c-btn_job_print a span {
  position: relative;
}
.c-btn_job_print a span:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: -33px;
  width: 26px;
  height: 26px;
  transform: translateY(-50%);
  background: url(../../src/img/icon/icon_print.svg) center center no-repeat;
  background-size: cover;
}
.c-btn_job_contact {
  width: 160px;
}
@media screen and (max-width: 767px) {
  .c-btn_job_contact {
    width: 100%;
  }
}
.c-btn_job_contact a {
  font-size: 16px;
  line-height: 170%;
  color: #0097CF;
  font-weight: bold;
  text-decoration: none;
  padding-left: 30px;
}
@media screen and (max-width: 767px) {
  .c-btn_job_contact a {
    font-size: 15px;
    font-size: 0.8333333333rem;
    padding-left: 6.6666666667vw;
  }
}
.c-btn_job_contact a:hover {
  opacity: 0.7;
}
.c-btn_job_contact a span {
  position: relative;
}
.c-btn_job_contact a span:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: -30px;
  width: 22px;
  height: 18px;
  transform: translateY(-50%);
  background: url(../../src/img/icon/icon_mail.svg) center center no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .c-btn_job_contact a span:before {
    left: -6.6666666667vw;
    width: 4.8vw;
    height: 3.7333333333vw;
  }
}
.c-btn_job_back {
  margin-top: 25px;
}
@media screen and (max-width: 767px) {
  .c-btn_job_back {
    margin-top: 4vw;
  }
}
.c-btn_job_back a {
  font-weight: bold;
  font-size: 18px;
  text-decoration: none;
  color: #0097CF;
  padding-left: 28px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-btn_job_back a {
    font-size: 4vw;
    padding-left: 6.6666666667vw;
  }
}
.c-btn_job_back a::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 22px;
  height: 22px;
  background: url(../../src/img/icon/arrow_blue.svg) center center no-repeat;
  background-size: cover;
  transform: translateY(-50%) scaleX(-1);
}
@media screen and (max-width: 767px) {
  .c-btn_job_back a::before {
    width: 5.8666666667vw;
    height: 5.8666666667vw;
  }
}
.c-btn_job_back a:hover {
  opacity: 0.7;
}
.c-btn.nolink {
  width: 100%;
  max-width: 400px;
  padding: 20px 0;
  border-radius: 100px;
  color: #CCCCCC;
  background-color: #888888;
  text-align: center;
  font-weight: bold;
  line-height: 150%;
  font-size: 20px;
  margin: 0 auto;
  text-decoration: none;
  display: inline-block;
  letter-spacing: 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-btn.nolink {
    max-width: 100%;
    font-size: 20px;
    font-size: 1.1111111111rem;
    padding: 4vw 0;
  }
}

.c-list__dot li {
  padding-left: 12px;
  position: relative;
  line-height: 160%;
  margin-bottom: 5px;
  font-size: 18px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .c-list__dot li {
    font-size: 4vw;
    margin-bottom: 2.1333333333vw;
    padding-left: 5.3333333333vw;
  }
}
.c-list__dot li span {
  font-weight: bold;
}
.c-list__dot li::before {
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  background-color: #333333;
  border-radius: 50%;
  position: absolute;
  top: 11px;
  left: 2px;
}
@media screen and (max-width: 767px) {
  .c-list__dot li::before {
    width: 1.0666666667vw;
    height: 1.0666666667vw;
    top: 2.4vw;
    left: 1.3333333333vw;
  }
}
.c-list__dot li:last-child {
  margin-bottom: 0;
}
.c-list__dot.black li {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .c-list__dot.black li {
    font-size: 4vw;
  }
}
.c-list__dot.txtsmall {
  margin-bottom: 15px;
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  .c-list__dot.txtsmall {
    margin-bottom: 2.1333333333vw;
    padding-left: 1.3333333333vw;
  }
}
.c-list__dot.txtsmall li {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .c-list__dot.txtsmall li {
    font-size: 3.4666666667vw;
  }
}
.c-list__check {
  max-width: 1100px;
  margin: 0 auto;
}
.c-list__check li {
  position: relative;
  line-height: 160%;
  margin-bottom: 25px;
  font-size: 20px;
  font-weight: bold;
  text-align: left;
  background-color: #ffffff;
  border-radius: 6px;
  padding: 25px 30px 25px 75px;
}
@media screen and (max-width: 767px) {
  .c-list__check li {
    margin-bottom: 4vw;
    font-size: 4vw;
    padding: 4.8vw 4vw 4.8vw 13.3333333333vw;
  }
}
.c-list__check li span {
  font-weight: bold;
}
.c-list__check li::before {
  display: block;
  content: "";
  position: absolute;
  top: 25px;
  left: 33px;
  width: 32px;
  height: 32px;
  background: url(../../src/img/icon/check_b.svg) center center no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .c-list__check li::before {
    width: 6.9333333333vw;
    height: 6.9333333333vw;
    top: 4.8vw;
    left: 4vw;
  }
}
.c-list__check li:last-child {
  margin-bottom: 0;
}
.c-list__no {
  counter-reset: cnt;
}
.c-list__no li {
  padding-left: 25px;
  position: relative;
  line-height: 180%;
  font-size: 18px;
  margin-bottom: 15px;
  list-style-type: none;
  counter-increment: cnt;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-list__no li {
    font-size: 4vw;
    padding-left: 6.6666666667vw;
    margin-bottom: 2.1333333333vw;
    line-height: 160%;
  }
}
.c-list__no li:last-child {
  margin-bottom: 0;
}
.c-list__no li::before {
  position: absolute;
  content: counter(cnt) ".";
  display: inline-block;
  font-family: "Poppins", serif;
  font-weight: 700;
  color: #0097CF;
  font-size: 20px;
  left: 2px;
  top: 0;
}
@media screen and (max-width: 767px) {
  .c-list__no li::before {
    font-size: 4vw;
    left: 0.8vw;
    top: 0.2666666667vw;
  }
}
.c-list__no li span {
  font-weight: 700;
  color: #0097CF;
}
.c-list__no.black li::before {
  color: #333333;
  font-weight: 500;
  font-size: 18px;
}

.c-nav_sp a {
  font-family: sans-serif;
  text-decoration: none;
}
.c-nav_sp .hamburger {
  display: block;
  height: 60px;
  width: 60px;
  margin-left: auto;
  position: relative;
  z-index: 10;
  border: none;
  background-color: #00A0BB;
}
.c-nav_sp .hamburger.-active .hamburger__line {
  background-color: transparent;
}
.c-nav_sp .hamburger.-active .hamburger__line::before {
  top: 0;
  transform: rotate(45deg);
}
.c-nav_sp .hamburger.-active .hamburger__line::after {
  top: 0;
  transform: rotate(-45deg);
}
.c-nav_sp .hamburger__line {
  display: block;
  height: 2px;
  position: absolute;
  top: 29px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  background-color: #ffffff;
  transition: 0.3s;
}
.c-nav_sp .hamburger__line:before,
.c-nav_sp .hamburger__line:after {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
  background-color: #ffffff;
  transition: inherit;
}
.c-nav_sp .hamburger__line:before {
  top: -9px;
}
.c-nav_sp .hamburger__line:after {
  top: 9px;
}
.c-nav_sp .header {
  width: 100%;
}
.c-nav_sp .header__nav-area {
  position: fixed;
  top: 60px;
  left: -100%;
  z-index: 9;
  height: 100dvh;
  width: 100%;
  visibility: hidden;
  padding-top: 0;
  background-color: #F8F8F8;
  transition: 0.3s;
}
.c-nav_sp .header__nav-area.-active {
  left: 0;
  visibility: visible;
  height: 100vh;
  overflow: auto;
}
.c-nav_sp .global-navigation {
  padding: 8vw 5.3333333333vw 48vw;
}
.c-nav_sp .global-navigation__list > li {
  padding-bottom: 24px;
  border-bottom: 1px solid #CCCCCC;
}
.c-nav_sp .global-navigation__list > li.beginners .global-navigation__link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: bold;
  transition: color 0.3s;
  font-size: 18px;
  width: 100%;
  height: 54px;
  border-radius: 100px;
  background-color: #00A0BB;
  padding: 0 0 0 20px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.15);
}
.c-nav_sp .global-navigation__list > li.beginners .global-navigation__link span {
  position: relative;
}
.c-nav_sp .global-navigation__list > li.beginners .global-navigation__link span::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: -30px;
  width: 16px;
  height: 22px;
  background: url(../../src/img/icon/wakaba.svg) center center no-repeat;
  background-size: cover;
  transform: translateY(-50%);
}
.c-nav_sp .global-navigation__list > li.beginners .global-navigation__link::after {
  display: none;
}
.c-nav_sp .global-navigation__list > li + li {
  margin-top: 24px;
}
.c-nav_sp .global-navigation__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #333333;
  font-weight: bold;
  transition: color 0.3s;
  font-size: 18px;
  position: relative;
}
.c-nav_sp .global-navigation__link.-active {
  color: #0097CF;
}
.c-nav_sp .global-navigation__link::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 5px;
  width: 10px;
  height: 10px;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s all;
  border-top: 2px solid #0097CF;
  border-right: 2px solid #0097CF;
}
.c-nav_sp .global-navigation__link.-accordion {
  position: relative;
  background: none;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  padding: 0;
}
.c-nav_sp .global-navigation__link.-accordion::after {
  content: "";
  display: block;
  height: 16px;
  position: absolute;
  top: 50%;
  right: 7px;
  width: 2px;
  background-color: #0097CF;
  transform: translateY(-50%);
  transition: transform 0.3s;
}
.c-nav_sp .global-navigation__link.-accordion::before {
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  top: 50%;
  right: 0;
  width: 16px;
  background-color: #0097CF;
  transform: translateY(-50%);
}
.c-nav_sp .global-navigation__link.-active::after {
  transform: translateY(-50%) rotate(-90deg);
}
.c-nav_sp .accordion {
  height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: 0.3s;
}
.c-nav_sp .accordion.-active {
  height: auto;
  padding-top: 22px;
  visibility: visible;
}
.c-nav_sp .accordion__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.c-nav_sp .accordion__list li {
  font-size: 13px;
  text-align: left;
  margin-top: 0;
  line-height: 150%;
}
.c-nav_sp .accordion__list li + li.sub {
  padding-left: 30px;
}
.c-nav_sp .accordion__list li + li.sub a {
  position: relative;
}
.c-nav_sp .accordion__list li + li.sub a::before {
  content: "";
  display: block;
  width: 10px;
  height: 1px;
  position: absolute;
  left: -15px;
  top: 50%;
  transition: 0.3s all;
  background-color: #888888;
  transform: none;
}
.c-nav_sp .accordion__link {
  color: #333333;
}
.c-nav_pc {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  font-weight: bold;
  margin-right: 60px;
}
@media screen and (max-width: 1500px) {
  .c-nav_pc {
    margin-right: 20px;
  }
}
.c-nav_pc .link a {
  margin-left: 30px;
  position: relative;
  height: 86px;
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #222222;
  padding-top: 25px;
}
.c-nav_pc .link a:hover {
  color: #0097CF;
}
.c-nav_pc .link:first-child {
  margin-left: 0;
}
.c-nav_foot_sub {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .c-nav_foot_sub {
    max-width: 89.3333333333vw;
    padding: 10.6666666667vw 0;
    grid-template-columns: 1fr 1fr;
    gap: 2.4vw;
  }
}
.c-nav_foot_sub li a {
  width: 100%;
  height: 80px;
  border: 1px solid #0097CF;
  border-radius: 6px;
  background-color: #ffffff;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 30px;
  font-size: 18px;
  font-weight: bold;
  color: #0097CF;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .c-nav_foot_sub li a {
    height: 12.8vw;
    border-radius: 4px;
    padding: 0 2.6666666667vw;
    font-size: 3.7333333333vw;
  }
}
.c-nav_foot_sub li a span {
  position: relative;
}
.c-nav_foot_sub li a span::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: -18px;
  width: 12px;
  height: 12px;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s all;
  border-top: 2px solid #0097CF;
  border-right: 2px solid #0097CF;
}
@media screen and (max-width: 767px) {
  .c-nav_foot_sub li a span::after {
    display: none;
  }
}
.c-nav_foot_sub li a:hover {
  background-color: #EDF5FD;
}
.c-nav_foot_sub li.beginners a {
  position: relative;
}
.c-nav_foot_sub li.beginners a::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  width: 48px;
  height: 48px;
  background: url(../../src/img/icon/icon01.svg) center center no-repeat;
  background-size: cover;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .c-nav_foot_sub li.beginners a::before {
    right: 2.4vw;
    width: 8vw;
    height: 8vw;
  }
}
.c-nav_foot_sub li.company a {
  position: relative;
}
.c-nav_foot_sub li.company a::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  width: 48px;
  height: 48px;
  background: url(../../src/img/icon/icon02.svg) center center no-repeat;
  background-size: cover;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .c-nav_foot_sub li.company a::before {
    right: 2.4vw;
    width: 8vw;
    height: 8vw;
  }
}
.c-nav_foot_sub li.faq a {
  position: relative;
}
.c-nav_foot_sub li.faq a::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  width: 48px;
  height: 48px;
  background: url(../../src/img/icon/icon03.svg) center center no-repeat;
  background-size: cover;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .c-nav_foot_sub li.faq a::before {
    right: 2.4vw;
    width: 8vw;
    height: 8vw;
  }
}
.c-nav_foot_sub li.glossary a {
  position: relative;
}
.c-nav_foot_sub li.glossary a::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  width: 48px;
  height: 48px;
  background: url(../../src/img/icon/icon04.svg) center center no-repeat;
  background-size: cover;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .c-nav_foot_sub li.glossary a::before {
    right: 2.4vw;
    width: 8vw;
    height: 8vw;
  }
}

.c-nav_pc .link.has_child-nav:hover .child-nav {
  transform: translateY(0);
  opacity: 1;
  z-index: 1001;
}

.c-nav_pc .link.has_child-nav {
  position: relative;
}

.c-nav_pc .link.has_child-nav .child-nav {
  position: absolute;
  left: 0;
  top: 80%;
  width: 280px;
  background: rgba(255, 255, 255, 0.95);
  padding: 15px 15px 15px 37px;
  opacity: 0;
  transform: translateY(0);
  transition: 0.3s all;
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
}

.child-nav .contentsWrap {
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
}
.child-nav .contentsWrap_sav {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.child-nav .contentsWrap_sav .link2 {
  max-width: 360px;
}
.child-nav .contentsWrap_sav .link2 a {
  margin: 0;
  height: auto;
  color: #333333 !important;
  font-size: 15px;
  position: relative;
  padding-top: 0;
}
.child-nav .contentsWrap_sav .link2 a:hover {
  text-decoration: none;
  color: #0097CF !important;
}
.child-nav .contentsWrap_sav .link2 a::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: -26px;
  width: 20px;
  height: 20px;
  background: url(../../src/img/icon/arrow_blue.svg) center center no-repeat;
  background-size: cover;
  transform: translateY(-50%);
}

.rounded-table {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #CCCCCC;
}
.rounded-table .c-table {
  border-collapse: collapse;
  width: 100%;
}
.rounded-table .c-table.company th {
  width: 100%;
  font-size: 18px;
  line-height: 150%;
  font-weight: bold;
  background-color: #F8F8F8;
  color: #333333;
  text-align: left;
  padding: 13px 20px;
  border-bottom: 1px solid #CCCCCC;
}
@media screen and (max-width: 767px) {
  .rounded-table .c-table.company th {
    font-size: 3.4666666667vw;
    padding: 2.6666666667vw 2.1333333333vw;
  }
}
.rounded-table .c-table.company td {
  background: #ffffff;
  border-bottom: 1px solid #CCCCCC;
  text-align: left;
  vertical-align: middle;
  padding: 13px 20px;
  font-size: 18px;
  line-height: 150%;
}
@media screen and (max-width: 767px) {
  .rounded-table .c-table.company td {
    font-size: 3.4666666667vw;
    padding: 2.6666666667vw 2.1333333333vw;
  }
}
.rounded-table .c-table.company td.last {
  border-bottom: none;
}
.rounded-table .c-table.company td.ttl {
  width: 360px;
  border-right: 1px solid #CCCCCC;
}
@media screen and (max-width: 767px) {
  .rounded-table .c-table.company td.ttl {
    width: 89.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .rounded-table .c-table.company td .c-list__dot li {
    font-size: 3.4666666667vw;
    margin-bottom: 1.3333333333vw;
    padding-left: 4vw;
  }
}
.rounded-table .c-table.glossary th {
  width: 360px;
  font-size: 18px;
  line-height: 150%;
  font-weight: bold;
  background-color: #EDF5FD;
  color: #333333;
  text-align: left;
  padding: 15px 20px;
  border-right: 1px solid #CCCCCC;
  border-bottom: 1px solid #CCCCCC;
}
@media screen and (max-width: 767px) {
  .rounded-table .c-table.glossary th {
    width: 89.3333333333vw;
    font-size: 4vw;
    padding: 3.2vw 4vw;
    display: block;
  }
}
.rounded-table .c-table.glossary th.last {
  border-bottom: none;
}
@media screen and (max-width: 767px) {
  .rounded-table .c-table.glossary th.last {
    border-bottom: 1px solid #CCCCCC;
  }
}
.rounded-table .c-table.glossary td {
  background: #ffffff;
  border-bottom: 1px solid #CCCCCC;
  text-align: left;
  vertical-align: middle;
  padding: 15px 20px;
  font-size: 18px;
  line-height: 150%;
}
@media screen and (max-width: 767px) {
  .rounded-table .c-table.glossary td {
    width: 89.3333333333vw;
    font-size: 3.7333333333vw;
    padding: 3.2vw 4vw;
    display: block;
  }
}
.rounded-table .c-table.glossary td.last {
  border-bottom: none;
}

.c-title-toph2 {
  width: 100%;
  font-size: 30px;
  font-weight: bold;
  line-height: 160%;
  color: #333333;
  border-bottom: 1px solid #333333;
  margin: 35px 0 45px;
  padding-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .c-title-toph2 {
    font-size: 4.8vw;
    margin: 4vw 0 6.6666666667vw;
    padding-bottom: 3.4666666667vw;
  }
}
.c-title-toph2.white {
  color: #ffffff;
  border-bottom: 1px solid #8BD0E9;
}
.c-title-toph2_new {
  font-size: 26px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .c-title-toph2_new {
    font-size: 6.9333333333vw;
    text-align: left;
  }
}
.c-title-toph2_news {
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .c-title-toph2_news {
    font-size: 4.2666666667vw;
  }
}
.c-title-toph2_workstyle {
  font-size: 38px;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 150%;
}
@media screen and (max-width: 767px) {
  .c-title-toph2_workstyle {
    font-size: 5.8666666667vw;
    margin-bottom: 5.3333333333vw;
  }
}
.c-title-toph2_workstyle {
  /*span {
      position: relative;

      &::before {
          content: "";
          position: absolute;
          display: block;
          width: 3px;
          height: 40px;
          background-color: $color--black;
          border-radius: 3px;
          left: -25px;
          top: 3px;
          transform: rotate(-25deg);

          @include mq() {
              width: pw(2);
              height: pw(30);
              left: pw(-15);
              top: 0;
          }
      }

      &::after {
          content: "";
          position: absolute;
          display: block;
          width: 3px;
          height: 40px;
          background-color: $color--black;
          border-radius: 3px;
          right: -25px;
          top: 3px;
          transform: rotate(25deg);

          @include mq() {
              width: pw(2);
              height: pw(30);
              right: pw(-15);
              top: 0;
          }
      }
  }*/
}
.c-title_h2_job {
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .c-title_h2_job {
    font-size: 5.3333333333vw;
    text-align: left;
    margin-bottom: 2.1333333333vw;
  }
}
.c-title_h2_job span {
  margin-left: 15px;
  font-family: "Poppins", serif;
  font-weight: 500;
  font-size: 30px;
}
@media screen and (max-width: 767px) {
  .c-title_h2_job span {
    font-size: 6.9333333333vw;
    margin-left: 2.6666666667vw;
  }
}
.c-title_h3 {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  position: relative;
  padding-bottom: 30px;
  margin-bottom: 45px;
  line-height: 160%;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .c-title_h3 {
    font-size: 6.4vw;
    padding-bottom: 4vw;
    margin-bottom: 6.6666666667vw;
  }
}
.c-title_h3::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 2px;
  background-color: #0097CF;
  bottom: 0;
  left: 50%;
  margin-left: -50px;
}
@media screen and (max-width: 767px) {
  .c-title_h3::before {
    width: 13.3333333333vw;
    margin-left: -6.6666666667vw;
  }
}
.c-title_h3.left {
  text-align: left;
}
.c-title_h3.left::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 2px;
  background-color: #0097CF;
  bottom: 0;
  left: 0;
  margin-left: 0;
}
.c-title_h3.white {
  color: #ffffff;
}
.c-title_h3.white::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 2px;
  background-color: #ffffff;
  bottom: 0;
  left: 50%;
  margin-left: -50px;
}
.c-title_h3_jobseekers01 {
  font-size: 36px;
  font-weight: bold;
  line-height: 160%;
}
@media screen and (max-width: 767px) {
  .c-title_h3_jobseekers01 {
    font-size: 5.3333333333vw;
    margin-bottom: 5.3333333333vw;
  }
}
.c-title_h3_jobseekers01 span {
  position: relative;
}
.c-title_h3_jobseekers01 span::before {
  content: "";
  position: absolute;
  display: block;
  width: 3px;
  height: 40px;
  background-color: #333333;
  border-radius: 3px;
  left: -25px;
  top: 3px;
  transform: rotate(-25deg);
}
@media screen and (max-width: 767px) {
  .c-title_h3_jobseekers01 span::before {
    display: none;
  }
}
.c-title_h3_jobseekers01 span::after {
  content: "";
  position: absolute;
  display: block;
  width: 3px;
  height: 40px;
  background-color: #333333;
  border-radius: 3px;
  right: -25px;
  top: 3px;
  transform: rotate(25deg);
}
@media screen and (max-width: 767px) {
  .c-title_h3_jobseekers01 span::after {
    display: none;
  }
}
.c-title_h3_jobseekers02 {
  font-size: 32px;
  font-weight: bold;
  line-height: 160%;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .c-title_h3_jobseekers02 {
    font-size: 6.9333333333vw;
    margin-bottom: 2.6666666667vw;
  }
}
.c-title_h3_form {
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  margin: 30px 0 8px;
  line-height: 150%;
}
@media screen and (max-width: 767px) {
  .c-title_h3_form {
    font-size: 5.8666666667vw;
    margin: 16vw 0 2.6666666667vw;
  }
}
.c-title_h3_form.mt110 {
  margin-top: 110px;
}
@media screen and (max-width: 767px) {
  .c-title_h3_form.mt110 {
    margin: 16vw 0 0;
  }
}
.c-title_h3_flow {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  position: relative;
  margin-bottom: 30px;
  line-height: 140%;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .c-title_h3_flow {
    font-size: 6.4vw;
    margin-bottom: 6.6666666667vw;
  }
}
.c-title_h3_flow small {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .c-title_h3_flow small {
    font-size: 4.8vw;
  }
}
.c-title_h4 {
  width: 100%;
  font-size: 24px;
  font-weight: bold;
  text-align: left;
  line-height: 160%;
  border-bottom: 1px solid #CCCCCC;
  margin-bottom: 30px;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .c-title_h4 {
    font-size: 4.8vw;
    margin-bottom: 4vw;
    padding-bottom: 2.6666666667vw;
  }
}
.c-title_h4_jobseekers01 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .c-title_h4_jobseekers01 {
    font-size: 5.3333333333vw;
    margin-bottom: 3.4666666667vw;
  }
}
.c-title_h4_jobseekers01 .trade {
  position: relative;
  padding-left: 45px;
}
@media screen and (max-width: 767px) {
  .c-title_h4_jobseekers01 .trade {
    padding-left: 10.1333333333vw;
  }
}
.c-title_h4_jobseekers01 .trade::before {
  display: block;
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 33px;
  height: 33px;
  background: url(../../src/img/icon/trade.svg) center center no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .c-title_h4_jobseekers01 .trade::before {
    top: -0.5333333333vw;
    width: 7.4666666667vw;
    height: 7.4666666667vw;
  }
}
.c-title_h4_jobseekers01 .office {
  position: relative;
  padding-left: 45px;
}
@media screen and (max-width: 767px) {
  .c-title_h4_jobseekers01 .office {
    padding-left: 10.1333333333vw;
  }
}
.c-title_h4_jobseekers01 .office::before {
  display: block;
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 33px;
  height: 33px;
  background: url(../../src/img/icon/office.svg) center center no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .c-title_h4_jobseekers01 .office::before {
    top: -0.5333333333vw;
    width: 7.4666666667vw;
    height: 7.4666666667vw;
  }
}
.c-title_h5_workers {
  color: #0097CF;
  font-size: 20px;
  font-weight: bold;
  line-height: 160%;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .c-title_h5_workers {
    font-size: 4.2666666667vw;
    margin-bottom: 2.6666666667vw;
  }
}
.c-title_h5_jobseekers01 {
  font-size: 18px;
  font-weight: bold;
  color: #0097CF;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .c-title_h5_jobseekers01 {
    font-size: 4.2666666667vw;
    margin-bottom: 1.6vw;
  }
}
.c-title_h5_jobseekers01.black {
  color: #333333;
}
.c-title_h5_jobseekers02 {
  font-size: 28px;
  font-weight: bold;
  color: #0097CF;
  margin-bottom: 30px;
  padding-left: 52px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-title_h5_jobseekers02 {
    font-size: 4.8vw;
    margin-bottom: 4vw;
    padding-left: 10.6666666667vw;
  }
}
.c-title_h5_jobseekers02 span {
  position: absolute;
  top: 2px;
  left: 0;
  font-family: "Poppins", serif;
  font-weight: 500;
  font-size: 36px;
}
@media screen and (max-width: 767px) {
  .c-title_h5_jobseekers02 span {
    font-size: 6.9333333333vw;
    top: 0.5333333333vw;
  }
}

.h2_wrap {
  width: 100%;
  height: 400px;
  overflow: hidden;
  margin-top: 86px;
}
@media screen and (max-width: 1500px) {
  .h2_wrap {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .h2_wrap {
    height: 40vw;
  }
}
.h2_wrap .c-title-h2 {
  width: 660px;
  height: 100%;
  background: rgba(0, 151, 207, 0.9);
  text-align: center;
  color: #ffffff;
  font-size: 42px;
  font-weight: bold;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media screen and (max-width: 1500px) {
  .h2_wrap .c-title-h2 {
    width: 560px;
  }
}
@media screen and (max-width: 767px) {
  .h2_wrap .c-title-h2 {
    width: 100%;
    font-size: 7.4666666667vw;
  }
}
.h2_wrap .c-title-h2 .en {
  font-family: "Poppins", serif;
  font-size: 24px;
  display: block;
  font-weight: 500;
  margin-bottom: 15px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .h2_wrap .c-title-h2 .en {
    font-size: 3.7333333333vw;
    margin-bottom: 1.3333333333vw;
  }
}
.h2_wrap .c-title-h2 .sub {
  width: 390px;
  font-size: 24px;
  display: block;
  font-weight: bold;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #8BD0E9;
}
@media screen and (max-width: 767px) {
  .h2_wrap .c-title-h2 .sub {
    width: 78.6666666667vw;
    font-size: 4.8vw;
    margin-top: 3.2vw;
    padding-top: 1.8666666667vw;
  }
}
.h2_wrap_simple {
  width: 100%;
  height: 200px;
  border-bottom: 1px solid #CCCCCC;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  margin-top: 86px;
}
@media screen and (max-width: 1500px) {
  .h2_wrap_simple {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .h2_wrap_simple {
    height: 34.6666666667vw;
  }
}
.h2_wrap_simple .c-title-h2 {
  width: 1100px;
  font-size: 42px;
  font-weight: bold;
  margin: 40px auto 0;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .h2_wrap_simple .c-title-h2 {
    width: 89.3333333333vw;
    font-size: 7.4666666667vw;
    margin: 6.9333333333vw auto 0;
    position: relative;
  }
}
.h2_wrap_simple .c-title-h2 .en {
  font-family: "Poppins", serif;
  color: #0097CF;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  .h2_wrap_simple .c-title-h2 .en {
    font-size: 3.7333333333vw;
    position: absolute;
    top: -8vw;
    left: 0;
    margin-left: 0;
  }
}

.c-form #entryForm input[type=text],
.c-form #entryForm input[type=email],
.c-form #entryForm input[type=tel],
.c-form #entryForm input[type=password],
.c-form #entryForm input[type=date] {
  width: 100%;
  padding: 12px 24px;
  border: 1px solid #B1D6E4;
  background-color: #EDF5FD;
  border-radius: 6px;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 150%;
  -webkit-appearance: none;
}
@media screen and (max-width: 767px) {
  .c-form #entryForm input[type=text],
  .c-form #entryForm input[type=email],
  .c-form #entryForm input[type=tel],
  .c-form #entryForm input[type=password],
  .c-form #entryForm input[type=date] {
    font-size: 16px;
    padding: 2.9333333333vw 5.3333333333vw;
  }
}
.c-form #entryForm input[type=text].wide_s,
.c-form #entryForm input[type=email].wide_s,
.c-form #entryForm input[type=tel].wide_s,
.c-form #entryForm input[type=password].wide_s,
.c-form #entryForm input[type=date].wide_s {
  width: calc(50% - 10px);
}
@media screen and (max-width: 767px) {
  .c-form #entryForm input[type=text].wide_s,
  .c-form #entryForm input[type=email].wide_s,
  .c-form #entryForm input[type=tel].wide_s,
  .c-form #entryForm input[type=password].wide_s,
  .c-form #entryForm input[type=date].wide_s {
    width: 100%;
  }
}
.c-form #entryForm input[type=text].w150,
.c-form #entryForm input[type=email].w150,
.c-form #entryForm input[type=tel].w150,
.c-form #entryForm input[type=password].w150,
.c-form #entryForm input[type=date].w150 {
  width: 150px;
}
@media screen and (max-width: 767px) {
  .c-form #entryForm input[type=text].w150,
  .c-form #entryForm input[type=email].w150,
  .c-form #entryForm input[type=tel].w150,
  .c-form #entryForm input[type=password].w150,
  .c-form #entryForm input[type=date].w150 {
    width: 37.3333333333vw;
  }
}
.c-form #entryForm input[type=text].w100,
.c-form #entryForm input[type=email].w100,
.c-form #entryForm input[type=tel].w100,
.c-form #entryForm input[type=password].w100,
.c-form #entryForm input[type=date].w100 {
  width: 100px;
}
@media screen and (max-width: 767px) {
  .c-form #entryForm input[type=text].w100,
  .c-form #entryForm input[type=email].w100,
  .c-form #entryForm input[type=tel].w100,
  .c-form #entryForm input[type=password].w100,
  .c-form #entryForm input[type=date].w100 {
    width: 13.3333333333vw;
    padding: 2.9333333333vw 1.3333333333vw;
  }
}
.c-form #entryForm input[type=text].w70,
.c-form #entryForm input[type=email].w70,
.c-form #entryForm input[type=tel].w70,
.c-form #entryForm input[type=password].w70,
.c-form #entryForm input[type=date].w70 {
  width: 70px;
}
@media screen and (max-width: 767px) {
  .c-form #entryForm input[type=text].w70,
  .c-form #entryForm input[type=email].w70,
  .c-form #entryForm input[type=tel].w70,
  .c-form #entryForm input[type=password].w70,
  .c-form #entryForm input[type=date].w70 {
    width: 9.3333333333vw;
    padding: 2.9333333333vw 1.3333333333vw;
  }
}
.c-form #entryForm input[type=text].w650,
.c-form #entryForm input[type=email].w650,
.c-form #entryForm input[type=tel].w650,
.c-form #entryForm input[type=password].w650,
.c-form #entryForm input[type=date].w650 {
  width: 650px;
}
.c-form #entryForm input[type=text].wpcf7-validates-as-tel,
.c-form #entryForm input[type=email].wpcf7-validates-as-tel,
.c-form #entryForm input[type=tel].wpcf7-validates-as-tel,
.c-form #entryForm input[type=password].wpcf7-validates-as-tel,
.c-form #entryForm input[type=date].wpcf7-validates-as-tel {
  width: 300px;
}
@media screen and (max-width: 767px) {
  .c-form #entryForm input[type=text].wpcf7-validates-as-tel,
  .c-form #entryForm input[type=email].wpcf7-validates-as-tel,
  .c-form #entryForm input[type=tel].wpcf7-validates-as-tel,
  .c-form #entryForm input[type=password].wpcf7-validates-as-tel,
  .c-form #entryForm input[type=date].wpcf7-validates-as-tel {
    width: 100%;
  }
}
.c-form #entryForm input[type=date]::-webkit-calendar-picker-indicator {
  cursor: pointer;
}
.c-form #entryForm textarea {
  width: 100%;
  height: 165px;
  box-sizing: border-box;
  padding: 12px 24px;
  border: 1px solid #B1D6E4;
  background-color: #EDF5FD;
  border-radius: 6px;
  font-size: 16px;
  line-height: 150%;
  -webkit-appearance: none;
  resize: vertical;
}
@media screen and (max-width: 767px) {
  .c-form #entryForm textarea {
    font-size: 16px;
    padding: 3.2vw 2.6666666667vw;
  }
}
.c-form #entryForm .selectbox {
  display: inline-flex;
  align-items: center;
  position: relative;
  width: 100%;
}
.c-form #entryForm .selectbox::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  width: 12px;
  height: 6px;
  transform: translateY(-50%);
  background: url(../../src/img/icon/arrow_down_g.svg) center center no-repeat;
  background-size: cover;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .c-form #entryForm .selectbox::after {
    right: 4vw;
  }
}
.c-form #entryForm .selectbox select {
  padding: 11px 30px 11px 24px;
  border: 1px solid #B1D6E4;
  background-color: #EDF5FD;
  border-radius: 6px;
  font-size: 16px;
  line-height: 150%;
  position: relative;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .c-form #entryForm .selectbox select {
    font-size: 16px;
    padding: 3.2vw 2.6666666667vw;
  }
}
.c-form #entryForm .group {
  margin: 10px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .c-form #entryForm .group {
    margin: 2.6666666667vw 0 -2.6666666667vw;
  }
}
.c-form #entryForm .group label {
  width: 100%;
  margin: 0 40px 10px 0;
  box-sizing: border-box;
  position: relative;
  display: inline-block;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  .c-form #entryForm .group label {
    margin: 0 0 4vw 0;
    font-size: 4vw;
    font-weight: 500;
  }
}
.c-form #entryForm .group label input[type=radio] + span {
  position: relative;
  padding: 0 0 0 40px;
}
@media screen and (max-width: 767px) {
  .c-form #entryForm .group label input[type=radio] + span {
    padding: 0 0 0 35px;
    display: inline-block;
  }
}
.c-form #entryForm .group label input[type=radio] + span::before {
  content: "";
  width: 26px;
  height: 26px;
  margin-top: -13px;
  border: 1px solid #B1D6E4;
  background-color: #EDF5FD;
  border-radius: 26px;
  display: inline-block;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 0;
  transition: 0.3s all;
}
@media screen and (max-width: 767px) {
  .c-form #entryForm .group label input[type=radio] + span::before {
    width: 1.5em;
    height: 1.5em;
  }
}
.c-form #entryForm .group label input[type=radio] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.c-form #entryForm .group label input[type=radio]:checked + span::before {
  border: 6px solid #0097CF;
}
.c-form #entryForm .group.column {
  width: 100%;
}
.c-form #entryForm .group.column label {
  width: auto;
}
@media screen and (max-width: 767px) {
  .c-form #entryForm .group.column label {
    width: 50%;
    margin: 0 0 3.4666666667vw 0;
  }
}
@media screen and (max-width: 767px) {
  .c-form #entryForm .group.column input {
    margin: 0 0 3.4666666667vw 0;
  }
}
@media screen and (max-width: 767px) {
  .c-form #entryForm .group.long label {
    width: 100%;
    margin: 0 0 3.4666666667vw 0;
  }
  .c-form #entryForm .group.long label span {
    line-height: 150%;
  }
}
.c-form #entryForm .privacy_check {
  text-align: center;
  padding: 30px 0 0;
}
@media screen and (max-width: 767px) {
  .c-form #entryForm .privacy_check {
    padding: 2.6666666667vw 0 0;
  }
}
.c-form #entryForm p.error {
  color: #e0311d;
  font-size: 13px;
  margin-top: 7px;
  line-height: 150%;
}
@media screen and (max-width: 767px) {
  .c-form #entryForm p.error {
    margin-top: 1.8666666667vw;
  }
}
.c-form #entryForm p.comment {
  color: #888888;
  font-size: 13px;
  margin-top: 7px;
  line-height: 150%;
}
@media screen and (max-width: 767px) {
  .c-form #entryForm p.comment {
    margin-top: 1.8666666667vw;
  }
}
.c-form #entryForm p.comment2 {
  color: #888888;
  font-size: 13px;
  margin-bottom: 7px;
  line-height: 150%;
}
@media screen and (max-width: 767px) {
  .c-form #entryForm p.comment2 {
    margin-bottom: 1.8666666667vw;
  }
}
.c-form #entryForm {
  /* CHECKBOX */
}
.c-form #entryForm label input[type=checkbox] + span {
  font-size: 16px;
  margin: 0;
  position: relative;
  padding: 0 0 0 40px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .c-form #entryForm label input[type=checkbox] + span {
    font-size: 4vw;
    font-weight: 500;
    margin: 0 0 2.1333333333vw 0;
    padding: 0 0 0 9.3333333333vw;
  }
}
.c-form #entryForm label input[type=checkbox] + span::before,
.c-form #entryForm label input[type=checkbox] + span::after {
  content: "";
  display: inline-block;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 0;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .c-form #entryForm label input[type=checkbox] + span::before,
  .c-form #entryForm label input[type=checkbox] + span::after {
    top: -0.5333333333vw;
  }
}
.c-form #entryForm label input[type=checkbox] + span::before {
  width: 1.6em;
  height: 1.6em;
  margin-top: -0.8em;
  border: 1px solid #B1D6E4;
  background-color: #EDF5FD;
  border-radius: 3px;
  z-index: 0;
  transition: 0.3s all;
}
@media screen and (max-width: 767px) {
  .c-form #entryForm label input[type=checkbox] + span::before {
    margin-top: 0;
  }
}
.c-form #entryForm label input[type=checkbox] + span::after {
  width: 0.5em;
  height: 0.7em;
  margin-top: -0.5em;
  margin-left: 0.6em;
  transform: scale(0) rotate(45deg);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .c-form #entryForm label input[type=checkbox] + span::after {
    margin-top: 1.6vw;
  }
}
.c-form #entryForm label input[type=checkbox]:checked + span::before {
  border: none;
}
.c-form #entryForm label input[type=checkbox]:checked + span::after {
  border: 0.1875em solid #ffffff;
  border-width: 0 0.1875em 0.1875em 0;
  transform: scale(1) rotate(45deg);
}
@media screen and (max-width: 767px) {
  .c-form #entryForm label input[type=checkbox]:checked + span::after {
    border: 0.2em solid #ffffff;
    border-width: 0 0.2em 0.2em 0;
  }
}
.c-form #entryForm label input[type=checkbox]:checked + span::before {
  background-color: #0097CF;
}

input + select,
input + textarea,
select + input,
select + textarea,
textarea + input,
textarea + select {
  margin-top: 0.75em;
}

:-moz-placeholder {
  color: #AFAFAF;
}

:placeholder-shown {
  color: #AFAFAF;
}

::-webkit-input-placeholder {
  color: #AFAFAF;
}

:-moz-placeholder {
  color: #AFAFAF;
  opacity: 1;
}

::-moz-placeholder {
  color: #AFAFAF;
  opacity: 1;
}

:focus:-moz-placeholder {
  color: inherit;
}

:focus:placeholder-shown {
  color: inherit;
}

:focus::-webkit-input-placeholder {
  font-size: 0;
}

:focus:-moz-placeholder {
  font-size: 0;
}

:focus::-moz-placeholder {
  font-size: 0;
}

:focus:-ms-input-placeholder {
  font-size: 0;
}

select::-ms-expand {
  display: none;
}

input[type=checkbox],
input[type=radio] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  display: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

.select_wrap {
  position: relative;
}
.select_wrap::after {
  display: block;
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 7px solid #333333;
  top: 50%;
  margin-top: -3.5px;
  right: 30px;
  pointer-events: none;
}

select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #CCCCCC;
  background-color: #F6F6F6;
  border-radius: 6px;
  box-sizing: border-box;
  font-size: 18px;
  line-height: 180%;
  -webkit-appearance: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-align: left;
}
@media screen and (max-width: 767px) {
  select {
    font-size: 16px;
    padding: 2.6666666667vw;
  }
}

.buttonArea {
  padding: 25px 0 0;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  justify-content: center;
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .buttonArea {
    justify-content: space-between;
    padding: 4.5333333333vw 0 0;
  }
}
.buttonArea li {
  width: 48%;
  max-width: 400px;
  margin: 0 1%;
}
@media screen and (max-width: 767px) {
  .buttonArea li {
    width: 100%;
    margin: 0;
  }
  .buttonArea li:first-of-type {
    margin-bottom: 4vw;
  }
}
.buttonArea li .button_wrap {
  color: #ffffff;
  position: relative;
  line-height: 150%;
  width: 100%;
  border-radius: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 767px) {
  .buttonArea li .button_wrap {
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.15);
  }
}
.buttonArea li .button_wrap::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  width: 12px;
  height: 12px;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s all;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transition: 0.3s all;
}
@media screen and (max-width: 767px) {
  .buttonArea li .button_wrap::after {
    right: 5.8666666667vw;
    width: 2.1333333333vw;
    height: 2.1333333333vw;
  }
}
.buttonArea li .button_wrap:hover {
  opacity: 0.9;
}
.buttonArea li .button_wrap:hover::after {
  right: 20px;
}
@media screen and (max-width: 767px) {
  .buttonArea li .button_wrap:hover::after {
    right: 5.3333333333vw;
  }
}
.buttonArea li .button_wrap input[type=submit] {
  width: 100%;
  padding: 16px 0;
  border-radius: 100px;
  background-color: #0097CF;
  color: #ffffff;
  text-align: center;
  font-weight: bold;
  line-height: 150%;
  font-size: 22px;
  transition: 0.3s all;
  margin: 0 auto;
  text-decoration: none;
  display: inline-block !important;
  position: relative;
}
@media screen and (max-width: 767px) {
  .buttonArea li .button_wrap input[type=submit] {
    font-size: 4.8vw;
    padding: 4vw 0 4vw;
  }
}
.buttonArea li .button_wrap input[type=button] {
  width: 100%;
  padding: 16px 0;
  border-radius: 100px;
  background-color: #0097CF;
  color: #ffffff;
  text-align: center;
  font-weight: bold;
  line-height: 150%;
  font-size: 22px;
  transition: 0.3s all;
  margin: 0 auto;
  text-decoration: none;
  display: inline-block !important;
  position: relative;
}
@media screen and (max-width: 767px) {
  .buttonArea li .button_wrap input[type=button] {
    font-size: 4.8vw;
    padding: 4vw 0 4vw;
  }
}
.buttonArea li .button_wrap.graybtn::after {
  left: 25px;
  transform: translateY(-50%) rotate(-135deg);
}
@media screen and (max-width: 767px) {
  .buttonArea li .button_wrap.graybtn::after {
    left: 5.3333333333vw;
  }
}
.buttonArea li .button_wrap.graybtn input[type=button] {
  width: 100%;
  padding: 16px 0;
  border-radius: 100px;
  background: #888888;
  color: #ffffff;
  text-align: center;
  font-weight: bold;
  line-height: 150%;
  font-size: 22px;
  transition: 0.3s all;
  margin: 0 auto;
  text-decoration: none;
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 767px) {
  .buttonArea li .button_wrap.graybtn input[type=button] {
    font-size: 4.8vw;
    padding: 4vw 0 4vw;
  }
}
.buttonArea li .button_wrap.graybtn:hover {
  opacity: 0.9;
}
.buttonArea li .button_wrap.graybtn:hover::after {
  left: 20px;
}
@media screen and (max-width: 767px) {
  .buttonArea li .button_wrap.graybtn:hover::after {
    left: 5.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .buttonArea li.long {
    width: 100%;
  }
}
.buttonArea li.long input[type=submit] {
  font-size: 24px;
  padding: 14.5px 0;
}
@media screen and (max-width: 767px) {
  .buttonArea li.long input[type=submit] {
    font-size: 4.2666666667vw;
    padding: 4vw 0 4vw;
  }
}
.buttonArea li.long input[type=button] {
  font-size: 24px;
  padding: 14.5px 0;
}
@media screen and (max-width: 767px) {
  .buttonArea li.long input[type=button] {
    font-size: 4.2666666667vw;
    padding: 4vw 0 4vw;
  }
}
.buttonArea li.long.txt_s input[type=submit] {
  font-size: 20px;
  padding: 19px 10px 19px 0;
}
@media screen and (max-width: 767px) {
  .buttonArea li.long.txt_s input[type=submit] {
    font-size: 4.2666666667vw;
    padding: 4vw 0 4vw;
  }
}

.additionbtn {
  text-align: right;
  padding-right: 90px;
  font-size: 16px;
  font-weight: bold;
  line-height: 150%;
}
@media screen and (max-width: 767px) {
  .additionbtn {
    padding-right: 8.8vw;
    font-size: 4.2666666667vw;
    margin-bottom: 8vw;
  }
}
.additionbtn span {
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .additionbtn span {
    font-size: 3.2vw;
  }
}
.additionbtn button {
  transition: 0.3s all;
  position: relative;
}
.additionbtn button:hover {
  color: #0097CF;
}
.additionbtn button::after {
  position: absolute;
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  top: 50%;
  right: -50px;
  transform: translateY(-50%);
  background: url(../../src/img/icon/icon_plus.svg) center center no-repeat;
  background-size: cover;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .additionbtn button::after {
    width: 6.6666666667vw;
    height: 6.6666666667vw;
    right: -8.8vw;
  }
}

.wc-block-components-button__text {
  color: #ffffff;
  position: relative;
  line-height: 150%;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 767px) {
  .wc-block-components-button__text {
    border-radius: 6px;
  }
}
.wc-block-components-button__text::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  width: 9px;
  height: 18px;
  transform: translateY(-50%);
  background: url(../../src/img/icon/arrow_right_w.svg) center center no-repeat;
  background-size: cover;
  transition: 0.3s all;
}
@media screen and (max-width: 767px) {
  .wc-block-components-button__text::after {
    right: 5.3333333333vw;
    width: 2.4vw;
    height: 4.8vw;
  }
}
.wc-block-components-button__text:hover {
  opacity: 0.7;
}
.wc-block-components-button__text:hover::after {
  right: 20px;
}
@media screen and (max-width: 767px) {
  .wc-block-components-button__text:hover::after {
    right: 5.3333333333vw;
  }
}
.wc-block-components-button__text input[type=submit] {
  width: 100%;
  padding: 20px 0;
  border-radius: 10px;
  background-color: #FFDA1B;
  color: #ffffff;
  text-align: center;
  font-weight: bold;
  line-height: 150%;
  font-size: 24px;
  transition: 0.3s all;
  margin: 0 auto;
  text-decoration: none;
  display: inline-block !important;
  position: relative;
}
@media screen and (max-width: 767px) {
  .wc-block-components-button__text input[type=submit] {
    font-size: 4.8vw;
    padding: 4.2666666667vw 0 4.5333333333vw;
    border-radius: 6px;
  }
}
.wc-block-components-button__text.graybtn::after {
  left: 23px;
  transform: translateY(-50%) scaleX(-1);
}
@media screen and (max-width: 767px) {
  .wc-block-components-button__text.graybtn::after {
    left: 5.3333333333vw;
  }
}
.wc-block-components-button__text.graybtn input[type=button] {
  width: 100%;
  padding: 20px 0;
  border-radius: 10px;
  background: #888888;
  color: #ffffff;
  text-align: center;
  font-weight: bold;
  line-height: 150%;
  font-size: 24px;
  transition: 0.3s all;
  margin: 0 auto;
  text-decoration: none;
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 767px) {
  .wc-block-components-button__text.graybtn input[type=button] {
    font-size: 4.8vw;
    padding: 4.2666666667vw 0 4.5333333333vw;
    border-radius: 6px;
  }
}
.wc-block-components-button__text.graybtn:hover {
  opacity: 0.3s all;
}
.wc-block-components-button__text.graybtn:hover::after {
  left: 18px;
}
@media screen and (max-width: 767px) {
  .wc-block-components-button__text.graybtn:hover::after {
    left: 5.3333333333vw;
  }
}

.p-contact_wrap_ditail button[type=submit],
.wc-block-components-checkout-place-order-button__text {
  width: 100%;
  padding: 20px 0;
  border-radius: 10px;
  background-color: #FFDA1B;
  color: #ffffff;
  text-align: center;
  font-weight: bold;
  line-height: 150%;
  font-size: 24px;
  transition: 0.3s all;
  margin: 0 auto;
  text-decoration: none;
  display: inline-block !important;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-contact_wrap_ditail button[type=submit],
  .wc-block-components-checkout-place-order-button__text {
    font-size: 4.8vw;
    padding: 4.2666666667vw 0 4.5333333333vw;
    border-radius: 6px;
  }
}

.woocommerce-error {
  color: #e0311d;
  font-size: 15px;
  margin: 0 0 20px;
  line-height: 150%;
  background-color: #fdf7f7;
  padding: 20px;
  border-radius: 6px;
  border: none;
}
.woocommerce-error a {
  color: #e0311d;
}
@media screen and (max-width: 767px) {
  .woocommerce-error {
    margin: 0 0 4vw;
    padding: 15px;
  }
}

.wpcf7-spinner {
  display: none !important;
}

.wpcf7-not-valid-tip {
  display: none;
}

.wpcf7-custom-item-error .wpcf7-not-valid-tip {
  display: block;
  color: #e0311d;
}

.wpcf7-custom-item-error {
  display: block;
  width: 100%;
}

[class^=confirm_] {
  white-space: pre-wrap;
}

.buttonArea li .button_wrap:has(input[type=button]:disabled) input {
  cursor: not-allowed !important;
  /*opacity: .5;*/
  background-color: #AFAFAF;
}

#autozip {
  display: none !important;
}

.career-item .col2 {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px dotted #ccc;
}

.group- {
  display: none;
}

.item-count-1 .col2.career-item-2,
.item-count-1 .col2.career-item-3,
.item-count-1 .col2.career-item-4 {
  display: none;
}

.item-count-2 .col2.career-item-3,
.item-count-2 .col2.career-item-4 {
  display: none;
}

.item-count-3 .col2.career-item-4 {
  display: none;
}

/* ---------- ファイル添付の崩れ対策（重要） ---------- */
.p-contact .upload_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-contact .upload_wrap .wpcf7-form-control-wrap {
  width: 100%;
  text-align: center;
}

.p-contact .upload_wrap input[type=file] {
  /*display: inline-block !important;*/
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  position: static !important;
  margin: 0 auto !important;
}

@media screen and (max-width: 767px) {
  .wpcf7-list-item {
    display: inherit !important;
  }
}

.wpcf7-form-control-wrap {
  width: 100%;
}

.c-pager {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 13px;
  margin: 60px 0 0;
}
@media screen and (max-width: 767px) {
  .c-pager {
    gap: 0 2.6666666667vw;
    margin: 6.6666666667vw 0 0;
  }
}
.c-pager a {
  width: 44px;
  height: 44px;
  display: inline-block;
  line-height: 44px;
  text-align: center;
  font-family: "Poppins", serif;
  font-weight: 500;
  font-size: 18px;
  color: #0097CF;
  background-color: #ffffff;
  border-radius: 100px;
  transition: 0.3s all;
  text-decoration: none;
  border: 1px solid #B1D6E4;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-pager a {
    width: 9.6vw;
    height: 9.6vw;
    line-height: 9.6vw;
    font-size: 16px;
    font-size: 0.8888888889rem;
  }
}
.c-pager a:hover {
  background-color: #EDF5FD;
}
.c-pager a:hover .c-pager__prev::before,
.c-pager a:hover .c-pager__next::before {
  border-top: 2px solid #0097CF;
  border-right: 2px solid #0097CF;
}
.c-pager a {
  /*.c-pager__prev,
      .c-pager__next {
          position: relative;
      }*/
}
.c-pager a .c-pager__prev::before {
  display: block;
  content: "";
  position: absolute;
  top: 15px;
  left: 50%;
  margin-left: -3px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #0097CF;
  border-right: 2px solid #0097CF;
  transform: rotate(-135deg);
}
@media screen and (max-width: 767px) {
  .c-pager a .c-pager__prev::before {
    top: 3.2vw;
    margin-left: -0.5333333333vw;
    width: 2.1333333333vw;
    height: 2.1333333333vw;
  }
}
.c-pager a .c-pager__next::before {
  display: block;
  content: "";
  position: absolute;
  top: 15px;
  right: 50%;
  margin-right: -3px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #0097CF;
  border-right: 2px solid #0097CF;
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .c-pager a .c-pager__next::before {
    top: 3.2vw;
    width: 2.1333333333vw;
    height: 2.1333333333vw;
    margin-right: -0.5333333333vw;
  }
}
.c-pager .current_page_number, .c-pager__current {
  color: #ffffff !important;
  background-color: #0097CF !important;
  pointer-events: none;
  position: relative;
  border: 1px solid #0097CF;
}
.c-pager__dots {
  font-size: 18px;
}
.c-pager .page-numbers.current {
  width: 44px;
  height: 44px;
  display: inline-block;
  line-height: 44px;
  text-align: center;
  font-family: "Poppins", serif;
  font-weight: 500;
  font-size: 18px;
  border-radius: 100px;
  transition: 0.3s all;
  text-decoration: none;
  color: #ffffff !important;
  background-color: #0097CF !important;
  pointer-events: none;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-pager .page-numbers.current {
    width: 9.6vw;
    height: 9.6vw;
    line-height: 9.6vw;
    font-size: 16px;
    font-size: 0.8888888889rem;
  }
}

.woocommerce-pagination .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 13px;
  margin: 60px 0 0;
}
@media screen and (max-width: 767px) {
  .woocommerce-pagination .page-numbers {
    gap: 0 2.6666666667vw;
    margin: 6.6666666667vw 0 0;
  }
}

.woocommerce-pagination .page-numbers a {
  width: 44px;
  height: 44px;
  display: inline-block;
  line-height: 44px;
  text-align: center;
  font-family: "Poppins", serif;
  font-weight: 700;
  font-size: 18px;
  color: #0097CF;
  background-color: #ffffff;
  border-radius: 100px;
  transition: 0.3s all;
  text-decoration: none;
  border: 1px solid #B1D6E4;
  position: relative;
  /*.woocommerce-pagination .page-numbers__prev,
     .next {
          position: relative;
      }*/
}
@media screen and (max-width: 767px) {
  .woocommerce-pagination .page-numbers a {
    width: 9.6vw;
    height: 9.6vw;
    line-height: 9.6vw;
    font-size: 16px;
    font-size: 0.8888888889rem;
  }
}

.woocommerce-pagination .page-numbers a:hover {
  color: #ffffff;
  background-color: #EDF5FD;
}

.woocommerce-pagination .page-numbers a.prev,
.woocommerce-pagination .page-numbers a.next {
  font-size: 0;
}

.woocommerce-pagination .page-numbers a.prev:hover::before,
.woocommerce-pagination .page-numbers a.next:hover::before {
  border-top: 2px solid #0097CF;
  border-right: 2px solid #0097CF;
}

.woocommerce-pagination .page-numbers a.prev:hover::before,
.woocommerce-pagination .page-numbers a.next:hover::before {
  border-top: 2px solid #0097CF;
  border-right: 2px solid #0097CF;
}

.woocommerce-pagination .page-numbers a.prev::before {
  display: block;
  content: "";
  position: absolute;
  top: 15px;
  left: 50%;
  margin-left: -3px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #0097CF;
  border-right: 2px solid #0097CF;
  transform: rotate(-135deg);
}
@media screen and (max-width: 767px) {
  .woocommerce-pagination .page-numbers a.prev::before {
    top: 3.2vw;
    margin-left: -0.5333333333vw;
    width: 2.1333333333vw;
    height: 2.1333333333vw;
  }
}

.woocommerce-pagination .page-numbers a.next::before {
  display: block;
  content: "";
  position: absolute;
  top: 15px;
  right: 50%;
  margin-right: -3px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #0097CF;
  border-right: 2px solid #0097CF;
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .woocommerce-pagination .page-numbers a.next::before {
    top: 3.2vw;
    width: 2.1333333333vw;
    height: 2.1333333333vw;
    margin-right: -0.5333333333vw;
  }
}

.woocommerce-pagination .page-numbers .current_page_number,
.woocommerce-pagination .page-numbers__current {
  color: #ffffff !important;
  background-color: #0097CF !important;
  pointer-events: none;
  position: relative;
  border: 1px solid #0097CF;
}

.woocommerce-pagination .page-numbers__dots {
  font-size: 18px;
}

.woocommerce-pagination .page-numbers .page-numbers.current {
  width: 44px;
  height: 44px;
  display: inline-block;
  line-height: 44px;
  text-align: center;
  font-family: "Poppins", serif;
  font-weight: 700;
  font-size: 18px;
  border-radius: 100px;
  transition: 0.3s all;
  text-decoration: none;
  color: #ffffff !important;
  background-color: #0097CF !important;
  pointer-events: none;
  position: relative;
}
@media screen and (max-width: 767px) {
  .woocommerce-pagination .page-numbers .page-numbers.current {
    width: 9.6vw;
    height: 9.6vw;
    line-height: 9.6vw;
    font-size: 16px;
    font-size: 0.8888888889rem;
  }
}

.p-header {
  width: 100%;
  min-width: 1240px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}
@media screen and (max-width: 1500px) {
  .p-header {
    position: sticky;
  }
}
@media screen and (max-width: 767px) {
  .p-header {
    min-width: 100%;
    position: fixed;
  }
}
.p-header_Box {
  width: 100%;
  height: 86px;
  position: relative;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0);
}
@media screen and (max-width: 767px) {
  .p-header_Box {
    height: 60px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.08);
  }
}
.p-header_Box.change-color {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
}
.p-header_Box.lower {
  background: rgba(255, 255, 255, 0.95);
}
.p-header_Box .logo {
  width: 403px;
  height: 86px;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-header_Box .logo {
    width: 175px;
    height: 36px;
    margin: 0 0 0 2.6666666667vw;
  }
}
.p-header_Box .logo:hover {
  opacity: 0.7;
}
.p-header_Box .logo img {
  width: auto;
  margin-right: 5px;
}
@media screen and (max-width: 767px) {
  .p-header_Box .logo img {
    width: 100%;
    margin-right: 0;
  }
}
.p-header_Box_inner {
  width: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  position: relative;
}
.p-header_Box_inner a {
  display: inline-block;
  text-decoration: none;
  color: #333333;
}
.p-header_Box_inner a:hover {
  opacity: 0.3s all;
}
.p-header_Box_inner_blank {
  position: absolute;
  font-weight: normal;
  top: 4px;
  right: 60px;
}
.p-header_Box_inner_blank a {
  font-size: 14px;
  color: #222222;
  padding-right: 25px;
}
.p-header_Box_inner_blank a:hover {
  color: #0097CF;
}
.p-header_Box_inner_blank a:hover span:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: -25px;
  width: 19px;
  height: 19px;
  background: url(../../src/img/icon/icon_blank_blue.svg) center center no-repeat;
  background-size: cover;
  transform: translateY(-50%);
}
.p-header_Box_inner_blank a span {
  position: relative;
}
.p-header_Box_inner_blank a span:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: -25px;
  width: 19px;
  height: 19px;
  background: url(../../src/img/icon/icon_blank.svg) center center no-repeat;
  background-size: cover;
  transform: translateY(-50%);
}
.p-header_Box_bana {
  position: absolute;
  top: 160px;
  right: 0;
  width: 90px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .p-header_Box_bana {
    top: 0;
    right: 60px;
    width: 120px;
    grid-template-columns: 1fr 1fr;
    font-size: 11px;
  }
}
.p-header_Box_bana li.search a {
  width: 100%;
  height: 80px;
  padding: 35px 0 0;
  background-color: #0097CF;
  border-radius: 6px 0 0 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #ffffff;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .p-header_Box_bana li.search a {
    width: 60px;
    height: 60px;
    padding: 30px 0 0;
    border-radius: 0;
  }
}
.p-header_Box_bana li.search a::before {
  display: block;
  content: "";
  position: absolute;
  top: 18px;
  left: 50%;
  width: 24px;
  height: 24px;
  background: url(../../src/img/icon/search_w.svg) center center no-repeat;
  background-size: cover;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-header_Box_bana li.search a::before {
    top: 10px;
    width: 23px;
    height: 23px;
  }
}
.p-header_Box_bana li.search a:hover {
  background-color: #0085C4;
}
.p-header_Box_bana li.web a {
  width: 100%;
  height: 80px;
  padding: 35px 0 0;
  background-color: #FFDA1B;
  border-radius: 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #333333;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .p-header_Box_bana li.web a {
    width: 60px;
    height: 60px;
    padding: 30px 0 0;
  }
}
.p-header_Box_bana li.web a::before {
  display: block;
  content: "";
  position: absolute;
  top: 18px;
  left: 50%;
  width: 24px;
  height: 24px;
  background: url(../../src/img/icon/web.svg) center center no-repeat;
  background-size: cover;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-header_Box_bana li.web a::before {
    top: 10px;
    width: 24px;
    height: 24px;
  }
}
.p-header_Box_bana li.web a:hover {
  background-color: #F8D314;
}
.p-header_Box_bana li.web a em {
  font-family: "Poppins", serif;
  font-style: normal;
}
.p-header_Box_bana li.beginners a {
  width: 100%;
  height: 80px;
  padding: 35px 0 0;
  background-color: #00A0BB;
  border-radius: 0 0 0 6px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: -0.05em;
  font-size: 13px;
}
.p-header_Box_bana li.beginners a::before {
  display: block;
  content: "";
  position: absolute;
  top: 18px;
  left: 50%;
  width: 16px;
  height: 22px;
  background: url(../../src/img/icon/wakaba.svg) center center no-repeat;
  background-size: cover;
  transform: translateX(-50%);
}
.p-header_Box_bana li.beginners a:hover {
  background-color: #008EAC;
}

@media screen and (max-width: 767px) {
  /*ハンバーガー*/
  #globalMenuSp {
    z-index: 2500;
    color: #ffffff;
    background: #0097CF;
    text-align: left;
    width: 100vw;
    transition: top 0.5s ease;
    position: absolute;
    top: 60px;
    right: 0;
    height: auto;
    display: none;
    box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.1);
    overflow-y: scroll;
  }
  #globalMenuSp.active {
    display: block;
    height: 100vh;
    overflow: auto;
  }
  #globalMenuSp .btn_wrap {
    width: calc(100% - 20px);
    margin: 0 auto;
  }
  #globalMenuSp .btn_wrap ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 0 50px;
  }
  #globalMenuSp .btn_wrap ul li {
    width: 50%;
  }
  #globalMenuSp .btn_wrap ul li a {
    height: 50px;
    line-height: 50px;
    font-size: 16px;
    text-align: center;
  }
  .navToggle {
    display: block;
    position: fixed;
    z-index: 2501;
    right: 0;
    top: 0;
    width: 60px;
    height: 60px;
    cursor: pointer;
    text-align: center;
    background-color: #0097CF;
  }
  .navToggle span {
    display: block;
    position: absolute;
    width: 26px;
    height: 2px;
    right: 17px;
    background: #ffffff;
    transition: 0.3s ease-in-out;
  }
  .navToggle span:nth-child(1) {
    top: 20px;
  }
  .navToggle span:nth-child(2) {
    top: 29px;
  }
  .navToggle span:nth-child(3) {
    top: 37px;
  }
  .navToggle.active {
    width: 60px;
    height: 60px;
    mix-blend-mode: inherit;
    transition: 0.3s ease-in-out;
  }
  .navToggle.active span:nth-child(1) {
    top: 25px;
    background: #ffffff;
    transform: rotate(-40deg);
  }
  .navToggle.active span:nth-child(2),
  .navToggle.active span:nth-child(3) {
    top: 25px;
    background: #ffffff;
    transform: rotate(40deg);
  }
}
.p-footer {
  width: 100%;
  position: relative;
  text-align: center;
  background-color: #F1F1F1;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.p-footer_left {
  background-color: #ffffff;
  width: calc((100% - 800px) / 2);
  height: 100%;
  padding: 60px 0;
}
@media screen and (max-width: 1700px) {
  .p-footer_left {
    width: 460px;
  }
}
@media screen and (max-width: 1500px) {
  .p-footer_left {
    width: 380px;
  }
}
@media screen and (max-width: 767px) {
  .p-footer_left {
    width: 100%;
    padding: 10.6666666667vw 5.3333333333vw;
  }
}
.p-footer_left_inner {
  width: 400px;
  margin: 0 auto;
}
@media screen and (max-width: 1500px) {
  .p-footer_left_inner {
    width: 320px;
  }
}
@media screen and (max-width: 767px) {
  .p-footer_left_inner {
    width: 100%;
  }
}
.p-footer_left_inner .logo {
  width: 100%;
  max-width: 359px;
  margin: 0 auto 33px;
}
@media screen and (max-width: 1500px) {
  .p-footer_left_inner .logo {
    margin: 0 auto 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-footer_left_inner .logo {
    width: 100%;
    margin: 0 auto 8vw;
  }
  .p-footer_left_inner .logo img {
    width: 100%;
  }
}
.p-footer_left_inner_btn {
  width: 100%;
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .p-footer_left_inner_btn {
    display: none;
  }
}
.p-footer_left_inner_line {
  width: 100%;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-footer_left_inner_line {
    margin-bottom: 8vw;
  }
}
.p-footer_left_inner_line a {
  font-size: 12px;
  font-weight: bold;
  padding-left: 130px;
  text-align: left;
  color: #333333;
  text-decoration: none;
  display: flex;
  align-items: center;
  line-height: 140%;
}
@media screen and (max-width: 1500px) {
  .p-footer_left_inner_line a {
    padding-left: 110px;
  }
}
@media screen and (max-width: 767px) {
  .p-footer_left_inner_line a {
    font-size: 3.7333333333vw;
    padding-left: 16vw;
  }
}
.p-footer_left_inner_line a span {
  position: relative;
}
.p-footer_left_inner_line a span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -65px;
  width: 55px;
  height: 55px;
  transform: translateY(-50%);
  background: url(../../src/img/icon/line.svg) no-repeat top center;
  background-size: cover;
}
@media screen and (max-width: 1500px) {
  .p-footer_left_inner_line a span::before {
    left: -55px;
    width: 45px;
    height: 45px;
  }
}
@media screen and (max-width: 767px) {
  .p-footer_left_inner_line a span::before {
    left: -16vw;
    width: 12vw;
    height: 12vw;
  }
}
.p-footer_left_inner_line a span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -130px;
  width: 60px;
  height: 60px;
  transform: translateY(-50%);
  background: url(../../src/img/icon/line_qr.png) no-repeat top center;
  background-size: cover;
}
@media screen and (max-width: 1500px) {
  .p-footer_left_inner_line a span::after {
    left: -110px;
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 767px) {
  .p-footer_left_inner_line a span::after {
    display: none;
  }
}
.p-footer_left_inner .copy {
  font-size: 12px;
  font-family: "Poppins", serif;
  letter-spacing: 0;
  font-weight: 400;
  color: #333333;
  line-height: 150%;
}
@media screen and (max-width: 767px) {
  .p-footer_left_inner .copy {
    text-align: center;
    font-size: 14px;
    font-size: 0.7777777778rem;
  }
}
.p-footer_right {
  width: calc((100% + 800px) / 2);
  padding: 80px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 1700px) {
  .p-footer_right {
    width: calc(100% - 460px);
  }
}
@media screen and (max-width: 1500px) {
  .p-footer_right {
    width: calc(100% - 380px);
  }
}
@media screen and (max-width: 767px) {
  .p-footer_right {
    display: none;
  }
}
.p-footer_right_nav {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 70px;
}
@media screen and (max-width: 1700px) {
  .p-footer_right_nav {
    max-width: 90%;
    gap: 40px;
  }
}
.p-footer_right_nav .nav_box {
  text-align: left;
}
.p-footer_right_nav .nav_box a {
  color: #333333;
  text-decoration: none;
  transform: 0.3s all;
}
.p-footer_right_nav .nav_box a:hover {
  opacity: 0.7;
}
.p-footer_right_nav .nav_box .ttl {
  font-size: 16px;
  font-weight: bold;
  border-bottom: 1px solid #CCCCCC;
  padding-bottom: 13px;
  margin-bottom: 16px;
}
@media screen and (max-width: 1700px) {
  .p-footer_right_nav .nav_box .ttl {
    font-size: 15px;
  }
}
.p-footer_right_nav .nav_box ul li {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 13px;
  line-height: 140%;
}
.p-footer_right_nav .nav_box ul li a {
  color: #555555;
}
.p-footer_right_nav .nav_box ul li a:hover {
  opacity: 0.7;
}
.p-footer_right_nav .nav_box ul li:last-child {
  margin-bottom: 0;
}
.p-footer_right_nav .nav_box_2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.p-footer_right_nav .nav_box2 {
  margin-top: 45px;
  text-align: center;
}
.p-footer_right_nav .nav_box2 li {
  margin-bottom: 25px !important;
}
.p-footer_right_nav .nav_box2_2col {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 45px;
}
.p-footer_right_nav .nav_box2_2col .img {
  margin: 0 4px;
}

.pagetop {
  position: fixed;
  bottom: 20px;
  right: 50px;
  transition: 0.3s all ease;
  -webkit-transition: 0.3s all ease;
  transform: translateY(100px);
  z-index: 20;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .pagetop {
    bottom: 5.3333333333vw;
    right: 5.3333333333vw;
    padding-bottom: 6vw;
  }
}
.pagetop.on {
  transform: translateY(0);
}
.pagetop a {
  display: inline-block;
  width: 55px;
  height: 55px;
}
@media screen and (max-width: 767px) {
  .pagetop a {
    width: 12vw;
    height: 12vw;
  }
}
.pagetop a:hover {
  opacity: 0.7;
}

.p-top_main_slide {
  position: relative;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1240px) {
  .p-top_main_slide {
    margin-top: 0;
  }
}
.p-top_main_slide .swiper-slide {
  position: relative;
}
.p-top_main_slide_catch {
  position: absolute;
  width: 24%;
  height: auto;
  bottom: 8%;
  left: 8%;
  animation-name: fade;
  animation-duration: 2s;
  animation-iteration-count: 1;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-top_main_slide_catch {
    width: 66.1333333333vw;
    bottom: inherit;
    top: 7.2vw;
    left: 9.0666666667vw;
  }
}
.p-top_search {
  padding: 40px 0;
  background-color: #323846;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-top_search {
    padding: 8vw 5.3333333333vw;
  }
}
.p-top_search_ttl {
  color: #ffffff;
  font-size: 18px;
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .p-top_search_ttl {
    font-size: 4.2666666667vw;
    font-weight: bold;
    margin-right: 0;
    margin-bottom: 3.2vw;
  }
}
.p-top_search_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.p-top_search_wrap_ditail {
  width: 250px !important;
  text-align: left;
  margin-right: 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top_search_wrap_ditail {
    width: 43.4666666667vw !important;
    margin-right: 0;
    margin-bottom: 2.4vw;
  }
  .p-top_search_wrap_ditail:first-of-type {
    margin-right: 2.4vw;
  }
}
.p-top_search_wrap_ditail::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: -34px;
  width: 28px;
  height: 28px;
  background: url(../../src/img/icon/x.svg) center center no-repeat;
  background-size: cover;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-top_search_wrap_ditail::before {
    display: none;
  }
}
.p-top_search_wrap_ditail.last {
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .p-top_search_wrap_ditail.last {
    width: 89.3333333333vw !important;
    margin-right: 0;
  }
}
.p-top_search_wrap_ditail.last::before {
  display: none;
}
.p-top_search_wrap_ditail input[type=text] {
  padding: 16px 25px 14px !important;
  border: none !important;
  background-color: #ffffff !important;
}
@media screen and (max-width: 767px) {
  .p-top_search_wrap_ditail input[type=text] {
    padding: 13px 12px !important;
  }
}
.p-top_search_wrap_ditail select {
  padding: 16px 37px 14px 25px !important;
  border: none !important;
  background-color: #ffffff !important;
}
@media screen and (max-width: 767px) {
  .p-top_search_wrap_ditail select {
    padding: 13px 30px 13px 12px !important;
  }
}
.p-top_search_wrap_btn button {
  width: 157px;
  height: 54px;
  padding: 0 0 0 20px;
  border-radius: 6px;
  background: #0097CF;
  color: #ffffff;
  text-align: center;
  font-weight: bold;
  line-height: 54px;
  font-size: 18px;
  transition: 0.3s all;
  margin: 0 auto;
  text-decoration: none;
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top_search_wrap_btn button {
    width: 89.3333333333vw;
    height: 14.4vw;
    padding: 0 0 0 5.3333333333vw;
    line-height: 14.4vw;
    font-size: 4.2666666667vw;
  }
}
.p-top_search_wrap_btn button::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 36px;
  width: 28px;
  height: 28px;
  background: url(../../src/img/icon/search_w.svg) center center no-repeat;
  background-size: cover;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-top_search_wrap_btn button::before {
    left: 34.1333333333vw;
    width: 5.8666666667vw;
    height: 5.8666666667vw;
  }
}
.p-top_search_wrap_btn button:hover {
  background-color: #0085C4;
}
.p-top_new {
  padding: 120px 0 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top_new {
    padding: 13.3333333333vw 5.3333333333vw 0;
  }
}
.p-top_new .filter-item.charmList {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .p-top_new .filter-item.charmList {
    margin-top: 5.3333333333vw;
  }
}
.p-top_new .List_item {
  position: relative;
}
.p-top_new .List_item_nav {
  position: absolute;
  color: #0097CF;
  top: -40px;
  right: 75px;
  font-size: 16px;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .p-top_new .List_item_nav {
    top: -29.3333333333vw;
    right: 5.3333333333vw;
    font-size: 3.7333333333vw;
  }
}
.p-top_new .List_item_nav a {
  text-decoration: none;
}
.p-top_new .List_item_nav a:hover {
  opacity: 0.7;
}
.p-top_new .List_item_nav a span {
  position: relative;
}
.p-top_new .List_item_nav a span:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: -25px;
  width: 22px;
  height: 22px;
  background: url(../../src/img/icon/arrow_blue.svg) center center no-repeat;
  background-size: cover;
  transform: translateY(-50%);
}
.p-top_new_titlewrap {
  position: absolute;
  top: 70px;
  left: 50%;
  margin-left: -570px;
}
@media screen and (max-width: 767px) {
  .p-top_new_titlewrap {
    position: relative;
    top: 0;
    left: 0;
    margin-left: 0;
  }
}
.p-top_new_titlewrap .en {
  color: #0097CF;
  text-align: left;
  font-family: "Poppins", serif;
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-top_new_titlewrap .en {
    font-size: 4.2666666667vw;
  }
}
.p-top_new_nav {
  position: absolute;
  left: 50%;
  top: 80px;
  width: 720px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 0;
  margin: 0 0 50px -150px;
  padding-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .p-top_new_nav {
    position: relative;
    width: 89.3333333333vw;
    top: 0;
    left: 0;
    margin: 5.3333333333vw 0 0;
    padding-bottom: 1.3333333333vw;
  }
}
.p-top_new_nav li {
  cursor: pointer;
  background-color: #F1F1F1;
  color: #AFAFAF;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  line-height: 160%;
  height: 48px;
  border-right: 1px solid #E2E2E2;
}
@media screen and (max-width: 767px) {
  .p-top_new_nav li {
    font-size: 3.7333333333vw;
    height: 10.6666666667vw;
  }
}
.p-top_new_nav li:first-child {
  border-radius: 6px 0 0 6px;
}
.p-top_new_nav li:last-child {
  border-radius: 0 6px 6px 0;
  border-right: none;
}
.p-top_new_nav li.is-active {
  background-color: #0097CF;
  color: #ffffff;
  position: relative;
}
.p-top_new_nav li.is-active:after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-style: solid;
  border-width: 8px 6px 0 6px;
  border-color: #0097CF transparent transparent transparent;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .p-top_new_nav li.is-active:after {
    bottom: -1.3333333333vw;
  }
}
.p-top_new_slide {
  width: 100%;
  padding: 0 50px 0;
  position: relative;
  /*margin-top: 60px;*/
}
@media screen and (max-width: 767px) {
  .p-top_new_slide {
    padding: 0;
    /*margin-top: pw(20);*/
  }
}
.p-top_new_slide_list {
  width: 100%;
  text-align: left;
}
.p-top_new_slide_list a {
  text-decoration: none;
  color: #333333;
}
.p-top_new_slide_list a:hover {
  opacity: 0.7;
}
.p-top_new_slide_list_img {
  aspect-ratio: 5/3;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .p-top_new_slide_list_img {
    margin-bottom: 4vw;
  }
}
.p-top_new_slide_list_img figure {
  width: 100%;
  height: 100%;
  margin: 0;
}
.p-top_new_slide_list_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-top_new_slide_list .icon span {
  display: inline-flex;
  padding: 3px 12px;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  border: 1px solid #0097CF;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  color: #0097CF;
}
@media screen and (max-width: 767px) {
  .p-top_new_slide_list .icon span {
    padding: 0.2666666667vw 3.2vw;
    font-size: 3.2vw;
  }
}
.p-top_new_slide_list .ttl {
  font-size: 18px;
  line-height: 160%;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .p-top_new_slide_list .ttl {
    font-size: 4.2666666667vw;
    margin-top: 3.7333333333vw;
  }
}
.p-top_new_slide .swiper-button-next {
  position: absolute;
  content: "";
  top: 35%;
  right: 25px;
  width: 15px;
  height: 15px;
  transform: rotate(45deg);
  transition: 0.3s all;
  border-top: 2px solid #0097CF;
  border-right: 2px solid #0097CF;
}
@media screen and (max-width: 767px) {
  .p-top_new_slide .swiper-button-next {
    top: 38%;
    right: -2.6666666667vw;
    width: 3.2vw;
    height: 3.2vw;
  }
}
.p-top_new_slide .swiper-button-next::after {
  display: none;
}
.p-top_new_slide .swiper-button-next:hover {
  opacity: 0.7;
}
.p-top_new_slide .swiper-button-prev {
  position: absolute;
  content: "";
  top: 35%;
  left: 25px;
  width: 15px;
  height: 15px;
  transform: rotate(-135deg);
  transition: 0.3s all;
  border-top: 2px solid #0097CF;
  border-right: 2px solid #0097CF;
}
@media screen and (max-width: 767px) {
  .p-top_new_slide .swiper-button-prev {
    top: 38%;
    left: -2.6666666667vw;
    width: 3.2vw;
    height: 3.2vw;
  }
}
.p-top_new_slide .swiper-button-prev::after {
  display: none;
}
.p-top_new_slide .swiper-button-prev:hover {
  opacity: 0.7;
}
.p-top_workstyle {
  background: url(../../src/img/bg01.png) bottom 180px center no-repeat;
  background-size: 100% auto;
  padding: 150px 0;
}
@media screen and (max-width: 767px) {
  .p-top_workstyle {
    background: url(../../src/img/bg01.png) bottom -8vw center no-repeat;
    background-size: 200% auto;
    padding: 21.3333333333vw 0 26.6666666667vw;
  }
}
.p-top_workstyle_txt {
  margin-top: 30px;
  line-height: 220%;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .p-top_workstyle_txt {
    margin: 5.3333333333vw auto;
    line-height: 180%;
    font-size: 4vw;
    padding: 0 5.3333333333vw;
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  .p-top_workstyle_link {
    margin: 4vw 12.5333333333vw 0 0;
    text-align: right;
  }
}
.p-top_workstyle_link a {
  text-decoration: none;
  font-size: 18px;
  font-family: "Poppins", serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-top_workstyle_link a {
    font-size: 3.7333333333vw;
  }
}
.p-top_workstyle_link a:hover {
  opacity: 0.7;
}
.p-top_workstyle_link a span {
  position: relative;
}
.p-top_workstyle_link a span::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  width: 22px;
  height: 22px;
  background: url(../../src/img/icon/arrow_blue.svg) center center no-repeat;
  background-size: cover;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-top_workstyle_link a span::after {
    right: -7.2vw;
    width: 5.8666666667vw;
    height: 5.8666666667vw;
  }
}
.p-top_workstyle_wrap {
  max-width: 1010px;
  margin: 35px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-top_workstyle_wrap {
    max-width: 89.3333333333vw;
    margin: 0 5.3333333333vw;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4.8vw;
  }
}
.p-top_workstyle_wrap_ditail a {
  text-decoration: none;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .p-top_workstyle_wrap_ditail a {
    position: relative;
  }
}
.p-top_workstyle_wrap_ditail a .txt {
  font-size: 18px;
  line-height: 170%;
  font-weight: bold;
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .p-top_workstyle_wrap_ditail a .txt {
    position: absolute;
    text-align: left;
    width: 45.3333333333vw;
    height: 21.3333333333vw;
    font-size: 3.4666666667vw;
    line-height: 150%;
    margin-top: 0;
    color: #ffffff;
    bottom: 0;
    right: 4vw;
    padding: 2.6666666667vw 0 0;
  }
}
.p-top_workstyle_wrap_ditail a:hover {
  opacity: 0.7;
  color: #0097CF;
}
@media screen and (max-width: 767px) {
  .p-top_workstyle_wrap_ditail:last-of-type a .txt {
    height: 24vw;
  }
}
.p-top_job {
  padding: 150px 0 0;
  text-align: left;
  overflow: hidden;
}
@media screen and (max-width: 1500px) {
  .p-top_job {
    padding: 100px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .p-top_job {
    padding: 43.4666666667vw 0 0;
  }
}
.p-top_job_img {
  position: absolute;
  top: 0;
  left: calc(50% + 180px);
  width: 780px;
}
@media screen and (max-width: 1500px) {
  .p-top_job_img {
    left: inherit;
    right: 0;
    width: 600px;
  }
}
@media screen and (max-width: 767px) {
  .p-top_job_img {
    width: 89.3333333333vw;
  }
}
.p-top_job_img img {
  border-radius: 6px 0 0 6px;
}
.p-top_job .inner {
  width: 100%;
  background-color: #0097CF;
}
.p-top_job_wrap {
  max-width: 1200px;
  padding: 140px 470px 160px 0;
  margin: 0 auto;
}
@media screen and (max-width: 1500px) {
  .p-top_job_wrap {
    padding: 100px 600px 100px 0;
  }
}
@media screen and (max-width: 767px) {
  .p-top_job_wrap {
    max-width: 89.3333333333vw;
    padding: 52vw 0 13.3333333333vw;
  }
}
.p-top_job_wrap_title {
  position: relative;
}
.p-top_job_wrap_title .en {
  font-size: 90px;
  font-family: "Poppins", serif;
  color: #ffffff;
  font-weight: 400;
  letter-spacing: -0.02em;
  display: inline-block;
}
@media screen and (max-width: 1500px) {
  .p-top_job_wrap_title .en {
    font-size: 60px;
  }
}
@media screen and (max-width: 767px) {
  .p-top_job_wrap_title .en {
    font-size: 10.6666666667vw;
  }
}
.p-top_job_wrap_title .en span {
  color: #FFDA1B;
}
.p-top_job_wrap_title_btn {
  position: absolute;
  color: #ffffff;
  bottom: 10px;
  right: 25px;
  font-size: 18px;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .p-top_job_wrap_title_btn {
    font-size: 3.7333333333vw;
    right: 5.3333333333vw;
  }
}
.p-top_job_wrap_title_btn:hover {
  opacity: 0.7;
}
.p-top_job_wrap_title_btn span {
  position: relative;
}
.p-top_job_wrap_title_btn span::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: -25px;
  width: 24px;
  height: 24px;
  background: url(../../src/img/icon/search_w.svg) center center no-repeat;
  background-size: cover;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-top_job_wrap_title_btn span::before {
    left: -6.6666666667vw;
    width: 5.8666666667vw;
    height: 5.8666666667vw;
  }
}
.p-top_job_wrap_title_btn span::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  width: 22px;
  height: 22px;
  background: url(../../src/img/icon/arrow_white.svg) center center no-repeat;
  background-size: cover;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-top_job_wrap_title_btn span::after {
    right: -5.3333333333vw;
    width: 4.8vw;
    height: 4.8vw;
  }
}
.p-top_job_wrap_txt {
  color: #ffffff;
  font-size: 20px;
  line-height: 200%;
}
@media screen and (max-width: 1500px) {
  .p-top_job_wrap_txt {
    font-size: 18px;
    line-height: 180%;
  }
}
@media screen and (max-width: 767px) {
  .p-top_job_wrap_txt {
    font-size: 4vw;
  }
}
.p-top_service {
  padding: 310px 0 0;
  text-align: left;
  margin-bottom: 160px;
}
@media screen and (max-width: 1500px) {
  .p-top_service {
    padding: 150px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .p-top_service {
    padding: 21.3333333333vw 0 0;
    margin-bottom: 34.6666666667vw;
    display: flex;
    flex-direction: column-reverse;
  }
}
.p-top_service_img {
  position: absolute;
  top: 160px;
  right: calc(50% + 180px);
  width: 780px;
}
@media screen and (max-width: 1500px) {
  .p-top_service_img {
    right: inherit;
    left: 0;
    width: 600px;
  }
}
@media screen and (max-width: 767px) {
  .p-top_service_img {
    position: relative;
    width: 89.3333333333vw;
    top: 0;
    right: inherit;
    left: 0;
  }
}
.p-top_service_img img {
  border-radius: 0 6px 6px 0;
}
.p-top_service .inner {
  width: 100%;
}
.p-top_service_wrap {
  max-width: 1200px;
  padding: 0 0 160px 470px;
  margin: 0 auto;
}
@media screen and (max-width: 1500px) {
  .p-top_service_wrap {
    padding: 100px 0 100px 600px;
  }
}
@media screen and (max-width: 767px) {
  .p-top_service_wrap {
    max-width: 89.3333333333vw;
    padding: 10.6666666667vw 0 0;
  }
}
.p-top_service_wrap_title {
  position: relative;
}
.p-top_service_wrap_title .en {
  font-size: 90px;
  font-family: "Poppins", serif;
  color: #333333;
  font-weight: 400;
  letter-spacing: -0.02em;
  display: inline-block;
}
@media screen and (max-width: 1500px) {
  .p-top_service_wrap_title .en {
    font-size: 60px;
  }
}
@media screen and (max-width: 767px) {
  .p-top_service_wrap_title .en {
    font-size: 10.6666666667vw;
  }
}
.p-top_service_wrap_title .en span {
  color: #0097CF;
}
.p-top_service_wrap_title_btn {
  position: absolute;
  color: #0097CF;
  bottom: 10px;
  right: 25px;
  font-size: 18px;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .p-top_service_wrap_title_btn {
    font-size: 3.7333333333vw;
    right: 5.3333333333vw;
  }
}
.p-top_service_wrap_title_btn:hover {
  opacity: 0.7;
}
.p-top_service_wrap_title_btn span {
  position: relative;
}
.p-top_service_wrap_title_btn span::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  width: 22px;
  height: 22px;
  background: url(../../src/img/icon/arrow_blue.svg) center center no-repeat;
  background-size: cover;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-top_service_wrap_title_btn span::after {
    right: -5.3333333333vw;
    width: 4.8vw;
    height: 4.8vw;
  }
}
.p-top_service_wrap_ttl {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 160%;
}
@media screen and (max-width: 1500px) {
  .p-top_service_wrap_ttl {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .p-top_service_wrap_ttl {
    font-size: 4.8vw;
    margin-bottom: 4vw;
  }
}
.p-top_service_wrap_txt {
  color: #333333;
  font-size: 20px;
  line-height: 200%;
}
@media screen and (max-width: 1500px) {
  .p-top_service_wrap_txt {
    font-size: 18px;
    line-height: 180%;
  }
}
@media screen and (max-width: 767px) {
  .p-top_service_wrap_txt {
    font-size: 4vw;
  }
}
.p-top_about {
  padding: 150px 0 0;
  text-align: left;
  overflow: hidden;
}
@media screen and (max-width: 1500px) {
  .p-top_about {
    padding: 100px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .p-top_about {
    padding: 0;
    display: flex;
    flex-direction: column-reverse;
  }
}
.p-top_about_img {
  position: absolute;
  top: 0;
  left: calc(50% + 180px);
  width: 780px;
  height: auto;
}
@media screen and (max-width: 1500px) {
  .p-top_about_img {
    left: inherit;
    right: 0;
    width: 600px;
  }
}
@media screen and (max-width: 767px) {
  .p-top_about_img {
    position: relative;
    width: 89.3333333333vw;
  }
}
.p-top_about_img img {
  border-radius: 6px 0 0 6px;
}
.p-top_about .inner {
  width: 100%;
}
.p-top_about_wrap {
  max-width: 1200px;
  padding: 0 470px 100px 0;
  margin: 0 auto;
}
@media screen and (max-width: 1500px) {
  .p-top_about_wrap {
    padding: 0 600px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .p-top_about_wrap {
    max-width: 89.3333333333vw;
    padding: 10.6666666667vw 0 0;
  }
}
.p-top_about_wrap_title {
  position: relative;
}
.p-top_about_wrap_title .en {
  font-size: 90px;
  font-family: "Poppins", serif;
  color: #333333;
  font-weight: 400;
  letter-spacing: -0.02em;
  display: inline-block;
}
@media screen and (max-width: 1500px) {
  .p-top_about_wrap_title .en {
    font-size: 60px;
  }
}
@media screen and (max-width: 767px) {
  .p-top_about_wrap_title .en {
    font-size: 10.6666666667vw;
  }
}
.p-top_about_wrap_title .en span {
  color: #0097CF;
}
.p-top_about_wrap_title_btn {
  position: absolute;
  color: #0097CF;
  bottom: 10px;
  right: 25px;
  font-size: 18px;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .p-top_about_wrap_title_btn {
    font-size: 3.7333333333vw;
    right: 5.3333333333vw;
  }
}
.p-top_about_wrap_title_btn:hover {
  opacity: 0.7;
}
.p-top_about_wrap_title_btn span {
  position: relative;
}
.p-top_about_wrap_title_btn span::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  width: 22px;
  height: 22px;
  background: url(../../src/img/icon/arrow_blue.svg) center center no-repeat;
  background-size: cover;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-top_about_wrap_title_btn span::after {
    right: -5.3333333333vw;
    width: 4.8vw;
    height: 4.8vw;
  }
}
.p-top_about_wrap_ttl {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 160%;
}
@media screen and (max-width: 1500px) {
  .p-top_about_wrap_ttl {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .p-top_about_wrap_ttl {
    font-size: 4.8vw;
    margin-bottom: 4vw;
  }
}
.p-top_about_wrap_txt {
  color: #333333;
  font-size: 20px;
  line-height: 200%;
}
@media screen and (max-width: 1500px) {
  .p-top_about_wrap_txt {
    font-size: 18px;
    line-height: 180%;
  }
}
@media screen and (max-width: 767px) {
  .p-top_about_wrap_txt {
    font-size: 4vw;
  }
}

.p-case .h2_wrap {
  background: url(../../src/img/case/ttl_pc.png) no-repeat top center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-case .h2_wrap {
    background: url(../../src/img/case/ttl_sp.png) no-repeat top center;
    background-size: cover;
  }
}
.p-case_txt01 {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-case_txt01 {
    margin-bottom: 5.3333333333vw;
  }
}
.p-case_wrap01 {
  max-width: 1200px;
  margin: 0 auto;
}
.p-case_wrap01_ditail {
  width: 100%;
  position: relative;
  background-color: #ffffff;
  border: 1px solid #0097CF;
  border-radius: 6px;
  padding: 50px;
  text-align: left;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .p-case_wrap01_ditail {
    padding: 11.7333333333vw 5.3333333333vw 6.6666666667vw;
    margin-bottom: 9.3333333333vw;
  }
  .p-case_wrap01_ditail:first-of-type {
    margin-top: 8vw;
  }
}
.p-case_wrap01_ditail:last-of-type {
  margin-bottom: 0;
}
.p-case_wrap01_ditail_tag {
  position: absolute;
  font-size: 22px;
  color: #ffffff;
  font-weight: bold;
  background-color: #0097CF;
  border-radius: 5px;
  padding: 5px 20px;
  top: -17px;
  left: -15px;
  line-height: 160%;
}
@media screen and (max-width: 767px) {
  .p-case_wrap01_ditail_tag {
    font-size: 4.2666666667vw;
    padding: 1.3333333333vw 4vw;
    top: -2.6666666667vw;
    left: -2.6666666667vw;
  }
}
.p-case_wrap01_ditail_tag span {
  font-family: "Poppins", serif;
  font-weight: 500;
}
.p-case_wrap01_ditail_ttl {
  font-size: 24px;
  line-height: 160%;
  font-weight: bold;
  color: #0097CF;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .p-case_wrap01_ditail_ttl {
    font-size: 4.8vw;
    margin-bottom: 2.6666666667vw;
  }
}
.p-case_wrap01_ditail_txt {
  font-size: 20px;
  line-height: 200%;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .p-case_wrap01_ditail_txt {
    font-size: 4vw;
    line-height: 180%;
    margin-bottom: 2.6666666667vw;
    text-align: justify;
  }
}
.p-case_wrap01_ditail_name {
  text-align: right;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .p-case_wrap01_ditail_name {
    font-size: 3.7333333333vw;
  }
}
.p-case_wrap {
  padding: 150px 0 0;
}
@media screen and (max-width: 767px) {
  .p-case_wrap {
    padding: 13.3333333333vw 0 0;
  }
}
.p-case_wrap02 {
  width: 100%;
  text-align: left;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-case_wrap02 {
    display: flex;
    flex-direction: column-reverse;
  }
}
.p-case_wrap02_img {
  position: absolute;
  top: 0;
  left: 0;
  /*aspect-ratio: 5 / 4;*/
  width: calc(50% + 40px);
  height: 750px;
  overflow: hidden;
  border-radius: 0 6px 6px 0;
}
@media screen and (max-width: 1500px) {
  .p-case_wrap02_img {
    width: 50%;
    height: 700px;
  }
}
@media screen and (max-width: 767px) {
  .p-case_wrap02_img {
    position: relative;
    width: 89.3333333333vw;
    height: 84.8vw;
  }
}
.p-case_wrap02_img figure {
  width: 100%;
  height: 100%;
  margin: 0;
}
.p-case_wrap02_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-case_wrap02 .inner {
  width: 100%;
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .p-case_wrap02 .inner {
    padding-top: 8vw;
  }
}
.p-case_wrap02_box {
  width: 850px;
  min-height: 750px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.9);
  padding: 90px 60px;
  position: relative;
  z-index: 2;
  margin-left: calc(50% - 130px);
}
@media screen and (max-width: 1500px) {
  .p-case_wrap02_box {
    width: calc(50% + 100px);
    min-height: 700px;
  }
  .p-case_wrap02_box .c-title_h3 {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-case_wrap02_box {
    width: 89.3333333333vw;
    min-height: auto;
    border-radius: 0;
    background: none;
    padding: 0;
    margin-left: 5.3333333333vw;
  }
  .p-case_wrap02_box .c-title_h3 {
    font-size: 5.3333333333vw;
    margin-bottom: 5.3333333333vw;
    padding-bottom: 0;
  }
  .p-case_wrap02_box .c-title_h3::before {
    display: none;
  }
}
.p-case_wrap02_box_ttl {
  font-size: 28px;
  line-height: 160%;
  font-weight: bold;
  color: #0097CF;
  margin-bottom: 20px;
}
@media screen and (max-width: 1500px) {
  .p-case_wrap02_box_ttl {
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  .p-case_wrap02_box_ttl {
    font-size: 4.8vw;
    margin-bottom: 2.6666666667vw;
  }
}
.p-case_wrap02_box_txt {
  color: #333333;
  font-size: 20px;
  line-height: 200%;
}
@media screen and (max-width: 1500px) {
  .p-case_wrap02_box_txt {
    font-size: 16px;
    line-height: 180%;
  }
}
@media screen and (max-width: 767px) {
  .p-case_wrap02_box_txt {
    font-size: 4vw;
  }
}
.p-case_wrap03 {
  width: 100%;
  margin-top: 150px;
  text-align: left;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-case_wrap03 {
    margin-top: 21.3333333333vw;
    display: flex;
    flex-direction: column-reverse;
  }
}
.p-case_wrap03_img {
  position: absolute;
  top: 0;
  right: 0;
  /*aspect-ratio: 5 / 4;*/
  width: calc(50% + 40px);
  height: 650px;
  overflow: hidden;
  border-radius: 6px 0 0 6px;
}
@media screen and (max-width: 1500px) {
  .p-case_wrap03_img {
    width: 50%;
    height: 600px;
  }
}
@media screen and (max-width: 767px) {
  .p-case_wrap03_img {
    position: relative;
    width: 89.3333333333vw;
    height: 84.8vw;
    margin-left: 10.6666666667vw;
  }
}
.p-case_wrap03_img figure {
  width: 100%;
  height: 100%;
  margin: 0;
}
.p-case_wrap03_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-case_wrap03 .inner {
  width: 100%;
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .p-case_wrap03 .inner {
    padding-top: 8vw;
  }
}
.p-case_wrap03_box {
  width: 850px;
  min-height: 650px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.9);
  padding: 90px 60px;
  position: relative;
  z-index: 2;
  margin-left: calc(50% - 720px);
}
@media screen and (max-width: 1500px) {
  .p-case_wrap03_box {
    width: calc(50% + 100px);
    margin-left: 30px;
    min-height: 600px;
  }
  .p-case_wrap03_box .c-title_h3 {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-case_wrap03_box {
    width: 89.3333333333vw;
    min-height: auto;
    border-radius: 0;
    background: none;
    padding: 0;
    margin-left: 5.3333333333vw;
  }
  .p-case_wrap03_box .c-title_h3 {
    font-size: 5.3333333333vw;
    margin-bottom: 5.3333333333vw;
    padding-bottom: 0;
  }
  .p-case_wrap03_box .c-title_h3::before {
    display: none;
  }
}
.p-case_wrap03_box_ttl {
  font-size: 28px;
  line-height: 160%;
  font-weight: bold;
  color: #0097CF;
  margin-bottom: 20px;
}
@media screen and (max-width: 1500px) {
  .p-case_wrap03_box_ttl {
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  .p-case_wrap03_box_ttl {
    font-size: 4.8vw;
    margin-bottom: 2.6666666667vw;
  }
}
.p-case_wrap03_box_txt {
  color: #333333;
  font-size: 20px;
  line-height: 200%;
}
@media screen and (max-width: 1500px) {
  .p-case_wrap03_box_txt {
    font-size: 18px;
    line-height: 180%;
  }
}
@media screen and (max-width: 767px) {
  .p-case_wrap03_box_txt {
    font-size: 4vw;
  }
}
.p-case_wrap03_box_list {
  width: 100%;
  margin: 30px 0 0;
}
.p-case_wrap03_box_list li {
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #0097CF;
  border-radius: 6px;
  color: #333333;
  font-size: 17px;
  font-weight: bold;
  line-height: 160%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 10px;
  margin-bottom: 20px;
}
.p-case_wrap03_box_list li:last-child {
  margin-bottom: 0;
}
.p-case_wrap03_box .btnarea {
  width: 100%;
  margin-top: 35px;
  padding-top: 18px;
  border-top: 1px solid #CCCCCC;
}
@media screen and (max-width: 767px) {
  .p-case_wrap03_box .btnarea {
    margin-top: 6.6666666667vw;
    padding-top: 4vw;
    text-align: right;
  }
}
.p-case_wrap03_box .btnarea a {
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .p-case_wrap03_box .btnarea a {
    font-size: 3.7333333333vw;
    padding-right: 5.3333333333vw;
  }
}
.p-case_wrap03_box .btnarea a span {
  position: relative;
}
.p-case_wrap03_box .btnarea a span::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  width: 25px;
  height: 25px;
  background: url(../../src/img/icon/arrow_blue.svg) center center no-repeat;
  background-size: cover;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-case_wrap03_box .btnarea a span::after {
    right: -5.3333333333vw;
    width: 4.8vw;
    height: 4.8vw;
  }
}
.p-case_wrap03_box .btnarea a:hover {
  opacity: 0.7;
}
.p-case_wrap04 .inner {
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-case_wrap04 .inner {
    max-width: 89.3333333333vw;
    text-align: left;
  }
}
.p-case_wrap04_box {
  margin-top: 80px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-case_wrap04_box {
    margin-top: 16vw;
  }
}
.p-case_wrap04_box_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 20px 0;
}
@media screen and (max-width: 767px) {
  .p-case_wrap04_box_list {
    grid-template-columns: 1fr;
    gap: 4vw;
    margin: 2.6666666667vw 0;
  }
}
.p-case_wrap04_box_list li {
  border: 1px solid #0097CF;
  border-radius: 6px;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: bold;
  line-height: 150%;
}
@media screen and (max-width: 767px) {
  .p-case_wrap04_box_list li {
    grid-template-columns: 1fr;
    padding: 2.6666666667vw;
    font-size: 4vw;
  }
}
.p-case_wrap04_box_list li .list {
  font-size: 15px;
  line-height: 150%;
  margin-top: 8px;
  font-weight: normal;
  padding-left: 1em;
}
@media screen and (max-width: 767px) {
  .p-case_wrap04_box_list li .list {
    margin-top: 1.3333333333vw;
    font-size: 3.7333333333vw;
    padding-left: 0;
    line-height: 160%;
  }
}
.p-case_wrap05 {
  padding: 50px 0 0;
}
@media screen and (max-width: 767px) {
  .p-case_wrap05 {
    padding: 0;
  }
}
.p-case_wrap05 .inner {
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-case_wrap05 .inner {
    max-width: 89.3333333333vw;
    text-align: left;
  }
}
.p-case_wrap05_ditail {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 30px;
  margin: 80px 0 0;
}
@media screen and (max-width: 767px) {
  .p-case_wrap05_ditail {
    grid-template-columns: 1fr;
    gap: 4vw;
    margin: 16vw 0 0;
  }
}
.p-case_wrap05_ditail_txt {
  text-align: left;
}
.p-case_wrap05_ditail_txt .ttl {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .p-case_wrap05_ditail_txt .ttl {
    font-size: 5.3333333333vw;
    margin-bottom: 2.6666666667vw;
  }
}
.p-case_wrap05_ditail_txt .main {
  font-size: 18px;
  line-height: 180%;
}
@media screen and (max-width: 767px) {
  .p-case_wrap05_ditail_txt .main {
    font-size: 4.2666666667vw;
  }
}

.p-company_wrap01 {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid #B1D6E4;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 0;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-company_wrap01 {
    grid-template-columns: 1fr;
  }
}
.p-company_wrap01 dt {
  padding: 20px;
  font-size: 18px;
  font-weight: bold;
  border-bottom: 1px solid #B1D6E4;
  align-items: center;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-company_wrap01 dt {
    font-size: 4.2666666667vw;
    padding: 4vw 0 1.3333333333vw;
    border-bottom: none;
  }
}
.p-company_wrap01 dd {
  padding: 20px;
  font-size: 18px;
  border-bottom: 1px solid #B1D6E4;
}
@media screen and (max-width: 767px) {
  .p-company_wrap01 dd {
    font-size: 4vw;
    padding: 0 0 4vw;
  }
}
.p-company_wrap01_map {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .p-company_wrap01_map {
    grid-template-columns: 1fr;
    gap: 4vw;
    margin-top: 1.3333333333vw;
  }
}
.p-company_wrap01_map iframe {
  width: 100%;
  height: 200px;
}
@media screen and (max-width: 767px) {
  .p-company_wrap01_map iframe {
    height: 41.3333333333vw;
  }
}
.p-company_wrap01_map_txt {
  margin-top: 10px;
  font-size: 16px;
  line-height: 160%;
}
@media screen and (max-width: 767px) {
  .p-company_wrap01_map_txt {
    margin-top: 2.6666666667vw;
    font-size: 4vw;
  }
}
.p-company_wrap01_map_txt small {
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .p-company_wrap01_map_txt small {
    font-size: 3.2vw;
  }
}
.p-company_wrap02 {
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-company_wrap02 {
    margin: -8vw auto 0;
  }
}
.p-company_wrap02_box {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .p-company_wrap02_box {
    margin-bottom: 16vw;
  }
}
.p-company_wrap02_box .txt01 {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-company_wrap02_box .txt01 {
    margin-bottom: 4vw;
  }
}
.p-company_wrap02_box .txt02 {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-company_wrap02_box .txt02 {
    margin-bottom: 4vw;
  }
}
.p-company_wrap02_box .txt03 {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-company_wrap02_box .txt03 {
    margin-top: 5.3333333333vw;
    margin-bottom: -10.6666666667vw;
  }
}

.p-employers .h2_wrap {
  background: url(../../src/img/employers/ttl_pc.png) no-repeat top center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-employers .h2_wrap {
    background: url(../../src/img/employers/ttl_sp.png) no-repeat top center;
    background-size: cover;
  }
}
.p-employers_wrap01 {
  padding: 80px 0 100px;
  margin: 0 auto;
  max-width: 1200px;
}
@media screen and (max-width: 767px) {
  .p-employers_wrap01 {
    padding: 12vw 5.3333333333vw 16vw;
  }
  .p-employers_wrap01 .c-title_h3 {
    font-size: 5.3333333333vw;
    padding-bottom: 0;
    margin-bottom: 4vw;
  }
  .p-employers_wrap01 .c-title_h3::before {
    display: none;
  }
  .p-employers_wrap01 p {
    text-align: left;
  }
}
.p-employers_wrap02 {
  padding: 100px 0 0;
  margin: 0 auto -70px;
}
@media screen and (max-width: 767px) {
  .p-employers_wrap02 {
    padding: 16vw 5.3333333333vw 0;
    margin: 0 auto -13.3333333333vw;
  }
}
.p-employers_wrap02 .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.p-employers_wrap02_box {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-employers_wrap02_box {
    grid-template-columns: 1fr;
    gap: 5.3333333333vw;
  }
}
.p-employers_wrap02_box li {
  width: 100%;
  border-radius: 10px;
  border: 2px solid #0097CF;
  overflow: hidden;
  background-color: #ffffff;
  position: relative;
  padding: 0 0 95px;
}
@media screen and (max-width: 767px) {
  .p-employers_wrap02_box li {
    border-radius: 6px;
    padding: 0 0 8vw;
  }
}
.p-employers_wrap02_box_ttl {
  background-color: #0097CF;
  width: 100%;
  height: 68px;
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-employers_wrap02_box_ttl {
    height: 14.6666666667vw;
    font-size: 4.8vw;
  }
}
.p-employers_wrap02_box_txt {
  padding: 25px 40px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-employers_wrap02_box_txt {
    padding: 5.3333333333vw;
  }
}
.p-employers_wrap02_box_txt .txt {
  font-size: 18px;
  line-height: 160%;
}
@media screen and (max-width: 767px) {
  .p-employers_wrap02_box_txt .txt {
    font-size: 4vw;
  }
}
.p-employers_wrap02_box_btn {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-employers_wrap02_box_btn {
    position: relative;
    bottom: inherit;
    padding: 0 5.3333333333vw;
  }
}
.p-employers_wrap03 {
  padding: 220px 0 160px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-employers_wrap03 {
    padding: 34.6666666667vw 0 13.3333333333vw;
  }
}
.p-employers_wrap03 .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.p-employers_wrap04 {
  padding: 130px 0 150px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-employers_wrap04 {
    padding: 16vw 5.3333333333vw;
  }
}
.p-employers_wrap04 .inner {
  max-width: 1100px;
  margin: 0 auto;
}
.p-employers_wrap04 .c-title_h4 {
  font-size: 36px;
  padding-bottom: 20px;
  margin-bottom: 40px;
  line-height: 140%;
}
@media screen and (max-width: 767px) {
  .p-employers_wrap04 .c-title_h4 {
    font-size: 6.4vw;
    padding-bottom: 4vw;
    margin-bottom: 6.6666666667vw;
  }
}
.p-employers_wrap04_ditail {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 450px;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-employers_wrap04_ditail {
    grid-template-columns: 1fr;
    gap: 5.3333333333vw;
  }
}
.p-employers_wrap04_ditail_txt {
  font-size: 20px;
  line-height: 200%;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-employers_wrap04_ditail_txt {
    font-size: 4vw;
    line-height: 180%;
  }
}
.p-employers_wrap04_ditail_img {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-employers_wrap04_ditail_img {
    width: 78.6666666667vw;
    margin: 0 auto;
  }
}
.p-employers_wrap04_ditail_list {
  width: 100%;
  background-color: #F6F6F6;
  border-radius: 6px;
  margin: 20px 0;
  padding: 35px;
}
@media screen and (max-width: 767px) {
  .p-employers_wrap04_ditail_list {
    margin: 5.3333333333vw 0;
    padding: 5.3333333333vw;
  }
}
.p-employers_wrap04_ditail_list li {
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 160%;
  font-weight: bold;
  padding-left: 45px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-employers_wrap04_ditail_list li {
    margin-bottom: 5.3333333333vw;
    padding-left: 9.3333333333vw;
    font-size: 4vw;
  }
}
.p-employers_wrap04_ditail_list li:last-child {
  margin-bottom: 0;
}
.p-employers_wrap04_ditail_list li span {
  position: absolute;
  font-size: 24px;
  font-weight: 500;
  color: #0097CF;
  font-family: "Poppins", serif;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-employers_wrap04_ditail_list li span {
    font-size: 5.3333333333vw;
  }
}
.p-employers_wrap04_btnwrap {
  max-width: 830px;
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .p-employers_wrap04_btnwrap {
    margin: 8vw auto 0;
    grid-template-columns: 1fr;
    gap: 5.3333333333vw;
  }
}

.p-faq_wrap {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-faq_wrap {
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 4vw;
  }
}
.p-faq_wrap_ditail {
  background-color: #ffffff;
  border: 1px solid #CCCCCC;
  border-radius: 6px;
  padding: 20px 25px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-faq_wrap_ditail {
    padding: 5.3333333333vw;
  }
}
.p-faq_wrap_ditail dt {
  width: 100%;
  position: relative;
  padding: 0 0 15px 40px;
  border-bottom: 1px solid #B1D6E4;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-faq_wrap_ditail dt {
    padding: 0 0 2.6666666667vw 9.3333333333vw;
    margin-bottom: 4vw;
  }
}
.p-faq_wrap_ditail dt span {
  font-family: "Poppins", serif;
  color: #ffffff;
  background-color: #0097CF;
  font-size: 16px;
  font-weight: 600;
  width: 30px;
  height: 30px;
  padding: 0;
  line-height: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-faq_wrap_ditail dt span {
    font-size: 4.2666666667vw;
    width: 6.9333333333vw;
    height: 6.9333333333vw;
  }
}
.p-faq_wrap_ditail dt p {
  font-size: 18px;
  line-height: 170%;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-faq_wrap_ditail dt p {
    font-size: 4.2666666667vw;
  }
}
.p-faq_wrap_ditail dd {
  width: 100%;
  position: relative;
  padding: 0 0 0 40px;
}
@media screen and (max-width: 767px) {
  .p-faq_wrap_ditail dd {
    padding: 0 0 0 9.3333333333vw;
  }
}
.p-faq_wrap_ditail dd span {
  font-family: "Poppins", serif;
  color: #333333;
  background-color: #FFDA1B;
  font-size: 16px;
  font-weight: 600;
  width: 30px;
  height: 30px;
  padding: 0;
  line-height: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-faq_wrap_ditail dd span {
    font-size: 4.2666666667vw;
    width: 6.9333333333vw;
    height: 6.9333333333vw;
  }
}
.p-faq_wrap_ditail dd p {
  font-size: 16px;
  line-height: 170%;
}
@media screen and (max-width: 767px) {
  .p-faq_wrap_ditail dd p {
    font-size: 4vw;
  }
}

.p-flow .h2_wrap {
  background: url(../../src/img/flow/ttl_pc.png) no-repeat top center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-flow .h2_wrap {
    background: url(../../src/img/flow/ttl_sp.png) no-repeat top center;
    background-size: cover;
  }
}
.p-flow_wrap01 {
  padding: 80px 0 0;
}
@media screen and (max-width: 767px) {
  .p-flow_wrap01 {
    padding: 12vw 5.3333333333vw 16vw;
  }
}
.p-flow_wrap01_txt {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-flow_wrap01_txt {
    text-align: left;
  }
}
.p-flow_wrap01_step {
  max-width: 1200px;
  margin: 40px auto 100px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 29px;
}
@media screen and (max-width: 767px) {
  .p-flow_wrap01_step {
    max-width: 70.6666666667vw;
    margin: 8vw auto 0;
    grid-template-columns: 1fr;
    gap: 6.6666666667vw;
  }
}
.p-flow_wrap01_step_ditail {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 100px;
  background-color: #ffffff;
  border: 2px solid #0097CF;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-flow_wrap01_step_ditail {
    border-radius: 0;
    background-color: none;
    border: none;
    aspect-ratio: inherit;
  }
}
.p-flow_wrap01_step_ditail dt {
  position: absolute;
  top: 22px;
  left: 60px;
  font-family: "Poppins", serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 150%;
  color: #0097CF;
}
.p-flow_wrap01_step_ditail dt span {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  margin-left: 3px;
}
.p-flow_wrap01_step_ditail dd {
  padding-top: 85px;
  font-size: 22px;
  font-weight: bold;
  line-height: 120%;
}
.p-flow_wrap01_step_ditail dd small {
  font-size: 14px;
}
.p-flow_wrap01_step_ditail:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -21px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 10px;
  border-color: transparent transparent transparent rgb(0, 151, 207);
}
.p-flow_wrap01_step_ditail:last-of-type::after {
  display: none;
}
.p-flow_wrap01_step_txt {
  text-align: left;
  font-size: 16px;
  line-height: 200%;
}
.p-flow_wrap02 {
  padding: 0;
}
@media screen and (max-width: 767px) {
  .p-flow_wrap02 {
    padding: 20vw 0 0;
  }
}
.p-flow_wrap02 .inner {
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-flow_wrap02 .inner {
    max-width: 89.3333333333vw;
  }
}
.p-flow_wrap02_ditail {
  width: 100%;
  position: relative;
  background-color: #F6F6F6;
  border-radius: 6px;
  padding: 25px 25px 25px 80px;
  margin-bottom: 35px;
  display: grid;
  grid-template-columns: 1fr 140px;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .p-flow_wrap02_ditail {
    padding: 10.6666666667vw 5.3333333333vw 6.6666666667vw;
    margin-bottom: 12vw;
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.p-flow_wrap02_ditail:last-of-type {
  margin-bottom: 0;
}
.p-flow_wrap02_ditail:last-of-type::after {
  display: none;
}
.p-flow_wrap02_ditail::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  border-style: solid;
  border-width: 13px 13px 0px;
  border-color: rgb(0, 151, 207) transparent transparent;
}
@media screen and (max-width: 767px) {
  .p-flow_wrap02_ditail::after {
    bottom: -5.3333333333vw;
    border-width: 2.6666666667vw 2.6666666667vw 0px;
  }
}
.p-flow_wrap02_ditail_no {
  width: 77px;
  height: 77px;
  position: absolute;
  top: -23px;
  left: -21px;
  background-color: #0097CF;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  flex-direction: column;
  color: #ffffff;
  font-family: "Poppins", serif;
  font-weight: 600;
  border-radius: 100px;
  line-height: 150%;
  font-size: 16px;
  padding-top: 14px;
}
@media screen and (max-width: 767px) {
  .p-flow_wrap02_ditail_no {
    width: 40vw;
    height: 9.6vw;
    top: -4vw;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 6px;
    line-height: 100%;
    font-size: 5.3333333333vw;
    padding-top: 2.1333333333vw;
    flex-direction: inherit;
    justify-content: center;
  }
}
.p-flow_wrap02_ditail_no span {
  font-size: 30px;
}
@media screen and (max-width: 767px) {
  .p-flow_wrap02_ditail_no span {
    font-size: 5.3333333333vw;
  }
}
.p-flow_wrap02_ditail_txt {
  text-align: left;
}
.p-flow_wrap02_ditail_txt .ttl {
  font-size: 24px;
  font-weight: bold;
  color: #0097CF;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .p-flow_wrap02_ditail_txt .ttl {
    font-size: 4.8vw;
    text-align: center;
    margin-bottom: 2.1333333333vw;
  }
}
.p-flow_wrap02_ditail_txt .txt {
  font-size: 20px;
  line-height: 200%;
}
@media screen and (max-width: 767px) {
  .p-flow_wrap02_ditail_txt .txt {
    font-size: 4vw;
    line-height: 160%;
  }
}
.p-flow_wrap02_ditail_txt .txt_s {
  font-size: 16px;
  line-height: 160%;
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  .p-flow_wrap02_ditail_txt .txt_s {
    font-size: 3.4666666667vw;
    margin-top: 2.1333333333vw;
  }
}
.p-flow_wrap02_ditail_img {
  width: 140px;
}
@media screen and (max-width: 767px) {
  .p-flow_wrap02_ditail_img {
    width: 34.6666666667vw;
    margin: 2.6666666667vw auto;
  }
}
.p-flow_wrap03 {
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .p-flow_wrap03 {
    padding: 12vw 5.3333333333vw 13.3333333333vw;
  }
}
.p-flow_wrap03_list {
  max-width: 1100px;
  text-align: left;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .p-flow_wrap03_list {
    max-width: 89.3333333333vw;
    gap: 2.6666666667vw;
    justify-content: flex-start;
  }
}
.p-flow_wrap03_list li {
  padding-left: 12px;
  position: relative;
  line-height: 160%;
  font-size: 20px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-flow_wrap03_list li {
    width: 100%;
    font-size: 4.8vw;
    padding-left: 5.3333333333vw;
  }
}
.p-flow_wrap03_list li span {
  font-weight: bold;
}
.p-flow_wrap03_list li::before {
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  background-color: #333333;
  border-radius: 50%;
  position: absolute;
  top: 11px;
  left: 2px;
}
@media screen and (max-width: 767px) {
  .p-flow_wrap03_list li::before {
    width: 1.0666666667vw;
    height: 1.0666666667vw;
    top: 2.4vw;
    left: 1.3333333333vw;
  }
}
.p-flow_wrap03_list li:last-child {
  margin-bottom: 0;
}
.p-flow_wrap03_step {
  max-width: 1100px;
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  .p-flow_wrap03_step {
    max-width: 89.3333333333vw;
    margin: 10.6666666667vw auto 0;
    grid-template-columns: 1fr;
    gap: 5.3333333333vw;
  }
}
.p-flow_wrap03_step_ditail {
  background-color: #ffffff;
  border-radius: 6px;
  border: 2px solid #0097CF;
  position: relative;
  text-align: center;
  padding: 20px 20px 20px 40px;
  display: grid;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-flow_wrap03_step_ditail {
    padding: 4vw 4vw 4vw 10.6666666667vw;
  }
}
.p-flow_wrap03_step_ditail_no {
  width: 60px;
  height: 60px;
  position: absolute;
  top: -23px;
  left: -21px;
  background-color: #0097CF;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  flex-direction: column;
  color: #ffffff;
  font-family: "Poppins", serif;
  font-weight: 600;
  border-radius: 100px;
  line-height: 150%;
  font-size: 30px;
  padding-top: 9px;
}
@media screen and (max-width: 767px) {
  .p-flow_wrap03_step_ditail_no {
    width: 13.3333333333vw;
    height: 13.3333333333vw;
    top: -4vw;
    left: -2.6666666667vw;
    font-size: 5.3333333333vw;
    padding-top: 2.6666666667vw;
  }
}
.p-flow_wrap03_step_ditail_txt {
  font-size: 20px;
  font-weight: bold;
  line-height: 150%;
}
@media screen and (max-width: 767px) {
  .p-flow_wrap03_step_ditail_txt {
    font-size: 4.8vw;
  }
}

.p-glossary_wrap {
  max-width: 1100px;
  margin: 50px auto 0;
}
@media screen and (max-width: 767px) {
  .p-glossary_wrap {
    max-width: 89.3333333333vw;
    margin: 12vw auto 0;
  }
}

.p-job {
  padding: 10px 0 0;
  margin-top: 86px;
}
@media screen and (max-width: 1500px) {
  .p-job {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-job {
    padding: 1.3333333333vw 0 0;
  }
}
.p-job_searchbox {
  max-width: 1000px;
  min-height: 125px;
  margin: 30px auto 60px;
  background-color: #ffffff;
  border: 1px solid #E2E2E2;
  border-radius: 6px;
  padding: 25px;
  text-align: left;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-job_searchbox {
    max-width: 89.3333333333vw;
    min-height: auto;
    margin: 21.3333333333vw auto 13.3333333333vw;
    padding: 5.3333333333vw 5.3333333333vw 13.3333333333vw;
  }
}
.p-job_searchbox_ttl {
  font-size: 16px;
  line-height: 160%;
  font-weight: bold;
  padding: 0 0 5px;
  margin: 0 0 20px;
  border-bottom: 1px solid #B1D6E4;
}
@media screen and (max-width: 767px) {
  .p-job_searchbox_ttl {
    font-size: 4.2666666667vw;
    padding: 0 0 1.3333333333vw;
    margin: 0 0 2.6666666667vw;
  }
}
.p-job_searchbox_list {
  padding: 0 170px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-job_searchbox_list {
    padding: 0;
  }
}
.p-job_searchbox_list li {
  font-size: 14px;
  position: relative;
  padding-right: 20px;
  line-height: 160%;
}
@media screen and (max-width: 767px) {
  .p-job_searchbox_list li {
    font-size: 3.4666666667vw;
    padding-right: 5.3333333333vw;
  }
}
.p-job_searchbox_list li::after {
  position: absolute;
  content: "／";
  font-size: 14px;
  top: 0;
  right: 5px;
}
@media screen and (max-width: 767px) {
  .p-job_searchbox_list li::after {
    font-size: 3.4666666667vw;
    right: 1.3333333333vw;
  }
}
.p-job_searchbox_list li:last-child::after {
  display: none;
}
.p-job_searchbox_btn {
  position: absolute;
  bottom: 20px;
  right: 25px;
  padding: 4px 45px;
  border-radius: 100px;
  background-color: #ffffff;
  border: 1px solid #B1D6E4;
  font-size: 14px;
  line-height: 160%;
  font-weight: bold;
  color: #0097CF;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .p-job_searchbox_btn {
    font-size: 3.7333333333vw;
    bottom: 4vw;
    right: 5.3333333333vw;
    padding: 0.8vw 10.6666666667vw;
  }
}
.p-job_searchbox_btn span {
  position: relative;
}
.p-job_searchbox_btn span::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  width: 8px;
  height: 8px;
  transform: translateY(-50%) rotate(45deg);
  border-top: 1px solid #0097CF;
  border-right: 1px solid #0097CF;
}
@media screen and (max-width: 767px) {
  .p-job_searchbox_btn span::after {
    right: 6.6666666667vw;
    width: 2.6666666667vw;
    height: 2.6666666667vw;
  }
}
.p-job_searchbox_btn:hover {
  background-color: #EDF5FD;
}
.p-job_wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 0 210px;
}
@media screen and (max-width: 767px) {
  .p-job_wrap {
    max-width: 89.3333333333vw;
    padding: 0 0 32vw;
  }
}
.p-job_wrap_ttl {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .p-job_wrap_ttl {
    flex-direction: column;
    margin-bottom: 2.6666666667vw;
    align-items: flex-start;
  }
}
.p-job_wrap_ttl_select {
  position: relative;
  width: 150px;
  height: 33px;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .p-job_wrap_ttl_select {
    width: 32vw;
    height: 7.4666666667vw;
  }
}
.p-job_wrap_ttl_select select {
  width: 150px;
  height: 33px;
  padding: 4px 30px 4px 15px;
  border-radius: 5px;
  background-color: #ffffff;
  border: 1px solid #B1D6E4;
  font-size: 14px;
  line-height: 160%;
}
@media screen and (max-width: 767px) {
  .p-job_wrap_ttl_select select {
    width: 32vw;
    height: 7.4666666667vw;
    padding: 1.0666666667vw 6.6666666667vw 1.0666666667vw 2.6666666667vw;
    font-size: 3.2vw;
  }
}
.p-job_wrap_ttl_select::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 13px;
  width: 12px;
  height: 6px;
  transform: translateY(-50%);
  background: url(../../src/img/icon/arrow_down_g.svg) center center no-repeat;
  background-size: cover;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-job_wrap_ttl_select::after {
    right: 3.2vw;
    width: 2.6666666667vw;
    height: 1.3333333333vw;
  }
}
.p-job_list {
  width: 100%;
  margin: 0 auto;
  text-align: left;
}
.p-job_under {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
  padding: 20px 0 190px;
}
@media screen and (max-width: 767px) {
  .p-job_under {
    padding: 24vw 5.3333333333vw 26.6666666667vw;
  }
}
.p-job_detail {
  width: 100%;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 50px;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-job_detail {
    margin-bottom: 13.3333333333vw;
  }
}
.p-job_detail:last-of-type {
  margin-bottom: 0;
}
.p-job_detail_number {
  background-color: #0097CF;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 12px 50px;
}
@media screen and (max-width: 767px) {
  .p-job_detail_number {
    padding: 2.1333333333vw 5.3333333333vw;
  }
}
.p-job_detail_number .job-no {
  font-size: 16px;
  font-family: "Poppins", serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 150%;
}
@media screen and (max-width: 767px) {
  .p-job_detail_number .job-no {
    font-size: 3.7333333333vw;
  }
}
.p-job_detail_number .new-icon {
  font-size: 15px;
  font-family: "Poppins", serif;
  font-weight: 600;
  color: #0097CF;
  line-height: 130%;
  background-color: #ffffff;
  border-radius: 3px;
  padding: 1px 12px;
}
@media screen and (max-width: 767px) {
  .p-job_detail_number .new-icon {
    font-size: 3.4666666667vw;
    padding: 0.2666666667vw 3.2vw;
  }
}
.p-job_detail_inner {
  padding: 30px 50px 50px;
}
@media screen and (max-width: 767px) {
  .p-job_detail_inner {
    padding: 5.3333333333vw 5.3333333333vw 6.6666666667vw;
  }
}
.p-job_detail_ttl {
  font-size: 30px;
  font-weight: bold;
  line-height: 160%;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-job_detail_ttl {
    font-size: 5.3333333333vw;
    margin-bottom: 2.6666666667vw;
  }
}
.p-job_detail_tag {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .p-job_detail_tag {
    gap: 1.3333333333vw;
    margin-bottom: 2.1333333333vw;
  }
}
.p-job_detail_tag li {
  font-size: 12px;
  background-color: #EDF5FD;
  border: 1px solid #B1D6E4;
  border-radius: 3px;
  line-height: 150%;
  padding: 1px 12px;
  color: #B1D6E4;
}
@media screen and (max-width: 767px) {
  .p-job_detail_tag li {
    font-size: 2.9333333333vw;
    padding: 0.2666666667vw 3.2vw;
  }
}
.p-job_detail_tag li.carrent {
  background-color: #0097CF;
  color: #ffffff;
  border: 1px solid #0097CF;
}
.p-job_detail_tag.green li {
  background-color: #00A0BB;
  color: #ffffff;
}
.p-job_detail_head {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 450px;
  gap: 30px;
  margin: 30px 0;
}
@media screen and (max-width: 767px) {
  .p-job_detail_head {
    grid-template-columns: 1fr;
    gap: 4vw;
    margin: 5.3333333333vw 0;
  }
  .p-job_detail_head .item1 {
    order: 2;
  }
  .p-job_detail_head .item2 {
    order: 1;
  }
}
.p-job_detail_head_ttl {
  width: 100%;
  font-size: 24px;
  font-weight: bold;
  line-height: 160%;
  padding-bottom: 10px;
  margin-bottom: 15px;
  border-bottom: 1px solid #CCCCCC;
}
@media screen and (max-width: 767px) {
  .p-job_detail_head_ttl {
    font-size: 4.8vw;
    padding-bottom: 2.1333333333vw;
    margin-bottom: 2.6666666667vw;
  }
}
.p-job_detail_head_txt {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .p-job_detail_head_txt {
    font-size: 4vw;
    line-height: 160%;
  }
}
.p-job_detail_head_txt.top {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.p-job_detail_head_img {
  width: 100%;
  aspect-ratio: 5/3;
  overflow: hidden;
  border-radius: 6px;
}
.p-job_detail_head_img figure {
  width: 100%;
  height: 100%;
  margin: 0;
}
.p-job_detail_head_img figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.p-job_detail_head_toplist {
  width: 100%;
  overflow: hidden;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 0;
  font-size: 16px;
  line-height: 160%;
  padding-top: 1px;
}
@media screen and (max-width: 767px) {
  .p-job_detail_head_toplist {
    grid-template-columns: 29.3333333333vw 1fr;
    font-size: 3.4666666667vw;
    line-height: 150%;
  }
}
.p-job_detail_head_toplist .ttl {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: #0097CF;
  color: #ffffff;
  padding: 8px 0 8px 32px;
  border: 1px solid #B1D6E4;
  margin-top: -1px;
}
@media screen and (max-width: 767px) {
  .p-job_detail_head_toplist .ttl {
    padding: 2.1333333333vw 0 2.1333333333vw 8vw;
  }
}
.p-job_detail_head_toplist .ttl.ic01 {
  position: relative;
}
.p-job_detail_head_toplist .ttl.ic01::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  background: url(../../src/img/icon/icon_job01.svg) center center no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-job_detail_head_toplist .ttl.ic01::before {
    left: 2.6666666667vw;
    width: 4.8vw;
    height: 4.8vw;
  }
}
.p-job_detail_head_toplist .ttl.ic02 {
  position: relative;
}
.p-job_detail_head_toplist .ttl.ic02::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  background: url(../../src/img/icon/icon_job02.svg) center center no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-job_detail_head_toplist .ttl.ic02::before {
    left: 2.6666666667vw;
    width: 4.8vw;
    height: 4.8vw;
  }
}
.p-job_detail_head_toplist .ttl.ic03 {
  position: relative;
}
.p-job_detail_head_toplist .ttl.ic03::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  background: url(../../src/img/icon/icon_job03.svg) center center no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-job_detail_head_toplist .ttl.ic03::before {
    left: 2.6666666667vw;
    width: 4.8vw;
    height: 4.8vw;
  }
}
.p-job_detail_head_toplist .ttl.ic04 {
  position: relative;
}
.p-job_detail_head_toplist .ttl.ic04::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  background: url(../../src/img/icon/icon_job04.svg) center center no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-job_detail_head_toplist .ttl.ic04::before {
    left: 2.6666666667vw;
    width: 4.8vw;
    height: 4.8vw;
  }
}
.p-job_detail_head_toplist .ttl.ic05 {
  position: relative;
}
.p-job_detail_head_toplist .ttl.ic05::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  background: url(../../src/img/icon/icon_job05.svg) center center no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-job_detail_head_toplist .ttl.ic05::before {
    left: 2.6666666667vw;
    width: 4.8vw;
    height: 4.8vw;
  }
}
.p-job_detail_head_toplist .ttl:first-of-type {
  border-radius: 6px 0 0 0;
}
.p-job_detail_head_toplist .ttl:last-of-type {
  border-radius: 0 0 0 6px;
}
.p-job_detail_head_toplist .txt {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: #ffffff;
  border: 1px solid #B1D6E4;
  color: #333333;
  padding: 8px 10px 8px 15px;
  margin: -1px 0 0 -1px;
}
.p-job_detail_head_toplist .txt:first-of-type {
  border-radius: 0 6px 0 0;
}
.p-job_detail_head_toplist .txt:last-of-type {
  border-radius: 0 0 6px 0;
}
@media screen and (max-width: 767px) {
  .p-job_detail_head_toplist .txt {
    padding: 2.1333333333vw 2.6666666667vw;
  }
}
.p-job_detail_main {
  width: 100%;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .p-job_detail_main {
    margin-top: 8vw;
  }
}
.p-job_detail_main_ttl {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin: 50px 0 10px;
  line-height: 160%;
}
@media screen and (max-width: 767px) {
  .p-job_detail_main_ttl {
    font-size: 4.8vw;
    margin: 13.3333333333vw 0 2.6666666667vw;
  }
}
.p-job_detail_main_ditail {
  width: 100%;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
  border-top: 1px solid #CCCCCC;
}
@media screen and (max-width: 767px) {
  .p-job_detail_main_ditail {
    grid-template-columns: 1fr;
  }
}
.p-job_detail_main_ditail dt {
  border-bottom: 1px solid #CCCCCC;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 160%;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-job_detail_main_ditail dt {
    border-bottom: none;
    padding: 4vw 0 1.3333333333vw;
    font-size: 4vw;
  }
}
.p-job_detail_main_ditail dd {
  border-bottom: 1px solid #CCCCCC;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 160%;
}
@media screen and (max-width: 767px) {
  .p-job_detail_main_ditail dd {
    padding: 0 0 4vw;
    font-size: 4vw;
  }
}
.p-job_detail_btn {
  text-align: center;
}
.p-job_detail_btnwrap {
  width: 100%;
  margin: 50px auto 35px;
}
@media screen and (max-width: 767px) {
  .p-job_detail_btnwrap {
    margin: 8vw auto 6.6666666667vw;
  }
}
.p-job_detail_btnwrap_ttl {
  width: 100%;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-job_detail_btnwrap_ttl {
    font-size: 4.8vw;
    font-weight: bold;
    margin-bottom: 2.6666666667vw;
  }
}
.p-job_detail_btnwrap_ditail {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-job_detail_btnwrap_ditail {
    grid-template-columns: 1fr;
    gap: 4vw;
  }
}
.p-job_detail_btnwrap_ditail li .c-btn_right a {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-job_detail_btnwrap_ditail li .c-btn_right a {
    font-size: 4.2666666667vw;
    padding: 0 2.6666666667vw 0 0;
  }
  .p-job_detail_btnwrap_ditail li .c-btn_right a::after {
    right: 4vw;
    width: 2.6666666667vw;
    height: 2.6666666667vw;
  }
}
.p-job_detail_btnwrap_topditail {
  width: 100%;
  display: grid;
  grid-template-columns: 250px 270px 1fr;
  gap: 15px;
  text-align: center;
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid #CCCCCC;
}
@media screen and (max-width: 767px) {
  .p-job_detail_btnwrap_topditail {
    grid-template-columns: 1fr;
    gap: 4vw;
    margin-top: 4vw;
    padding-top: 4vw;
  }
}
.p-job_detail_btnwrap_topditail li .c-btn_right a {
  width: 100%;
  font-size: 20px;
  height: 60px;
  line-height: 58px;
}
@media screen and (max-width: 767px) {
  .p-job_detail_btnwrap_topditail li .c-btn_right a {
    font-size: 4.2666666667vw;
    padding: 0 2.6666666667vw 0 0;
    height: 13.3333333333vw;
    line-height: 12.8vw;
  }
  .p-job_detail_btnwrap_topditail li .c-btn_right a::after {
    right: 4vw;
    width: 2.6666666667vw;
    height: 2.6666666667vw;
  }
}
.p-job_detail_lasttxt {
  width: calc(100% - 300px);
  font-size: 16px;
  text-align: right;
  line-height: 170%;
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  .p-job_detail_lasttxt {
    width: 100%;
    font-size: 3.4666666667vw;
    text-align: left;
    margin-top: 1.3333333333vw;
  }
}
.p-job_detail_bottom {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  border-top: 1px solid #CCCCCC;
  padding-top: 15px;
}
@media screen and (max-width: 767px) {
  .p-job_detail_bottom {
    gap: 0;
    flex-direction: column;
  }
}

.p-jobseekers .h2_wrap {
  background: url(../../src/img/jobseekers/ttl_pc.png) no-repeat top center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-jobseekers .h2_wrap {
    background: url(../../src/img/jobseekers/ttl_sp.png) no-repeat top center;
    background-size: cover;
  }
}
.p-jobseekers .h2_wrap.dispatch {
  background: url(../../src/img/jobseekers/ttl_pc2.png) no-repeat top center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-jobseekers .h2_wrap.dispatch {
    background: url(../../src/img/jobseekers/ttl_sp2.png) no-repeat top center;
    background-size: cover;
  }
}
.p-jobseekers .h2_wrap.temp-to-perm {
  background: url(../../src/img/jobseekers/ttl_pc3.png) no-repeat top center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-jobseekers .h2_wrap.temp-to-perm {
    background: url(../../src/img/jobseekers/ttl_sp3.png) no-repeat top center;
    background-size: cover;
  }
}
.p-jobseekers .h2_wrap.fulltime {
  background: url(../../src/img/jobseekers/ttl_pc4.png) no-repeat top center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-jobseekers .h2_wrap.fulltime {
    background: url(../../src/img/jobseekers/ttl_sp4.png) no-repeat top center;
    background-size: cover;
  }
}
.p-jobseekers .h2_wrap.beginners {
  background: url(../../src/img/jobseekers/ttl_pc5.png) no-repeat top center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-jobseekers .h2_wrap.beginners {
    background: url(../../src/img/jobseekers/ttl_sp5.png) no-repeat top center;
    background-size: cover;
  }
}
.p-jobseekers .c-title_h4 {
  font-size: 36px;
  padding-bottom: 20px;
  margin-bottom: 40px;
  line-height: 140%;
}
@media screen and (max-width: 767px) {
  .p-jobseekers .c-title_h4 {
    font-size: 6.1333333333vw;
    line-height: 150%;
    margin-bottom: 4vw;
    padding-bottom: 2.6666666667vw;
  }
}
.p-jobseekers .c-title_h4 span {
  font-size: 26px;
}
@media screen and (max-width: 767px) {
  .p-jobseekers .c-title_h4 span {
    font-size: 4.2666666667vw;
  }
}
.p-jobseekers_wrap01 {
  padding: 80px 0 0;
}
@media screen and (max-width: 767px) {
  .p-jobseekers_wrap01 {
    padding: 12vw 0 0;
  }
}
.p-jobseekers_wrap01_ditail {
  max-width: 1200px;
  margin: 30px auto -40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-jobseekers_wrap01_ditail {
    max-width: 89.3333333333vw;
    margin: 5.3333333333vw auto -6.4vw;
    gap: 4vw;
  }
}
.p-jobseekers_wrap01_ditail_btn {
  border-radius: 10px;
  background-color: #0097CF;
  padding: 15px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .p-jobseekers_wrap01_ditail_btn {
    border-radius: 6px;
    padding: 2.6666666667vw 2.6666666667vw 13.8666666667vw;
    grid-template-columns: 1fr;
    gap: 1.8666666667vw;
  }
}
.p-jobseekers_wrap01_ditail_btn .img {
  border-radius: 5px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-jobseekers_wrap01_ditail_btn .img {
    height: 16vw;
  }
  .p-jobseekers_wrap01_ditail_btn .img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
.p-jobseekers_wrap01_ditail_btn .right {
  width: 100%;
  height: 100%;
  text-align: left;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-jobseekers_wrap01_ditail_btn .right {
    text-align: center;
  }
}
.p-jobseekers_wrap01_ditail_btn .right .ttl {
  width: 100%;
  font-size: 24px;
  line-height: 150%;
  margin-top: 3px;
}
@media screen and (max-width: 767px) {
  .p-jobseekers_wrap01_ditail_btn .right .ttl {
    font-size: 4vw;
    margin-top: 0;
  }
}
.p-jobseekers_wrap01_ditail_btn .right .right_btn {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 43px;
  background-color: #ffffff;
  border-radius: 100px;
  color: #333333;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  padding-left: 30px;
}
@media screen and (max-width: 767px) {
  .p-jobseekers_wrap01_ditail_btn .right .right_btn {
    height: 9.6vw;
    border-radius: 6px;
    margin-bottom: 0;
    padding-left: 0;
    font-size: 4vw;
    bottom: -10.6666666667vw;
  }
}
.p-jobseekers_wrap01_ditail_btn .right .right_btn span {
  width: 100%;
  position: relative;
}
.p-jobseekers_wrap01_ditail_btn .right .right_btn span::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  width: 10px;
  height: 10px;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s all;
  border-top: 2px solid #333333;
  border-right: 2px solid #333333;
}
@media screen and (max-width: 767px) {
  .p-jobseekers_wrap01_ditail_btn .right .right_btn span::after {
    right: 3.4666666667vw;
    width: 2.1333333333vw;
    height: 2.1333333333vw;
  }
}
.p-jobseekers_wrap01_ditail a {
  text-decoration: none;
  color: #ffffff;
}
.p-jobseekers_wrap01_ditail a:hover {
  background-color: #0085C4;
}
.p-jobseekers_wrap01_ditail a:hover .right .right_btn {
  background-color: #EDF5FD;
}
.p-jobseekers_wrap01_ditail a:hover .right .right_btn span::after {
  right: 20px;
}
.p-jobseekers_wrap {
  padding: 170px 0 0;
}
@media screen and (max-width: 767px) {
  .p-jobseekers_wrap {
    padding: 24vw 0 0;
  }
}
.p-jobseekers_wrap02 {
  width: 100%;
  text-align: left;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-jobseekers_wrap02 {
    display: flex;
    flex-direction: column-reverse;
  }
}
.p-jobseekers_wrap02_img {
  position: absolute;
  top: 0;
  left: 0;
  /*aspect-ratio: 5 / 4;*/
  width: calc(50% + 40px);
  height: 750px;
  overflow: hidden;
  border-radius: 0 6px 6px 0;
}
@media screen and (max-width: 1500px) {
  .p-jobseekers_wrap02_img {
    width: 50%;
    height: 700px;
  }
}
@media screen and (max-width: 767px) {
  .p-jobseekers_wrap02_img {
    position: relative;
    width: 89.3333333333vw;
    height: 84.8vw;
  }
}
.p-jobseekers_wrap02_img figure {
  width: 100%;
  height: 100%;
  margin: 0;
}
.p-jobseekers_wrap02_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-jobseekers_wrap02 .inner {
  width: 100%;
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .p-jobseekers_wrap02 .inner {
    padding-top: 8vw;
  }
}
.p-jobseekers_wrap02_box {
  width: 850px;
  min-height: 750px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.9);
  padding: 90px 60px;
  position: relative;
  z-index: 2;
  margin-left: calc(50% - 130px);
}
@media screen and (max-width: 1500px) {
  .p-jobseekers_wrap02_box {
    width: calc(50% + 100px);
    min-height: 700px;
  }
  .p-jobseekers_wrap02_box .c-title_h3 {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-jobseekers_wrap02_box {
    width: 89.3333333333vw;
    min-height: auto;
    border-radius: 0;
    background: none;
    padding: 0;
    margin-left: 5.3333333333vw;
  }
  .p-jobseekers_wrap02_box .c-title_h3 {
    font-size: 5.3333333333vw;
    margin-bottom: 5.3333333333vw;
    padding-bottom: 0;
  }
  .p-jobseekers_wrap02_box .c-title_h3::before {
    display: none;
  }
}
.p-jobseekers_wrap02_box_ttl {
  font-size: 28px;
  line-height: 160%;
  font-weight: bold;
  color: #0097CF;
  margin-bottom: 20px;
}
@media screen and (max-width: 1500px) {
  .p-jobseekers_wrap02_box_ttl {
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  .p-jobseekers_wrap02_box_ttl {
    font-size: 4.8vw;
    margin-bottom: 2.6666666667vw;
  }
}
.p-jobseekers_wrap02_box_txt {
  color: #333333;
  font-size: 20px;
  line-height: 200%;
}
@media screen and (max-width: 1500px) {
  .p-jobseekers_wrap02_box_txt {
    font-size: 16px;
    line-height: 180%;
  }
}
@media screen and (max-width: 767px) {
  .p-jobseekers_wrap02_box_txt {
    font-size: 4vw;
  }
}
.p-jobseekers_wrap02_box_list {
  width: 100%;
  margin: 30px 0 0;
}
@media screen and (max-width: 767px) {
  .p-jobseekers_wrap02_box_list {
    margin: 5.3333333333vw 0 0;
  }
}
.p-jobseekers_wrap02_box_list li {
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #0097CF;
  border-radius: 6px;
  color: #333333;
  font-size: 18px;
  font-weight: bold;
  line-height: 160%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 10px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-jobseekers_wrap02_box_list li {
    font-size: 3.7333333333vw;
    padding: 2.6666666667vw;
    margin-bottom: 3.2vw;
    text-align: center;
  }
}
.p-jobseekers_wrap02_box_list li:last-child {
  margin-bottom: 0;
}
.p-jobseekers_wrap03 {
  width: 100%;
  margin-top: 100px;
  text-align: left;
  position: relative;
  padding-bottom: 150px;
}
@media screen and (max-width: 767px) {
  .p-jobseekers_wrap03 {
    margin-top: 21.3333333333vw;
    display: flex;
    flex-direction: column-reverse;
    padding-bottom: 24vw;
  }
}
.p-jobseekers_wrap03_img {
  position: absolute;
  top: 0;
  right: 0;
  /*aspect-ratio: 5 / 4;*/
  width: calc(50% + 40px);
  height: 700px;
  overflow: hidden;
  border-radius: 6px 0 0 6px;
}
@media screen and (max-width: 1500px) {
  .p-jobseekers_wrap03_img {
    width: 50%;
    height: 650px;
  }
}
@media screen and (max-width: 767px) {
  .p-jobseekers_wrap03_img {
    position: relative;
    width: 89.3333333333vw;
    height: 84.8vw;
    margin-left: 10.6666666667vw;
  }
}
.p-jobseekers_wrap03_img figure {
  width: 100%;
  height: 100%;
  margin: 0;
}
.p-jobseekers_wrap03_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-jobseekers_wrap03 .inner {
  width: 100%;
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .p-jobseekers_wrap03 .inner {
    padding-top: 8vw;
  }
}
.p-jobseekers_wrap03_box {
  width: 850px;
  min-height: 700px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.9);
  padding: 90px 60px;
  position: relative;
  z-index: 2;
  margin-left: calc(50% - 720px);
}
@media screen and (max-width: 1500px) {
  .p-jobseekers_wrap03_box {
    width: calc(50% + 100px);
    margin-left: 30px;
    min-height: 650px;
  }
  .p-jobseekers_wrap03_box .c-title_h3 {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-jobseekers_wrap03_box {
    width: 89.3333333333vw;
    min-height: auto;
    border-radius: 0;
    background: none;
    padding: 0;
    margin-left: 5.3333333333vw;
  }
  .p-jobseekers_wrap03_box .c-title_h3 {
    font-size: 5.3333333333vw;
    margin-bottom: 5.3333333333vw;
    padding-bottom: 0;
  }
  .p-jobseekers_wrap03_box .c-title_h3::before {
    display: none;
  }
}
.p-jobseekers_wrap03_box_ttl {
  font-size: 28px;
  line-height: 160%;
  font-weight: bold;
  color: #0097CF;
  margin-bottom: 20px;
}
@media screen and (max-width: 1500px) {
  .p-jobseekers_wrap03_box_ttl {
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  .p-jobseekers_wrap03_box_ttl {
    font-size: 4.8vw;
    margin-bottom: 2.6666666667vw;
  }
}
.p-jobseekers_wrap03_box_txt {
  color: #333333;
  font-size: 20px;
  line-height: 200%;
}
@media screen and (max-width: 1500px) {
  .p-jobseekers_wrap03_box_txt {
    font-size: 16px;
    line-height: 180%;
  }
}
@media screen and (max-width: 767px) {
  .p-jobseekers_wrap03_box_txt {
    font-size: 4vw;
  }
}
.p-jobseekers_wrap03_box_list {
  width: 100%;
  margin: 30px 0 0;
}
.p-jobseekers_wrap03_box_list li {
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #0097CF;
  border-radius: 6px;
  color: #333333;
  font-size: 17px;
  font-weight: bold;
  line-height: 160%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 10px;
  margin-bottom: 20px;
}
.p-jobseekers_wrap03_box_list li:last-child {
  margin-bottom: 0;
}
.p-jobseekers_wrap04 {
  padding-top: 0;
}
.p-jobseekers_wrap04 .inner {
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-jobseekers_wrap04 .inner {
    max-width: 89.3333333333vw;
  }
}
.p-jobseekers_wrap04_txt {
  max-width: 900px;
  text-align: left;
  margin: 0 auto 32px;
}
@media screen and (max-width: 767px) {
  .p-jobseekers_wrap04_txt {
    max-width: 89.3333333333vw;
    margin: 0 auto 6.6666666667vw;
  }
}
.p-jobseekers_wrap04_ttl {
  position: relative;
}
.p-jobseekers_wrap04_ttl_btnarea {
  position: absolute;
  top: 0;
  left: 160px;
}
@media screen and (max-width: 767px) {
  .p-jobseekers_wrap04_ttl_btnarea {
    left: inherit;
    right: 0;
  }
}
.p-jobseekers_wrap04_ttl_btnarea a {
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .p-jobseekers_wrap04_ttl_btnarea a {
    font-size: 3.7333333333vw;
    padding-right: 5.3333333333vw;
  }
}
.p-jobseekers_wrap04_ttl_btnarea a span {
  position: relative;
}
.p-jobseekers_wrap04_ttl_btnarea a span::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: -25px;
  width: 22px;
  height: 22px;
  background: url(../../src/img/icon/arrow_blue.svg) center center no-repeat;
  background-size: cover;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-jobseekers_wrap04_ttl_btnarea a span::after {
    right: -5.3333333333vw;
    width: 4.8vw;
    height: 4.8vw;
  }
}
.p-jobseekers_wrap04_ttl_btnarea a:hover {
  opacity: 0.7;
}
.p-jobseekers_wrap04_ditail {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 0 auto 45px;
}
@media screen and (max-width: 767px) {
  .p-jobseekers_wrap04_ditail {
    grid-template-columns: 1fr;
    gap: 5.3333333333vw;
    margin: 0 auto 13.3333333333vw;
  }
}
.p-jobseekers_wrap04_ditail2 {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px 40px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-jobseekers_wrap04_ditail2 {
    grid-template-columns: 1fr;
    gap: 5.3333333333vw;
  }
}
.p-jobseekers_wrap04 .box {
  background-color: #EDF5FD;
  border-radius: 6px;
  padding: 20px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-jobseekers_wrap04 .box {
    padding: 4vw;
  }
}
.p-jobseekers_wrap04 .box.yellow {
  background-color: #FFF8D4;
}
.p-jobseekers_wrap04 .box.yellow ul li {
  border: 1px solid #FFDB21;
}
.p-jobseekers_wrap04 .box_txt {
  font-size: 12px;
  margin: -10px 0 10px;
}
@media screen and (max-width: 767px) {
  .p-jobseekers_wrap04 .box_txt {
    font-size: 3.2vw;
    margin: -1.0666666667vw 0 1.6vw;
  }
}
.p-jobseekers_wrap04 .box ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .p-jobseekers_wrap04 .box ul {
    gap: 1.6vw;
  }
}
.p-jobseekers_wrap04 .box ul li {
  border-radius: 4px;
  line-height: 160%;
  background-color: #ffffff;
  border: 1px solid #B1D6E4;
  font-size: 15px;
  padding: 7px 20px;
}
@media screen and (max-width: 767px) {
  .p-jobseekers_wrap04 .box ul li {
    font-size: 3.2vw;
    padding: 1.8666666667vw 2.6666666667vw;
  }
}
.p-jobseekers_wrap04 .box2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .p-jobseekers_wrap04 .box2 {
    gap: 5.3333333333vw;
  }
}
.p-jobseekers_wrap05 {
  padding: 80px 0 0;
}
@media screen and (max-width: 767px) {
  .p-jobseekers_wrap05 {
    padding: 12vw 5.3333333333vw 0;
  }
}
.p-jobseekers_wrap05_txt {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-jobseekers_wrap05_txt {
    text-align: left;
  }
}
.p-jobseekers_wrap05_nav {
  margin: 40px auto -30px;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .p-jobseekers_wrap05_nav {
    margin: 5.3333333333vw auto -7.2vw;
    max-width: 89.3333333333vw;
    grid-template-columns: 1fr 1fr;
    gap: 2.4vw;
  }
}
.p-jobseekers_wrap05_nav.long {
  grid-template-columns: 1fr 1fr 1fr;
}
@media screen and (max-width: 767px) {
  .p-jobseekers_wrap05_nav.long {
    max-width: 89.3333333333vw;
    grid-template-columns: 1fr 1fr;
    gap: 2.4vw;
  }
  .p-jobseekers_wrap05_nav.long li:first-child {
    grid-column: 1/-1;
  }
}
.p-jobseekers_wrap05_nav.w965 {
  max-width: 965px;
  grid-template-columns: 1fr 1fr 1fr;
}
@media screen and (max-width: 767px) {
  .p-jobseekers_wrap05_nav.w965 {
    max-width: 89.3333333333vw;
    grid-template-columns: 1fr 1fr;
    gap: 2.4vw;
    /*li:first-child {
        grid-column: 1 / -1;
    }*/
  }
}
.p-jobseekers_wrap05_nav li {
  width: 100%;
  height: 60px;
}
@media screen and (max-width: 767px) {
  .p-jobseekers_wrap05_nav li {
    height: 12.8vw;
  }
}
.p-jobseekers_wrap05_nav li a {
  width: 100%;
  height: 100%;
  text-decoration: none;
  display: inline-block;
  background-color: #ffffff;
  border-radius: 100px;
  border: 2px solid #0097CF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  line-height: 160%;
  position: relative;
  padding: 0 10px 0 0;
}
@media screen and (max-width: 767px) {
  .p-jobseekers_wrap05_nav li a {
    border-radius: 4px;
    font-size: 3.4666666667vw;
    justify-content: flex-start;
    text-align: left;
    padding: 0 6.9333333333vw 0 3.2vw;
    border: 1px solid #0097CF;
    line-height: 130%;
  }
}
.p-jobseekers_wrap05_nav li a::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 10px;
  height: 10px;
  margin: -3px 0 0;
  transform: translateY(-50%) rotate(135deg);
  transition: 0.3s all;
  border-top: 2px solid #0097CF;
  border-right: 2px solid #0097CF;
}
@media screen and (max-width: 767px) {
  .p-jobseekers_wrap05_nav li a::after {
    right: 3.2vw;
    width: 2.1333333333vw;
    height: 2.1333333333vw;
    margin: -0.8vw 0 0;
  }
}
.p-jobseekers_wrap05_nav li a:hover {
  background-color: #EDF5FD;
}
.p-jobseekers_wrap05_nav li a.blue {
  background-color: #0097CF;
  color: #ffffff;
}
.p-jobseekers_wrap05_nav li a.blue::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 10px;
  height: 10px;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s all;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
}
@media screen and (max-width: 767px) {
  .p-jobseekers_wrap05_nav li a.blue::after {
    right: 3.2vw;
    width: 2.1333333333vw;
    height: 2.1333333333vw;
  }
}
.p-jobseekers_wrap05_nav li a.blue:hover {
  background-color: #0085C4;
}
.p-jobseekers_wrap05_nav li a.right::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 10px;
  height: 10px;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s all;
  border-top: 2px solid #0097CF;
  border-right: 2px solid #0097CF;
}
@media screen and (max-width: 767px) {
  .p-jobseekers_wrap05_nav li a.right::after {
    right: 3.2vw;
    width: 2.1333333333vw;
    height: 2.1333333333vw;
  }
}
.p-jobseekers_wrap06 {
  padding: 130px 0 20px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-jobseekers_wrap06 {
    padding: 24vw 5.3333333333vw 0;
  }
}
.p-jobseekers_wrap06 .inner {
  max-width: 1100px;
  margin: 0 auto;
}
.p-jobseekers_wrap06_box {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .p-jobseekers_wrap06_box {
    margin-bottom: 16vw;
  }
}
.p-jobseekers_wrap06_box:last-of-type {
  margin-bottom: 0;
}
.p-jobseekers_wrap06_ditail {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 450px;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-jobseekers_wrap06_ditail {
    grid-template-columns: 1fr;
    gap: 5.3333333333vw;
  }
}
.p-jobseekers_wrap06_ditail_txt {
  font-size: 20px;
  line-height: 200%;
}
@media screen and (max-width: 767px) {
  .p-jobseekers_wrap06_ditail_txt {
    font-size: 4vw;
    line-height: 180%;
  }
}
.p-jobseekers_wrap06_ditail_img {
  text-align: center;
}
.p-jobseekers_wrap06_ditail_img.picture {
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
}
.p-jobseekers_wrap06_ditail_list {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .p-jobseekers_wrap06_ditail_list {
    margin-top: 5.3333333333vw;
  }
}
.p-jobseekers_wrap06_ditail_list li {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 160%;
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 767px) {
  .p-jobseekers_wrap06_ditail_list li {
    margin-bottom: 2.1333333333vw;
    font-size: 4vw;
  }
}
.p-jobseekers_wrap06_ditail_list li:last-child {
  margin-bottom: 0;
}
.p-jobseekers_wrap06_ditail_list02 {
  width: 100%;
  background-color: #F6F6F6;
  border-radius: 6px;
  margin: 20px 0;
  padding: 25px;
}
@media screen and (max-width: 767px) {
  .p-jobseekers_wrap06_ditail_list02 {
    margin: 5.3333333333vw 0;
    padding: 5.3333333333vw;
  }
}
.p-jobseekers_wrap06_ditail_list02 li {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 160%;
  font-weight: bold;
  padding-left: 15px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-jobseekers_wrap06_ditail_list02 li {
    margin-bottom: 2.1333333333vw;
    font-size: 4vw;
    padding-left: 4vw;
  }
}
.p-jobseekers_wrap06_ditail_list02 li:last-child {
  margin-bottom: 0;
}
.p-jobseekers_wrap06_ditail_list02 li::before {
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  background-color: #333333;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 3px;
}
@media screen and (max-width: 767px) {
  .p-jobseekers_wrap06_ditail_list02 li::before {
    width: 1.0666666667vw;
    height: 1.0666666667vw;
    top: 2.4vw;
    left: 0.5333333333vw;
  }
}
.p-jobseekers_wrap07 {
  padding: 150px 0 0;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-jobseekers_wrap07 {
    padding: 16vw 5.3333333333vw 0;
  }
}
.p-jobseekers_wrap07 .inner {
  max-width: 1100px;
  margin: 0 auto;
}
.p-jobseekers_wrap07_img01 {
  width: 100%;
  margin: 0 0 100px;
}
@media screen and (max-width: 767px) {
  .p-jobseekers_wrap07_img01 {
    margin: 0 0 18.6666666667vw;
  }
}
.p-jobseekers_wrap07_step {
  text-align: center;
}
.p-jobseekers_wrap07_step .p-flow_wrap02_ditail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.p-jobseekers_wrap08 {
  padding: 130px 0 210px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-jobseekers_wrap08 {
    padding: 22.6666666667vw 5.3333333333vw 32vw;
  }
}
.p-jobseekers_wrap08 .inner {
  max-width: 1100px;
  margin: 0 auto;
}
.p-jobseekers_wrap08_ditail {
  width: 100%;
  border-radius: 6px;
  background-color: #ffffff;
  padding: 50px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  margin-bottom: 90px;
}
@media screen and (max-width: 767px) {
  .p-jobseekers_wrap08_ditail {
    padding: 6.6666666667vw 5.3333333333vw 10.6666666667vw;
    grid-template-columns: 1fr;
    gap: 8vw;
    margin-bottom: 6.6666666667vw;
  }
}
.p-jobseekers_wrap08_ditail:last-of-type {
  margin-bottom: 0;
}
.p-jobseekers_wrap08_ditail .txt {
  font-size: 18px;
  line-height: 200%;
}
@media screen and (max-width: 767px) {
  .p-jobseekers_wrap08_ditail .txt {
    font-size: 4vw;
    line-height: 200%;
  }
}
.p-jobseekers_wrap08_ditail .btnarea {
  width: 100%;
  margin-top: 35px;
  padding-top: 18px;
  border-top: 1px solid #CCCCCC;
}
@media screen and (max-width: 767px) {
  .p-jobseekers_wrap08_ditail .btnarea {
    margin-top: 5.3333333333vw;
    padding-top: 4vw;
    text-align: right;
  }
}
.p-jobseekers_wrap08_ditail .btnarea a {
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .p-jobseekers_wrap08_ditail .btnarea a {
    font-size: 3.7333333333vw;
    padding-right: 5.3333333333vw;
  }
}
.p-jobseekers_wrap08_ditail .btnarea a span {
  position: relative;
}
.p-jobseekers_wrap08_ditail .btnarea a span::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  width: 22px;
  height: 22px;
  background: url(../../src/img/icon/arrow_blue.svg) center center no-repeat;
  background-size: cover;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-jobseekers_wrap08_ditail .btnarea a span::after {
    right: -5.3333333333vw;
    width: 4.8vw;
    height: 4.8vw;
  }
}
.p-jobseekers_wrap08_ditail .btnarea a:hover {
  opacity: 0.7;
}
.p-jobseekers_wrap09 {
  padding: 130px 0 210px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-jobseekers_wrap09 {
    padding: 16vw 5.3333333333vw 32vw;
  }
}
.p-jobseekers_wrap09 .inner {
  max-width: 1100px;
  margin: 0 auto;
}
.p-jobseekers_wrap09_txt {
  font-size: 20px;
  line-height: 200%;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .p-jobseekers_wrap09_txt {
    font-size: 4vw;
    line-height: 180%;
    margin-bottom: 13.3333333333vw;
  }
}
.p-jobseekers_wrap09_wrap {
  margin: 30px 0 0;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .p-jobseekers_wrap09_wrap {
    margin: 8vw 0 0;
    font-size: 4vw;
  }
  .p-jobseekers_wrap09_wrap .c-list__dot {
    margin: 2.6666666667vw 0;
  }
}
.p-jobseekers_wrap09_step {
  max-width: 100%;
  margin: 0 auto;
}
.p-jobseekers_wrap09_step_inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .p-jobseekers_wrap09_step_inner {
    max-width: 70.6666666667vw;
    grid-template-columns: 1fr;
    gap: 6.6666666667vw;
    margin: -5.3333333333vw auto 16vw;
  }
}
.p-jobseekers_wrap09_step_ditail {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 100px;
  background-color: #ffffff;
  border: 2px solid #0097CF;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-jobseekers_wrap09_step_ditail {
    border-radius: 0;
    background-color: inherit;
    border: none;
    aspect-ratio: inherit;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
}
.p-jobseekers_wrap09_step_ditail dt {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Poppins", serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 150%;
  color: #0097CF;
}
@media screen and (max-width: 767px) {
  .p-jobseekers_wrap09_step_ditail dt {
    top: 0;
    left: 0;
    width: 13.3333333333vw;
    height: 13.3333333333vw;
    aspect-ratio: 1/1;
    border-radius: 100px;
    background-color: #ffffff;
    border: 1.5px solid #0097CF;
    position: relative;
    text-align: center;
    font-size: 6.4vw;
    padding-top: 1.6vw;
    transform: inherit;
  }
}
.p-jobseekers_wrap09_step_ditail dd {
  padding-top: 75px;
  font-size: 22px;
  font-weight: bold;
  line-height: 120%;
}
@media screen and (max-width: 767px) {
  .p-jobseekers_wrap09_step_ditail dd {
    padding-top: 0;
    font-size: 5.3333333333vw;
    text-align: left;
    padding-left: 4vw;
  }
}
.p-jobseekers_wrap09_step_ditail dd small {
  font-size: 13px;
}
@media screen and (max-width: 767px) {
  .p-jobseekers_wrap09_step_ditail dd small {
    font-size: 4vw;
  }
}
.p-jobseekers_wrap09_step_ditail:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -21px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 10px;
  border-color: transparent transparent transparent rgb(0, 151, 207);
}
@media screen and (max-width: 767px) {
  .p-jobseekers_wrap09_step_ditail:after {
    top: inherit;
    right: inherit;
    transform: inherit;
    left: 4.5333333333vw;
    bottom: -4.5333333333vw;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 2.1333333333vw 2.1333333333vw 0 2.1333333333vw;
    border-color: rgb(0, 151, 207) transparent transparent transparent;
  }
}
.p-jobseekers_wrap09_step_ditail:last-of-type::after {
  display: none;
}
.p-jobseekers_wrap09_step_txt {
  text-align: left;
  font-size: 16px;
  line-height: 200%;
}

.p-service .h2_wrap {
  background: url(../../src/img/service/ttl_pc.png) no-repeat top center;
  background-size: cover;
}
.p-service_wrap {
  width: 100%;
  margin-top: 80px;
  text-align: left;
  position: relative;
}
.p-service_wrap_img {
  position: absolute;
  top: 0;
  left: 0;
  /*aspect-ratio: 5 / 4;*/
  width: calc(50% + 40px);
  height: 800px;
  overflow: hidden;
  border-radius: 0 6px 6px 0;
}
@media screen and (max-width: 1500px) {
  .p-service_wrap_img {
    width: 50%;
    height: 700px;
  }
}
.p-service_wrap_img figure {
  width: 100%;
  height: 100%;
  margin: 0;
}
.p-service_wrap_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-service_wrap .inner {
  width: 100%;
  padding-top: 100px;
}
.p-service_wrap_box {
  width: 850px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.9);
  padding: 90px 60px;
  position: relative;
  z-index: 2;
  margin-left: calc(50% - 130px);
}
@media screen and (max-width: 1500px) {
  .p-service_wrap_box {
    width: calc(50% + 100px);
  }
  .p-service_wrap_box .c-title_h3 {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
.p-service_wrap_box_ttl {
  font-size: 28px;
  line-height: 160%;
  font-weight: bold;
  color: #0097CF;
  margin-bottom: 20px;
}
@media screen and (max-width: 1500px) {
  .p-service_wrap_box_ttl {
    font-size: 22px;
  }
}
.p-service_wrap_box_txt {
  color: #333333;
  font-size: 18px;
  line-height: 200%;
}
@media screen and (max-width: 1500px) {
  .p-service_wrap_box_txt {
    font-size: 16px;
    line-height: 180%;
  }
}
.p-service_wrap2 {
  width: 100%;
  margin-top: 150px;
  text-align: left;
  position: relative;
  padding-bottom: 150px;
}
.p-service_wrap2_img {
  position: absolute;
  top: 0;
  right: 0;
  /*aspect-ratio: 5 / 4;*/
  width: calc(50% + 40px);
  height: 800px;
  overflow: hidden;
  border-radius: 6px 0 0 6px;
}
@media screen and (max-width: 1500px) {
  .p-service_wrap2_img {
    width: 50%;
    height: 700px;
  }
}
.p-service_wrap2_img figure {
  width: 100%;
  height: 100%;
  margin: 0;
}
.p-service_wrap2_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-service_wrap2 .inner {
  width: 100%;
  padding-top: 100px;
}
.p-service_wrap2_box {
  width: 850px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.9);
  padding: 90px 60px;
  position: relative;
  z-index: 2;
  margin-left: calc(50% - 720px);
}
@media screen and (max-width: 1500px) {
  .p-service_wrap2_box {
    width: calc(50% + 100px);
    margin-left: 30px;
  }
  .p-service_wrap2_box .c-title_h3 {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
.p-service_wrap2_box_ttl {
  font-size: 28px;
  line-height: 160%;
  font-weight: bold;
  color: #0097CF;
  margin-bottom: 20px;
}
@media screen and (max-width: 1500px) {
  .p-service_wrap2_box_ttl {
    font-size: 22px;
  }
}
.p-service_wrap2_box_txt {
  color: #333333;
  font-size: 18px;
  line-height: 200%;
}
@media screen and (max-width: 1500px) {
  .p-service_wrap2_box_txt {
    font-size: 16px;
    line-height: 180%;
  }
}
.p-service_wrap2_box_list {
  width: 100%;
  margin: 30px 0 0;
}
.p-service_wrap2_box_list li {
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #0097CF;
  border-radius: 6px;
  color: #333333;
  font-size: 17px;
  font-weight: bold;
  line-height: 160%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 10px;
  margin-bottom: 20px;
}
.p-service_wrap2_box_list li:last-child {
  margin-bottom: 0;
}
.p-service_offer {
  max-width: 1100px;
  margin: 0 auto 25px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #CCCCCC;
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 0;
}
.p-service_offer:last-of-type {
  margin: 0 auto;
}
.p-service_offer dt {
  background-color: #F8F8F8;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  color: #0097CF;
  line-height: 160%;
  padding: 30px 25px;
  border-right: 1px solid #CCCCCC;
}
.p-service_offer dd {
  padding: 30px 25px;
}
.p-service_regist {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 70px;
}
@media screen and (max-width: 767px) {
  .p-service_regist {
    max-width: 89.3333333333vw;
    gap: 13.3333333333vw;
  }
}
.p-service_regist_ditail {
  width: 100%;
  background-color: #F6F6F6;
  border-radius: 10px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-service_regist_ditail {
    border-radius: 6px;
  }
}
.p-service_regist_ditail:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -52px;
  left: 50%;
  transform: translateX(-50%);
  border-style: solid;
  border-width: 32px 25px 0px;
  border-color: rgb(0, 151, 207) transparent transparent;
}
@media screen and (max-width: 767px) {
  .p-service_regist_ditail:after {
    bottom: -9.8666666667vw;
    border-width: 6.1333333333vw 4.8vw 0px;
  }
}
.p-service_regist_ditail:last-of-type:after {
  display: none;
}
.p-service_regist_ditail_ttl {
  background-color: #0097CF;
  color: #ffffff;
  text-align: left;
  border-radius: 10px 10px 0 0;
  padding: 23px 20px 24px 120px;
  position: relative;
}
.p-service_regist_ditail_ttl .step {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 45px;
  width: 60px;
  height: 60px;
  background-color: #ffffff;
  font-size: 12px;
  font-family: "Poppins", serif;
  padding: 13px;
  line-height: 1;
  border-radius: 50%;
  color: #0097CF;
  font-weight: 500;
  text-align: center;
  margin-top: -30px;
}
.p-service_regist_ditail_ttl .step span {
  font-size: 23px;
}
.p-service_regist_ditail_ttl h4 {
  font-size: 24px;
  font-weight: bold;
  line-height: 150%;
  color: #ffffff;
}
.p-service_regist_ditail_txt2 {
  padding: 50px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
@media screen and (max-width: 767px) {
  .p-service_regist_ditail_txt2 {
    padding: 6.6666666667vw 5.3333333333vw;
    grid-template-columns: 1fr;
  }
}
.p-service_regist_ditail_txt2 li {
  padding: 0 60px;
}
@media screen and (max-width: 767px) {
  .p-service_regist_ditail_txt2 li {
    padding: 0;
  }
}
.p-service_regist_ditail_txt2 li:last-child {
  border-left: 1px solid #CCCCCC;
}
@media screen and (max-width: 767px) {
  .p-service_regist_ditail_txt2 li:last-child {
    border-left: none;
    border-top: 1px solid #CCCCCC;
    padding-top: 5.3333333333vw;
    margin-top: 6.6666666667vw;
  }
}
.p-service_regist_ditail_txt2 li .ttl {
  font-size: 22px;
  line-height: 170%;
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-service_regist_ditail_txt2 li .ttl {
    font-size: 4.8vw;
    margin-bottom: 3.4666666667vw;
  }
}
.p-service_regist_ditail_txt2 li .img {
  width: 480px;
  height: 164px;
  overflow: hidden;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-service_regist_ditail_txt2 li .img {
    width: 78.6666666667vw;
    height: 26.6666666667vw;
    margin-bottom: 5.3333333333vw;
  }
}
.p-service_regist_ditail_txt2 li .img img {
  border-radius: 6px;
}
.p-service_regist_ditail_txt2 li .txt {
  font-size: 18px;
  line-height: 170%;
  font-weight: bold;
  margin-bottom: 17px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-service_regist_ditail_txt2 li .txt {
    font-size: 4vw;
    margin-bottom: 2.6666666667vw;
  }
}
.p-service_regist_ditail_txt2 li .txt_s {
  font-size: 16px;
  line-height: 160%;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-service_regist_ditail_txt2 li .txt_s {
    font-size: 3.4666666667vw;
  }
}
.p-service_regist_ditail_txt {
  padding: 50px 60px;
}
@media screen and (max-width: 767px) {
  .p-service_regist_ditail_txt {
    padding: 6.6666666667vw 5.3333333333vw;
  }
}
.p-service_regist_ditail_txt .ttl {
  font-size: 22px;
  line-height: 170%;
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-service_regist_ditail_txt .ttl {
    font-size: 4.8vw;
    margin-bottom: 3.4666666667vw;
  }
}
.p-service_regist_ditail_txt .txt_s {
  font-size: 16px;
  line-height: 160%;
  margin-top: 35px;
}
.p-service_regist_ditail_txt .txt {
  font-size: 18px;
  line-height: 160%;
}
@media screen and (max-width: 767px) {
  .p-service_regist_ditail_txt .txt {
    font-size: 4vw;
    text-align: left;
  }
}
.p-service_regist_ditail_txt .txt2 {
  text-align: left;
  font-size: 16px;
  line-height: 160%;
}
@media screen and (max-width: 767px) {
  .p-service_regist_ditail_txt .txt2 {
    font-size: 3.4666666667vw;
  }
}
.p-service_regist_ditail_txt_box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-service_regist_ditail_txt_box {
    grid-template-columns: 1fr;
    gap: 3.2vw;
    margin: 5.3333333333vw 0 4vw;
  }
}
.p-service_regist_ditail_txt_box li {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 6px;
  text-align: left;
  margin: 20px 0;
}
@media screen and (max-width: 767px) {
  .p-service_regist_ditail_txt_box li {
    padding: 5.3333333333vw;
    margin: 0;
  }
}
.p-service_regist_ditail_txt_box li .ditail {
  position: relative;
  padding-left: 40px;
  font-size: 18px;
  line-height: 150%;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-service_regist_ditail_txt_box li .ditail {
    padding-left: 9.3333333333vw;
    font-size: 4vw;
  }
}
.p-service_regist_ditail_txt_box li .ditail span {
  position: absolute;
  font-family: "Poppins", serif;
  color: #0097CF;
  font-size: 24px;
  font-weight: 500;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-service_regist_ditail_txt_box li .ditail span {
    font-size: 5.3333333333vw;
  }
}
.p-service_step {
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-service_step {
    max-width: 70.6666666667vw;
  }
}
.p-service_step_inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 29px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .p-service_step_inner {
    grid-template-columns: 1fr;
    gap: 6.6666666667vw;
    margin-bottom: 0;
  }
}
.p-service_step_ditail {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 100px;
  background-color: #ffffff;
  border: 2px solid #0097CF;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-service_step_ditail {
    border-radius: 0;
    background-color: inherit;
    border: none;
    aspect-ratio: inherit;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
}
.p-service_step_ditail dt {
  position: absolute;
  top: 22px;
  left: 60px;
  font-family: "Poppins", serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 150%;
  color: #0097CF;
}
@media screen and (max-width: 767px) {
  .p-service_step_ditail dt {
    top: 0;
    left: 0;
    width: 13.3333333333vw;
    height: 13.3333333333vw;
    aspect-ratio: 1/1;
    border-radius: 100px;
    background-color: #ffffff;
    border: 1.5px solid #0097CF;
    position: relative;
    text-align: center;
    font-size: 6.4vw;
    padding-top: 1.6vw;
  }
}
.p-service_step_ditail dt span {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  margin-left: 3px;
}
.p-service_step_ditail dd {
  padding-top: 85px;
  font-size: 22px;
  font-weight: bold;
  line-height: 120%;
}
@media screen and (max-width: 767px) {
  .p-service_step_ditail dd {
    padding-top: 0;
    font-size: 5.3333333333vw;
    text-align: left;
    padding-left: 4vw;
  }
}
.p-service_step_ditail dd small {
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .p-service_step_ditail dd small {
    font-size: 4vw;
  }
}
.p-service_step_ditail:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -21px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 10px;
  border-color: transparent transparent transparent rgb(0, 151, 207);
}
@media screen and (max-width: 767px) {
  .p-service_step_ditail:after {
    top: inherit;
    right: inherit;
    transform: inherit;
    left: 4.5333333333vw;
    bottom: -4.5333333333vw;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 2.1333333333vw 2.1333333333vw 0 2.1333333333vw;
    border-color: rgb(0, 151, 207) transparent transparent transparent;
  }
}
.p-service_step_ditail:last-of-type::after {
  display: none;
}
.p-service_step_txt {
  text-align: left;
  font-size: 16px;
  line-height: 200%;
}

.p-workers .h2_wrap {
  background: url(../../src/img/workers/ttl_pc.png) no-repeat top center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-workers .h2_wrap {
    background: url(../../src/img/workers/ttl_sp.png) no-repeat top center;
    background-size: cover;
  }
}
.p-workers_wrap01 {
  padding: 80px 0 0;
  margin: 0 auto;
  max-width: 1100px;
}
@media screen and (max-width: 767px) {
  .p-workers_wrap01 {
    padding: 12vw 5.3333333333vw 0;
    text-align: left;
  }
}
.p-workers_wrap02 {
  margin: 0 auto;
  max-width: 1100px;
  text-align: left;
}
.p-workers_wrap02 p {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .p-workers_wrap02 p {
    font-size: 4vw;
  }
}
.p-workers_wrap03 {
  margin: 0 auto;
  padding-bottom: 50px;
  max-width: 1100px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-workers_wrap03 {
    padding-bottom: 5.3333333333vw;
  }
}
.p-workers_wrap03 p {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .p-workers_wrap03 p {
    font-size: 4vw;
  }
}
.p-workers_wrap03_ditail {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .p-workers_wrap03_ditail {
    margin-top: 13.3333333333vw;
  }
}
.p-workers_wrap03_ditail .box {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .p-workers_wrap03_ditail .box {
    margin-bottom: 8vw;
  }
}

.p-bread {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-bread {
    display: none;
  }
}
.p-bread ul {
  display: flex;
  max-width: 1140px;
  padding: 0 20px;
  margin: 0 auto;
}
.p-bread ul li {
  padding-right: 40px;
  position: relative;
}
.p-bread ul li span {
  display: inline-block;
  font-size: 13px;
  line-height: 160%;
  padding: 15px 0px;
}
.p-bread ul li:last-of-type::after {
  display: none;
}
.p-bread ul li a {
  display: inline-block;
  font-size: 13px;
  line-height: 160%;
  padding: 15px 0;
  color: #0097CF;
  transition: 0.3s all;
  text-decoration: underline;
}
.p-bread ul li a:hover {
  opacity: 0.7;
  text-decoration: none;
}
.p-bread ul li::after {
  display: block;
  content: "";
  position: absolute;
  top: calc(50% - 4px);
  right: 15px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #333333;
  border-right: 1px solid #333333;
  transform: rotate(45deg);
}

@media screen and (max-width: 767px) {
  .p-contact_p20 {
    padding-right: 5.3333333333vw;
    padding-left: 5.3333333333vw;
  }
}
.p-contact_wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 0 130px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-contact_wrap {
    padding: 12vw 5.3333333333vw 21.3333333333vw;
  }
  .p-contact_wrap.blue {
    padding: 12vw 0 21.3333333333vw;
  }
  .p-contact_wrap.blue .p-contact_wrap_txt {
    padding: 0 5.3333333333vw;
  }
}
.p-contact_wrap .l-inner {
  padding: 0;
}
.p-contact_wrap_txt {
  max-width: 1100px;
  margin: 0 auto 20px;
  font-size: 18px;
  line-height: 180%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contact_wrap_txt {
    margin: 0 auto;
    font-size: 4vw;
    text-align: left;
  }
}
.p-contact_wrap_txt.center {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contact_wrap_txt.center {
    text-align: left;
  }
}
.p-contact_wrap_txt.small {
  font-size: 14px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-contact_wrap_txt.small {
    margin: 0 auto;
    font-size: 3.4666666667vw;
    line-height: 150%;
    text-align: center;
  }
}
.p-contact_wrap_txtlast {
  margin: -70px auto -15px;
  font-size: 16px;
  line-height: 180%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contact_wrap_txtlast {
    margin: 8vw auto 0;
    font-size: 4.2666666667vw;
    line-height: 150%;
  }
}
.p-contact_wrap_txtlast2 {
  margin: 20px auto -15px;
  font-size: 16px;
  line-height: 180%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contact_wrap_txtlast2 {
    margin: 2.6666666667vw auto;
    font-size: 4vw;
    line-height: 150%;
    text-align: left;
  }
}
.p-contact_wrap_ditail {
  width: 100%;
}
.p-contact_wrap_ditail dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 20px 0;
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-contact_wrap_ditail dl {
    flex-flow: column;
    padding: 5.3333333333vw 0;
  }
}
.p-contact_wrap_ditail dl.blueline {
  border: 3px solid #B1D6E4;
  border-radius: 6px;
  padding: 50px;
  max-width: 1200px;
  margin-bottom: 110px;
}
@media screen and (max-width: 767px) {
  .p-contact_wrap_ditail dl.blueline {
    border: 8px solid #B1D6E4;
    border-radius: 0;
    padding: 13.3333333333vw 5.3333333333vw;
    margin: 5.3333333333vw 0 0;
  }
}
.p-contact_wrap_ditail dl dt {
  padding: 20px 0 20px 84px;
  box-sizing: border-box;
  position: relative;
  font-weight: bold;
  width: 320px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 16px;
  line-height: 150%;
  border-bottom: 1px solid #E2E2E2;
}
@media screen and (max-width: 767px) {
  .p-contact_wrap_ditail dl dt {
    padding: 5.3333333333vw 0 0 17.3333333333vw;
    width: 100%;
    display: block;
    border-bottom: none;
  }
}
.p-contact_wrap_ditail dl dt::after {
  content: "任意";
  width: 64px;
  height: 31px;
  padding: 0;
  background: #888888;
  border-radius: 3px;
  color: #ffffff;
  font-size: 14px;
  line-height: 31px;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-contact_wrap_ditail dl dt::after {
    font-size: 3.7333333333vw;
    width: 14.6666666667vw;
    height: 7.2vw;
    top: 4.8vw;
    margin-top: 0;
    line-height: 7.2vw;
    transform: translateY(0);
  }
}
.p-contact_wrap_ditail dl dt.required:after {
  content: "必須";
  background: #0097CF;
}
.p-contact_wrap_ditail dl dt.first {
  border-top: 1px solid #E2E2E2;
}
.p-contact_wrap_ditail dl dd {
  padding: 20px 0;
  box-sizing: border-box;
  font-size: 16px;
  width: calc(100% - 320px);
  border-bottom: 1px solid #E2E2E2;
}
@media screen and (max-width: 767px) {
  .p-contact_wrap_ditail dl dd {
    padding: 4vw 0 5.3333333333vw;
    width: 100%;
    display: block;
  }
}
.p-contact_wrap_ditail dl dd.first {
  border-top: 1px solid #E2E2E2;
}
@media screen and (max-width: 767px) {
  .p-contact_wrap_ditail dl dd.first {
    border-top: none;
  }
}
.p-contact_wrap_ditail dl dd .box {
  display: flex;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .p-contact_wrap_ditail dl dd .box {
    grid-template-columns: 1fr;
    gap: 2.6666666667vw;
  }
}
.p-contact_wrap_ditail dl dd .box li {
  width: 100%;
}
.p-contact_wrap_ditail dl dd.flex {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
.p-contact_wrap_ditail dl dd .upload_wrap {
  width: 100%;
  height: auto;
  border-radius: 6px;
  border: 2px dashed #B1D6E4;
  background: #EDF5FD;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 25px 0;
}
@media screen and (max-width: 767px) {
  .p-contact_wrap_ditail dl dd .upload_wrap {
    margin-bottom: 4vw;
    padding: 5.3333333333vw 0;
  }
}
.p-contact_wrap_ditail dl dd .upload_wrap label {
  width: 200px;
  background: #ffffff;
  border: 2px solid #B1D6E4;
  border-radius: 100px;
  text-align: center;
  color: #0097CF;
  cursor: pointer;
  font-size: 14px;
  padding: 5px;
  display: inline-block;
  letter-spacing: 0;
  font-weight: bold;
  line-height: 150%;
}
@media screen and (max-width: 767px) {
  .p-contact_wrap_ditail dl dd .upload_wrap label {
    width: 53.3333333333vw;
    padding: 2.1333333333vw 0;
  }
}
.p-contact_wrap_ditail dl dd .upload_wrap label input {
  display: none;
}
.p-contact_wrap_ditail dl dd .col2 {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 0;
}
@media screen and (max-width: 767px) {
  .p-contact_wrap_ditail dl dd .col2 {
    grid-template-columns: 1fr;
  }
}
.p-contact_wrap_ditail dl dd .col2 .ttl {
  font-size: 16px;
  font-weight: bold;
  line-height: 150%;
  padding: 20px 0 0;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-contact_wrap_ditail dl dd .col2 .ttl {
    padding: 2.6666666667vw 0 0;
  }
}
.p-contact_wrap_ditail dl dd .col2 .content {
  padding: 20px 0 0;
}
@media screen and (max-width: 767px) {
  .p-contact_wrap_ditail dl dd .col2 .content {
    padding: 2.6666666667vw 0 0;
  }
}
.p-contact_modal {
  width: 100%;
  max-width: 1000px;
  border-radius: 6px;
  background-color: #ffffff;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-contact_modal {
    padding: 0;
  }
}
.p-contact_modal_ttl {
  width: 100%;
  background-color: #0097CF;
  color: #ffffff;
  text-align: center;
  font-size: 26px;
  line-height: 160%;
  font-weight: bold;
  padding: 14px 0;
}
@media screen and (max-width: 767px) {
  .p-contact_modal_ttl {
    font-size: 4.8vw;
    padding: 2.6666666667vw 0;
  }
}
.p-contact_modal_inner {
  padding: 40px 50px 60px;
}
@media screen and (max-width: 767px) {
  .p-contact_modal_inner {
    padding: 5.3333333333vw;
  }
}
.p-contact_modal_inner dl {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.p-contact_modal_inner dl dt {
  font-size: 24px;
  font-weight: bold;
  line-height: 160%;
  padding: 50px 0 0;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .p-contact_modal_inner dl dt {
    font-size: 4.2666666667vw;
    padding: 8vw 0 0;
    margin-bottom: 2.6666666667vw;
  }
}
.p-contact_modal_inner dl dt span {
  font-size: 16px;
  font-weight: 500;
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  .p-contact_modal_inner dl dt span {
    font-size: 3.4666666667vw;
    margin-left: 1.3333333333vw;
  }
}
.p-contact_modal_inner dl dt:first-child {
  padding: 0;
}
.p-contact_modal_inner dl dd {
  padding: 0 0 20px;
  border-bottom: 1px solid #E2E2E2;
}
@media screen and (max-width: 767px) {
  .p-contact_modal_inner dl dd {
    padding: 0 0 4vw;
  }
  .p-contact_modal_inner dl dd .group {
    margin-top: 0 !important;
  }
}
.p-contact_modal_ditail.selectbox {
  width: 280px !important;
}
.p-contact_modal_ditail.selectbox select {
  width: 280px !important;
}

.wpcf7-list-item {
  margin: 0 !important;
}

.p-about .h2_wrap {
  background: url(../../src/img/about/ttl_pc.png) no-repeat top center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-about .h2_wrap {
    background: url(../../src/img/about/ttl_sp.png) no-repeat top center;
    background-size: cover;
  }
}
.p-about_wrap01 {
  padding: 80px 0 0;
  margin: 0 auto;
  max-width: 1100px;
}
@media screen and (max-width: 767px) {
  .p-about_wrap01 {
    padding: 12vw 5.3333333333vw 0;
    text-align: left;
  }
}
.p-about_wrap02 {
  margin: 0 auto;
  padding-bottom: 50px;
  max-width: 1100px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-about_wrap02 {
    padding-bottom: 5.3333333333vw;
  }
}
.p-about_wrap02 p {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .p-about_wrap02 p {
    font-size: 4vw;
  }
}
.p-about_wrap02_ditail {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .p-about_wrap02_ditail {
    margin-top: 13.3333333333vw;
  }
}
.p-about_wrap02_ditail.top {
  margin-top: 70px;
}
@media screen and (max-width: 767px) {
  .p-about_wrap02_ditail.top {
    margin-top: 9.3333333333vw;
  }
}
.p-about_wrap02_ditail .boximg {
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: 1fr 450px;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-about_wrap02_ditail .boximg {
    margin-bottom: 8vw;
    grid-template-columns: 1fr;
    gap: 5.3333333333vw;
  }
}
.p-about_wrap02_ditail .boximg .img {
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
}
.p-about_wrap02_ditail .box {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .p-about_wrap02_ditail .box {
    margin-bottom: 8vw;
  }
}
.p-about_wrap02_ditail .boxcol2 {
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background-color: #F8F8F8;
  border-radius: 6px;
  padding: 40px 50px;
}
.p-about_wrap02_ditail .boxcol2.white {
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-about_wrap02_ditail .boxcol2 {
    margin-bottom: 8vw;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 5.3333333333vw;
  }
}

@media screen and (max-width: 767px) {
  .p-privacy .c-title_h3 {
    font-size: 5.3333333333vw;
  }
}
.p-privacy_wrap {
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-privacy_wrap {
    max-width: 100%;
  }
}
.p-privacy_wrap_txt {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .p-privacy_wrap_txt {
    margin-bottom: 8vw;
  }
}
.p-privacy_wrap_ditail {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .p-privacy_wrap_ditail {
    margin-bottom: 10.6666666667vw;
  }
}
.p-privacy_wrap_ditail:last-of-type {
  margin-bottom: 0;
}

.p-news {
  margin: 100px auto 0;
  width: 100%;
  max-width: 1200px;
  background-color: #ffffff;
  border-radius: 6px;
  padding: 70px 50px;
  border: 1px solid #EDF5FD;
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 0;
}
@media screen and (max-width: 767px) {
  .p-news {
    margin: 21.3333333333vw auto 0;
    max-width: 89.3333333333vw;
    padding: 9.3333333333vw 5.3333333333vw 10.6666666667vw;
    grid-template-columns: 1fr;
  }
}
.p-news_ttl {
  text-align: center;
  padding: 0 30px 0 15px;
}
@media screen and (max-width: 767px) {
  .p-news_ttl {
    text-align: left;
    padding: 0 0 4vw 0;
  }
}
.p-news_ttl .en {
  font-family: "Poppins", serif;
  font-size: 50px;
  font-weight: 400;
  letter-spacing: 0.03em;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .p-news_ttl .en {
    font-size: 9.6vw;
    margin-bottom: 2.6666666667vw;
  }
}
.p-news_ttl .en span {
  color: #0097CF;
}
.p-news_wrap {
  width: calc(100% - 15px);
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .p-news_wrap {
    width: 100%;
  }
}
.p-news_wrap .scrollable-div {
  overflow-y: auto;
  max-height: 330px;
}
@media screen and (max-width: 767px) {
  .p-news_wrap .scrollable-div {
    max-height: 106.6666666667vw;
  }
}
.p-news_wrap .scrollable-div li {
  width: calc(100% - 15px);
  border-top: 1px solid #CCCCCC;
  padding: 25px 0;
  font-size: 16px;
  color: #333333;
  line-height: 170%;
  display: flex;
  flex-direction: column;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-news_wrap .scrollable-div li {
    padding: 5.3333333333vw 0;
    font-size: 3.4666666667vw;
  }
}
.p-news_wrap .scrollable-div li:last-child {
  border-bottom: 1px solid #CCCCCC;
}
.p-news_wrap .scrollable-div li .head {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .p-news_wrap .scrollable-div li .head {
    margin-bottom: 1.8666666667vw;
    justify-content: space-between;
  }
}
.p-news_wrap .scrollable-div li .head .date {
  /*width: 70px;*/
  font-size: 15px;
  color: #0097CF;
  font-family: "Poppins", serif;
  font-weight: 400;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .p-news_wrap .scrollable-div li .head .date {
    /*width: pw(70);*/
    font-size: 3.7333333333vw;
    display: block;
    margin-right: 2.6666666667vw;
  }
}
.p-news_wrap .scrollable-div li .head .budge {
  width: auto;
  display: inline-flex;
  padding: 2px 20px;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-news_wrap .scrollable-div li .head .budge {
    padding: 0.5333333333vw 5.3333333333vw;
    font-size: 3.2vw;
  }
}
.p-news_wrap .scrollable-div li .head .budge.icon_01 {
  background-color: #888888;
}
.p-news_wrap .scrollable-div li .head .budge.icon_02 {
  background-color: #0097CF;
}
.p-news_wrap .scrollable-div li .head .budge.icon_03 {
  background-color: #00A0BB;
}
.p-news_wrap .scrollable-div li .head .budge.icon_04 {
  background-color: #e0311d;
}
.p-news_wrap .scrollable-div li .head .budge.icon_05 {
  background-color: #EB6F30;
}
.p-news_wrap .scrollable-div li .head .budge.icon_06 {
  background-color: #384f7e;
}
.p-news_wrap .scrollable-div li .head .budge.icon_07 {
  background-color: #64cc7e;
}
.p-news_wrap .scrollable-div li .head .budge.icon_08 {
  background-color: #e35596;
}
.p-news_wrap .scrollable-div li .head .budge.icon_09 {
  background-color: #7d67d5;
}
.p-news_wrap .scrollable-div li .head .budge.icon_10 {
  background-color: #4f66e1;
}
.p-news_wrap .scrollable-div li .main {
  width: 100%;
  text-align: left;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-news_wrap .scrollable-div li .main {
    width: 100%;
  }
}
.p-news_wrap .scrollable-div li .main a {
  width: 100%;
  color: #333333;
  text-decoration: underline;
  position: relative;
  display: inline-block;
}
.p-news_wrap .scrollable-div li .main a:hover {
  color: #0097CF;
  text-decoration: underline;
}
.p-news_wrap .scrollable-div li .main a {
  /*&::after {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    right: -20px;
    width: 10px;
    height: 10px;
    transform: translateY(-50%) rotate(45deg);
    transition: 0.3s all;
    border-top: 2px solid #0097CF;
    border-right: 2px solid #0097CF;

    @include mq() {
      display: none;
    }

  }*/
}

.scrollable-div::-webkit-scrollbar {
  width: 10px;
}

.scrollable-div::-webkit-scrollbar-track {
  background-color: #F6F6F6;
  border-radius: 10px;
}

.scrollable-div::-webkit-scrollbar-thumb {
  background-color: #B1D6E4;
  border: 1px solid #F6F6F6;
  background-clip: content-box;
  border-radius: 10px;
}

.u-mb--0 {
  margin-bottom: 0px !important;
}
.u-mb--xxs {
  margin-bottom: 10px !important;
}
@media screen and (max-width: 767px) {
  .u-mb--xxs {
    margin-bottom: 1.3333333333vw !important;
  }
}
.u-mb--xs {
  margin-bottom: 20px !important;
}
@media screen and (max-width: 767px) {
  .u-mb--xs {
    margin-bottom: 2.6666666667vw !important;
  }
}
.u-mb--s {
  margin-bottom: 30px !important;
}
@media screen and (max-width: 767px) {
  .u-mb--s {
    margin-bottom: 4vw !important;
  }
}
.u-mb--m {
  margin-bottom: 40px !important;
}
@media screen and (max-width: 767px) {
  .u-mb--m {
    margin-bottom: 5.3333333333vw !important;
  }
}
.u-mb--l {
  margin-bottom: 50px !important;
}
@media screen and (max-width: 767px) {
  .u-mb--l {
    margin-bottom: 6.6666666667vw !important;
  }
}
.u-mb--15 {
  margin-bottom: 15px !important;
}
@media screen and (max-width: 767px) {
  .u-mb--15 {
    margin-bottom: 2.6666666667vw !important;
  }
}
.u-mb--60 {
  margin-bottom: 60px !important;
}
@media screen and (max-width: 767px) {
  .u-mb--60 {
    margin-bottom: 8vw !important;
  }
}
.u-mb--100 {
  margin-bottom: 100px !important;
}
@media screen and (max-width: 767px) {
  .u-mb--100 {
    margin-bottom: 13.3333333333vw !important;
  }
}
.u-mb--120 {
  margin-bottom: 120px !important;
}
@media screen and (max-width: 767px) {
  .u-mb--120 {
    margin-bottom: 16vw !important;
  }
}

.u-mt--0 {
  margin-top: 0px !important;
}
.u-mt--xxs {
  margin-top: 10px !important;
}
@media screen and (max-width: 767px) {
  .u-mt--xxs {
    margin-top: 1.3333333333vw !important;
  }
}
.u-mt--xs {
  margin-top: 20px !important;
}
@media screen and (max-width: 767px) {
  .u-mt--xs {
    margin-top: 2.6666666667vw !important;
  }
}
.u-mt--s {
  margin-top: 30px !important;
}
@media screen and (max-width: 767px) {
  .u-mt--s {
    margin-top: 4vw !important;
  }
}
.u-mt--m {
  margin-top: 40px !important;
}
@media screen and (max-width: 767px) {
  .u-mt--m {
    margin-top: 5.3333333333vw !important;
  }
}
.u-mt--l {
  margin-top: 50px !important;
}
@media screen and (max-width: 767px) {
  .u-mt--l {
    margin-top: 6.6666666667vw !important;
  }
}
.u-mt--60 {
  margin-top: 60px !important;
}
@media screen and (max-width: 767px) {
  .u-mt--60 {
    margin-top: 8vw !important;
  }
}
.u-mt--25 {
  margin-top: 25px !important;
}
@media screen and (max-width: 767px) {
  .u-mt--25 {
    margin-top: 5.3333333333vw !important;
  }
}

.u-ml--10 {
  margin-left: 10px !important;
}
@media screen and (max-width: 767px) {
  .u-ml--10 {
    margin-left: 1.3333333333vw !important;
  }
}

.u-mr--10 {
  margin-right: 10px !important;
}
@media screen and (max-width: 767px) {
  .u-mr--10 {
    margin-right: 1.3333333333vw !important;
  }
}

.u-mlr--10 {
  margin-right: 10px !important;
  margin-left: 10px !important;
}
@media screen and (max-width: 767px) {
  .u-mlr--10 {
    margin-right: 1.3333333333vw !important;
    margin-left: 1.3333333333vw !important;
  }
}

.u-pb--210 {
  padding-bottom: 210px !important;
}
@media screen and (max-width: 767px) {
  .u-pb--210 {
    padding-bottom: 32vw !important;
  }
}
.u-pb--150 {
  padding-bottom: 150px !important;
}
@media screen and (max-width: 767px) {
  .u-pb--150 {
    padding-bottom: 16vw !important;
  }
}

.u-sp-only {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .u-sp-only {
    display: block !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pc-only {
    display: none !important;
  }
}

.u-fontsize--22 {
  font-size: 22px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .u-fontsize--22 {
    font-size: 18px;
    font-size: 1rem;
  }
}

.u-fontcolor--red {
  color: #e0311d;
}
.u-fontcolor--black {
  color: #333333 !important;
}

.u-lineheight--140 {
  line-height: 140% !important;
}

.u-text-align--center {
  text-align: center !important;
}

.u-width--200 {
  width: 200px !important;
}
@media screen and (max-width: 767px) {
  .u-width--200 {
    width: 80px !important;
  }
}
.u-width--200_ttl {
  width: 200px !important;
}
@media screen and (max-width: 767px) {
  .u-width--200_ttl {
    width: 60px !important;
  }
}
.u-width--170 {
  width: 170px !important;
}
@media screen and (max-width: 767px) {
  .u-width--170 {
    width: 60px !important;
  }
}
.u-width--180 {
  width: 180px !important;
}
.u-width--260 {
  width: 260px !important;
}
@media screen and (max-width: 767px) {
  .u-width--260 {
    width: 100px !important;
  }
}

.u-text-color--red {
  color: #e0311d;
}