@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700;800&family=Outfit:wght@400;700&display=swap");
/* =====================
  リセット
 ======================= */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ul, ol {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

i, address {
  font-style: normal;
}

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

small {
  font-size: 100%;
}

/* =====================
	創心會グループ採用サイト
 ======================= */
/** -------------------- 変数定義 -------------------- **/
:root {
  /* カラー定義 */
  --c_text: #333333;
  --c_wht: #fff;
  --c_red: #F26638;
  --c_blue: #07B8C2;
  --c_yellow: #F9CB03;
  --c_purple: #815BC1;
  --c_green: #A8D000;
  /* フォント定義 */
  --font_ja: "Outfit", "Noto Sans JP", sans-serif;
  /* transition定義 */
  --anim: all 0.4s ease-out;
}

body {
  font-family: var(--font_ja);
  font-size: 0.9375vw;
  line-height: 1.8;
  letter-spacing: 0.03em;
  color: var(--c_text);
}

body * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

.clearfix {
  clear: both;
}

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

a:hover {
  opacity: 0.7;
}

/** ------------------------- COMMON STYLE ------------------------- **/
.p-inner {
  width: 62.5%;
  margin: 0 auto;
}

.p-inner--narrow {
  width: 52.08333%;
}

.p-inner--wide {
  width: 67.70833%;
}

.p-section {
  padding: 5.20833% 0;
}

.p-section:not(.p-bg__gray) + .p-cv {
  margin-top: -2.60417%;
}

.p-bg__gray {
  background: #F3F4F6;
}

.c-color__red {
  color: var(--c_red);
}

.c-btn__black {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 0.83333em;
     -moz-column-gap: 0.83333em;
          column-gap: 0.83333em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 17.8em;
  margin: 0 auto;
  padding: 1em;
  position: relative;
  font-weight: 700;
  line-height: 1.27778;
  background: #111111;
  border: 2px solid #111111;
  color: var(--c_wht);
}

.c-btn__black:before, .c-btn__black:after {
  content: "";
  width: 1.55556em;
  height: 100%;
  background: url(../img/common/arrow.png) no-repeat center/contain;
  position: absolute;
  right: 1.33333em;
  top: 0;
  -webkit-transition: var(--anim);
  transition: var(--anim);
}

.c-btn__black:after {
  background: url(../img/common/arrow-white.png) no-repeat center/contain;
}

.c-btn__black:hover {
  opacity: 1.0;
  background: var(--c_wht);
  color: #111111;
}

.c-btn__black:hover:after {
  opacity: 0;
}

.c-btn__red {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 0.83333em;
     -moz-column-gap: 0.83333em;
          column-gap: 0.83333em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 11.81818em;
  margin: 0 auto;
  padding: 0.63636em 1em;
  position: relative;
  font-size: 122.22222%;
  font-weight: 700;
  line-height: 1.27273;
  letter-spacing: 0.05em;
  background: var(--c_red);
  border: 2px solid var(--c_red);
  color: var(--c_wht);
}

.c-btn__red:before {
  content: "";
  width: 0.90909em;
  height: 0.90909em;
  background: url(../img/common/arrow_target.png) no-repeat center/cover, var(--c_red);
  border: 1px solid var(--c_red);
  position: absolute;
  right: 0.45455em;
  top: 0;
  bottom: 0;
  margin: auto;
}

.c-btn__red:hover {
  opacity: 1.0;
  background: var(--c_wht);
  color: var(--c_red);
}

.c-heading__footer {
  font-size: 144.44444%;
  font-weight: 700;
  line-height: 1.26923;
  margin: 0 0 1em;
}

.p-pageName {
  background: url(../img/common/header_bg_left.png) no-repeat left/contain, url(../img/common/header_bg_right.png) no-repeat right/contain, #F3F4F6;
  position: relative;
  padding-top: 15.625%;
}

.p-pageName:after {
  content: "";
  width: 100%;
  padding-top: 0.3125%;
  display: block;
  background: -webkit-gradient(linear, left top, right top, from(var(--c_red)), color-stop(20%, var(--c_red)), color-stop(20%, var(--c_yellow)), color-stop(40%, var(--c_yellow)), color-stop(40%, var(--c_blue)), color-stop(60%, var(--c_blue)), color-stop(60%, var(--c_purple)), color-stop(80%, var(--c_purple)), color-stop(80%, var(--c_green)), to(var(--c_green)));
  background: linear-gradient(to right, var(--c_red) 0%, var(--c_red) 20%, var(--c_yellow) 20%, var(--c_yellow) 40%, var(--c_blue) 40%, var(--c_blue) 60%, var(--c_purple) 60%, var(--c_purple) 80%, var(--c_green) 80%, var(--c_green) 100%);
}

.p-pageName__container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-pageName__title {
  text-align: center;
}

.p-pageName__title__eng {
  font-size: 77.77778%;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.28571;
  padding-bottom: 0.28571em;
  margin-bottom: 1.14286em;
  color: #07B8C2;
  position: relative;
}

.p-pageName__title__eng:before {
  content: "";
  width: 2.14286em;
  height: 2px;
  background: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.p-pageName__title__jp {
  font-size: 266.66667%;
  font-weight: 700;
}

.c-heading__h2 {
  text-align: center;
  font-size: 177.77778%;
  font-weight: 700;
  line-height: 1.25;
  padding-bottom: 0.3125em;
  margin-bottom: 2.5em;
  position: relative;
}

.c-heading__h2:before {
  content: "";
  width: 1.875em;
  height: 3px;
  background: #07B8C2;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

ul.p-list__disc li {
  padding-left: 1em;
  position: relative;
}

ul.p-list__disc li:before {
  content: "";
  width: 0.33333em;
  height: 0.33333em;
  background: #07B8C2;
  border-radius: 50%;
  position: absolute;
  left: 0.33333em;
  top: 0.55556em;
}

/** ------------------------- HEADER ------------------------- **/
.p-header {
  padding-top: 4.16667%;
}

.p-header__container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--c_wht);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1000;
}

.p-header__logo {
  margin-left: 2.08333%;
}

.p-header__logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #192549;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.p-header__logo a span {
  margin-left: 1em;
  padding-left: 1em;
  border-left: 1px solid currentColor;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-header__logo img {
  width: 7.44444em;
}

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

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

.p-header__gnav__list__item {
  font-size: 88.88889%;
  font-weight: 700;
}

.p-header__gnav__list__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding: 0 1.5em;
  position: relative;
}

.p-header__gnav__list__item a:before {
  content: "";
  width: 100%;
  height: 0.3125em;
  background: var(--c_red);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transition: var(--anim);
  transition: var(--anim);
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
}

.p-header__gnav__list__item a:hover:before {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.p-header__gnav__list__item a.is-current {
  pointer-events: none;
}

.p-header__gnav__list__item a.is-current:before {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.p-header__gnav__entry a {
  display: block;
  background: var(--c_red);
  border: 2px solid var(--c_red);
  color: var(--c_wht);
  font-size: 133.33333%;
  font-weight: 700;
  line-height: 1.16667;
  letter-spacing: 0.05em;
  padding: 1em 1.5em;
  text-align: center;
}

.p-header__gnav__entry a:hover {
  opacity: 1.0;
  background: var(--c_wht);
  color: var(--c_red);
}

/** ------------------------- CV ------------------------- **/
.p-cv {
  padding: 10.41667% 0;
  background: url(../img/common/cv_bg.png) no-repeat center/cover;
}

.p-cv__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 2.22222em;
}

.p-cv__list__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

.p-cv__list__item a {
  display: block;
  position: relative;
}

.p-cv__list__item a:before {
  content: "";
  width: 90%;
  padding-top: 18.1%;
  -webkit-filter: drop-shadow(0px 4px 4px rgba(51, 51, 51, 0.16));
          filter: drop-shadow(0px 4px 4px rgba(51, 51, 51, 0.16));
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
  -webkit-transition: var(--anim);
  transition: var(--anim);
}

.p-cv__list__item a:hover {
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
}

.p-cv__list__item a:hover:before {
  opacity: 0;
}

/** ------------------------- FOOTER ------------------------- **/
.p-footer:before {
  content: "";
  width: 100%;
  padding-top: 0.3125%;
  display: block;
  background: -webkit-gradient(linear, left top, right top, from(var(--c_red)), color-stop(20%, var(--c_red)), color-stop(20%, var(--c_yellow)), color-stop(40%, var(--c_yellow)), color-stop(40%, var(--c_blue)), color-stop(60%, var(--c_blue)), color-stop(60%, var(--c_purple)), color-stop(80%, var(--c_purple)), color-stop(80%, var(--c_green)), to(var(--c_green)));
  background: linear-gradient(to right, var(--c_red) 0%, var(--c_red) 20%, var(--c_yellow) 20%, var(--c_yellow) 40%, var(--c_blue) 40%, var(--c_blue) 60%, var(--c_purple) 60%, var(--c_purple) 80%, var(--c_green) 80%, var(--c_green) 100%);
}

.p-footer__black {
  background: #222222;
  color: var(--c_wht);
  padding: 4.47917% 0 4.16667%;
}

.p-footer__black a {
  color: var(--c_wht);
}

.p-footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 5.83333%;
     -moz-column-gap: 5.83333%;
          column-gap: 5.83333%;
}

.p-footer__info {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 20.41667%;
          flex: 0 1 20.41667%;
  margin-right: auto;
}

.p-footer__logo {
  width: 92.11618%;
  margin: 0 0 13.27801%;
}

.p-footer__address {
  font-size: 88.88889%;
  line-height: 1.6;
  letter-spacing: 0;
}

.p-footer__sitemap__list {
  font-size: 88.88889%;
  font-weight: 700;
  line-height: 1.25;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 1.25em;
}

.p-footer__entry {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 21.66667%;
          flex: 0 1 21.66667%;
}

.p-footer__entry__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 1.55556em;
}

.p-footer__entry__list__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  border: 2px solid var(--c_red);
  background: var(--c_red);
  width: 100%;
  height: 2.72727em;
  font-size: 122.22222%;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.p-footer__entry__list__item a:before {
  content: "";
  width: 1em;
  height: 1em;
  background: url(../img/common/arrow_target.png) no-repeat center/cover, var(--c_red);
  border: 1px solid var(--c_red);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0.45455em;
  margin: auto;
}

.p-footer__entry__list__item a:hover {
  opacity: 1.0;
  background: var(--c_wht);
  color: var(--c_red);
}

.p-footer__entry__list__item--line a {
  background: #00C34D;
  border-color: #00C34D;
}

.p-footer__entry__list__item--line a:before {
  background-color: #00C34D;
  border-color: #00C34D;
}

.p-footer__entry__list__item--line a:hover {
  color: #00C34D;
}

.p-footer__other {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 21.66667%;
          flex: 0 1 21.66667%;
}

.p-footer__other__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 1.55556em;
}

.p-footer__other__list__item--group a {
  display: block;
}

.p-footer__other__list__item--career a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  border: 2px solid #07B8C2;
  background: #07B8C2;
  width: 100%;
  height: 2.72727em;
  font-size: 122.22222%;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.p-footer__other__list__item--career a:before {
  content: "";
  width: 1em;
  height: 1em;
  background: url(../img/common/arrow_target.png) no-repeat center/cover, #07B8C2;
  border: 1px solid #07B8C2;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0.45455em;
  margin: auto;
}

.p-footer__other__list__item--career a:hover {
  opacity: 1.0;
  background: var(--c_wht);
  color: #07B8C2;
}

.p-footer__gray {
  background: #F3F4F6;
  padding: 2.08333% 0 2.39583%;
}

.p-footer__gray .c-heading__footer {
  text-align: center;
}

.p-footer__group {
  display: grid;
  grid-template-columns: 27.8% 27.8% 29.4%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  row-gap: 0.83333em;
}

.p-footer__copyright {
  text-align: center;
  background: #111111;
  color: var(--c_wht);
  font-size: 77.77778%;
  line-height: 1.28571;
  padding: 0.83333% 0;
}

/* PCのみ
  ------------------------ */
@media (min-width: 700px) {
  .u-onlySP {
    display: none !important;
  }
}

/* タブレット
  ------------------------ */
/* スマホ
  ------------------------ */
@media (max-width: 699px) {
  body {
    font-size: 16px;
  }
  .u-onlyPC {
    display: none !important;
  }
  .p-inner {
    width: 94%;
  }
  .p-inner--narrow {
    width: 92%;
  }
  .p-inner--wide {
    width: 96%;
  }
  .p-section {
    padding: 50px 0;
  }
  .p-section:not(.p-bg__gray) + .p-cv {
    margin-top: -30px;
  }
  .c-heading__footer {
    text-align: center;
    font-size: 20px;
    margin-bottom: 12px;
  }
  .p-pageName {
    padding-top: 120px;
    background-position: left -50% center, right -50% center;
  }
  .p-pageName:after {
    padding-top: 3px;
  }
  .p-pageName__title__eng {
    font-size: 11px;
    padding-bottom: 6px;
    margin-bottom: 4px;
  }
  .p-pageName__title__eng:before {
    height: 1px;
  }
  .p-pageName__title__jp {
    font-size: 24px;
  }
  .c-heading__h2 {
    font-size: 20px;
    padding-bottom: 10px;
    margin-bottom: 40px;
  }
  .c-heading__h2:before {
    width: 36px;
  }
  .p-header {
    padding-top: 50px;
  }
  .p-header__logo {
    margin-left: 15px;
    margin-right: auto;
  }
  .p-header__logo a {
    font-size: 14px;
  }
  .p-header__logo img {
    width: 89px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .p-header__entry a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: var(--c_red);
    color: var(--c_wht);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-align: center;
    width: 50px;
    height: 50px;
  }
  .p-header__menu {
    width: 50px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: #111111;
  }
  .p-header__menu__inner {
    width: 22px;
    height: 18px;
    position: relative;
  }
  .p-header__menu span {
    width: 100%;
    height: 2px;
    background: var(--c_wht);
    border-radius: 10px;
    position: absolute;
    -webkit-transition: var(--anim);
    transition: var(--anim);
  }
  .p-header__menu span:first-child {
    top: 0;
  }
  .p-header__menu span:nth-child(2), .p-header__menu span:nth-child(3) {
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .p-header__menu span:last-child {
    bottom: 0;
  }
  .p-header__menu.is-open span:first-child, .p-header__menu.is-open span:last-child {
    opacity: 0;
  }
  .p-header__menu.is-open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .p-header__menu.is-open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .p-header__gnav {
    position: fixed;
    top: 50px;
    left: 0;
    width: 100%;
    height: calc(100% - 50px);
    z-index: 1000;
    background: var(--c_wht);
    display: none;
    padding: 40px;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .p-header__gnav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-top: 1px solid #D9D9D9;
    margin: 0 0 36px;
  }
  .p-header__gnav__list__item {
    font-size: 100%;
    line-height: 1.25;
    border-bottom: 1px solid #D9D9D9;
  }
  .p-header__gnav__list__item a {
    padding: 16px 20px;
  }
  .p-header__gnav__list__item a:before {
    display: none;
  }
  .p-header__gnav__list__item a:after {
    content: "";
    width: 28px;
    height: 4px;
    background: url(../img/common/arrow.png) no-repeat center/contain;
    position: absolute;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .p-header__gnav__list__item a.is-current {
    color: var(--c_red);
  }
  .p-header__gnav__list__item a.is-current:after {
    opacity: 0;
  }
  .p-header__gnav__line a {
    display: block;
    background: #00C34D;
    color: var(--c_wht);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.27273;
    text-align: center;
    padding: 16px;
    position: relative;
    text-align: center;
  }
  .p-header__gnav__line a:before {
    content: "";
    width: 20px;
    height: 20px;
    background: url(../img/common/arrow_target.png) no-repeat center/contain;
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .p-header__gnav__entry {
    margin: 20px 0 0;
  }
  .p-header__gnav__entry a {
    font-size: 22px;
    padding: 16px;
    border: 0;
    position: relative;
  }
  .p-header__gnav__entry a:before {
    content: "";
    width: 20px;
    height: 20px;
    background: url(../img/common/arrow_target.png) no-repeat center/contain;
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .p-header__gnav__entry a:hover {
    background: var(--c_red);
    color: var(--c_wht);
    opacity: 0.7;
  }
  .p-cv {
    padding: 40px 0;
  }
  .p-cv .p-inner {
    width: 100%;
  }
  .p-cv__list {
    row-gap: 20px;
  }
  .p-footer:before {
    padding-top: 3px;
  }
  .p-footer__black {
    padding: 40px 0;
  }
  .p-footer__container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 30px 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .p-footer__info {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    margin: 0 auto;
  }
  .p-footer__logo {
    width: 160px;
    margin: 0 auto 15px;
  }
  .p-footer__address {
    font-size: 14px;
  }
  .p-footer__sitemap {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
  .p-footer__sitemap__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 8px 32px;
    font-weight: 400;
  }
  .p-footer__sitemap__list__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }
  .p-footer__entry {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }
  .p-footer__entry__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 8px;
  }
  .p-footer__entry__list__item {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .p-footer__entry__list__item a {
    font-size: 16px;
  }
  .p-footer__other {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }
  .p-footer__other__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 8px;
  }
  .p-footer__other__list__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc((100% - 8px) / 2);
            flex: 0 1 calc((100% - 8px) / 2);
  }
  .p-footer__other__list__item--career {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .p-footer__other__list__item--career a {
    font-size: 14px;
  }
  .p-footer__gray {
    padding: 25px 0;
  }
  .p-footer__group {
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
  }
  .p-footer__copyright {
    font-size: 12px;
    padding: 8px 0;
  }
}

/*# sourceMappingURL=map/common.css.map */
