@charset "UTF-8";
/*Reset
---------------------------------------------------------------------*/
/*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,
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%;
  font-style: normal;
  background: transparent;
}

article, nav, section, header, footer, aside, main {
  display: block;
}

* {
  box-sizing: border-box;
}

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

nav ul,
nav li {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  line-height: 0;
  border: none;
  max-width: 100%;
  height: auto;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media (max-width: 1023px) {
  :root {
    --header-height:60px;
    --margin-top:30vw;
  }
}
@media (min-width: 1024px) {
  :root {
    --header-height:80px;
    --margin-top:20vw;
  }
}
:root {
  --header-height-fixed:80px;
  --radius:10px;
  --main-rgb:0,104,222; /*メイン　青*/
  /*--hover-rgb: 170,204,3;緑*/
  --sub-rgb: 0,136,252; /*少し薄い青*/
  --text-rgb: 20,20,20; /*#141414*/
  --about-rgb:242,155,65; /*会社を知る*/
  --work-rgb:121,191,101; /*仕事を*/
  --person-rgb:255,132,183; /*社員を*/
  --recruit-rgb:94,194,206; /*採用を*/
  --entry-rgb:47,74,159; /*エントリー*/
  --main-grd: linear-gradient(90deg,rgb(41,110,255) 0%, rgb(41,110,255) 50%, rgb(144,0,158) 100%);
  --about-grd: linear-gradient(90deg,rgb(103,190,159) 0%, rgb(160,207,141) 50%,rgb(216,188,90) 100%); /*会社を知る*/
  --work-grd: linear-gradient(90deg,rgb(219,226,78) 0%,rgb(181,214,125) 50%, rgb(114,189,102) 100%); /*仕事を*/
  --person-grd: linear-gradient(90deg,rgb(44,166,224) 0%,rgb(124,179,215) 50%, rgb(229,162,220) 100%); /*社員を*/
  --recruit-grd: linear-gradient(90deg,rgb(200,230,67) 0%,rgb(130,204,152) 50%, rgb(85,174,183) 100%); /*採用を*/
  --entry-grd: linear-gradient(90deg,rgb(64,102,173) 0%,rgb(123,185,198) 50%, rgb(116,196,117) 100%); /*エントリー*/
  --back-rgb:255,255,255; /*色*/
  --red: 245,40,40;
}

/*共通
---------------------------------------------------------------------*/
html {
  font-size: 14px;
}
@media (min-width: 1024px) {
  html {
    font-size: 18px;
  }
}

.inner {
  width: 96%;
  margin: 0 auto;
  padding: 7.5vw 5%;
}
@media (min-width: 1024px) and (orientation: portrait) {
  .inner {
    max-width: 960px;
  }
}
@media (min-width: 1024px) {
  .inner {
    max-width: 1400px;
  }
}

/*body
---------------------------------------------------------------------*/
body {
  margin: 0px;
  padding: 0px;
  background-color: #FFF;
  color: rgb(var(--text-rgb));
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  line-height: 1.8;
  font-family: "Noto Sans JP", "Noto Sans", "ヒラギノ角ゴ Pro W3", Hiragino Kaku Gothic Pro, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", MS PGothic, sans-serif;
  overflow-wrap: break-word;
}

/*wrapper
---------------------------------------------------------------------*/
#WRAPPER {
  margin: 0px;
  padding: 0px;
  height: 100%;
  overflow: hidden;
  position: relative;
}

#overlay {
  content: "";
  display: block;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 15;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  background-color: rgba(250, 250, 250, 0.9);
}
#overlay.open {
  opacity: 1;
  visibility: visible;
}

/*header
---------------------------------------------------------------------*/
#header {
  width: 100vw;
  margin: 0 0 0 0;
  padding: 10px 0 0 0;
  z-index: 10000;
  position: fixed;
  top: 0;
  transition: all 0.5s;
  background-color: rgba(255, 255, 255, 0.8);
  height: var(--header-height);
  border-bottom: 1px #DDD solid;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
#header .header_inner {
  display: flex;
  justify-content: space-between;
  gap: 2%;
  padding: 0px 2% 0;
}
@media (min-width: 1024px) {
  #header .header_inner {
    padding: 0px 5% 0 3%;
  }
}
#header #headerlogo {
  transition: all 0.5s;
  margin: 0;
  padding: 0;
  line-height: 0.1;
  z-index: 100;
  width: 240px;
}
@media (min-width: 1024px) {
  #header #headerlogo {
    width: 380px;
  }
}
@media (min-width: 1024px) and (orientation: portrait) {
  #header #headerlogo {
    width: 320px;
  }
}
#header #headerlogo img.logo_w {
  display: none;
}
#header #headerlogo img.logo_fixed {
  display: inline-block;
}
/*PC*/
#pc_nav {
  display: none;
}
@media (min-width: 1024px) {
  #pc_nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    flex-grow: 2;
    gap: 10px;
  }
  #pc_nav .mainmenu {
    margin-right: 140px;
    display: flex;
    position: relative;
    text-align: center;
    justify-content: end;
    gap: 2em;
    font-size: 0.8rem;
  }
  #pc_nav .mainmenu li.nav_entry {
    display: none;
  }
  #pc_nav .mainmenu > li {
    margin: 0;
    font-size: clamp(0.6666666667rem, 0.1261451727rem + 1.2684989429vw, 1rem);
    font-weight: normal;
    position: relative;
  }
  #pc_nav .mainmenu > li a {
    padding: 0px;
    position: relative;
    color: rgb(var(--main-rgb));
  }
  #pc_nav .mainmenu > li > a:after {
    transition: all 0.4s;
    content: "";
    height: 3px;
    width: 0%;
    display: block;
    background: var(--main-grd);
    border-radius: 5px;
  }
  #pc_nav .mainmenu ul {
    display: none;
  }
}

#body_about .mainmenu li.nav_about a:after,
#body_work .mainmenu li.nav_work a:after,
#body_person .mainmenu li.nav_person a:after,
#body_recruit .mainmenu li.nav_recruit a:after,
#pc_nav .mainmenu li a:hover:after {
  width: 100%;
}

#entry_btn {
  z-index: 10000;
}
@media (min-width: 1024px) {
  #entry_btn {
    position: fixed;
    top: -30px;
    right: -30px;
  }
}
@media (max-width: 1023px) {
  #entry_btn {
    position: fixed;
    bottom: -30px;
    right: -30px;
  }
}
#entry_btn a {
  background: rgb(170, 204, 3);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
#entry_btn a::before {
  content: "";
  width: 50%;
  height: 50%;
  background: url(../img/mark_w.png) no-repeat center center;
  background-size: 100%;
  position: absolute;
  opacity: 0.6;
}
@media (min-width: 1024px) {
  #entry_btn a {
    width: 200px;
    height: 200px;
  }
}
@media (max-width: 1023px) {
  #entry_btn a {
    width: 150px;
    height: 150px;
  }
}
#entry_btn a img {
  position: relative;
  width: 50%;
  margin: auto;
  text-align: center;
  z-index: 1;
}
#entry_btn a:hover {
  transform: scale(1.1);
}

/*SP*/
#sp_nav {
  display: none;
}
@media (max-width: 1023px) {
  #sp_nav {
    display: block;
  }
}

#menu_btn {
  position: relative;
  cursor: pointer;
  padding: 0 0px;
  width: 40px;
  height: 40px;
  z-index: 25;
  overflow: hidden;
  flex-shrink: 0;
  text-align: center;
}
#menu_btn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 10%;
  height: 2px;
  border-radius: 5px;
  width: 80%;
  background: rgb(var(--main-rgb));
}
#menu_btn span:nth-of-type(1) {
  top: 20%;
}
#menu_btn span:nth-of-type(2) {
  top: 50%;
}
#menu_btn span:nth-of-type(3) {
  top: 80%;
}
#menu_btn.active span:nth-of-type(1) {
  top: 25%;
  left: 10%;
  transform: translateY(9px) rotate(-135deg);
}
#menu_btn.active span:nth-of-type(2) {
  opacity: 0;
}
#menu_btn.active span:nth-of-type(3) {
  top: 70%;
  left: 10%;
  transform: translateY(-9px) rotate(135deg);
}

#body_top #header {
  background-color: rgb(var(--sub-rgb));
  border-bottom: 0px #DDD solid;
}
#body_top #header #menu_btn span {
  background: #FFF;
}
#body_top #header #menu_btn.active span {
  background: rgb(var(--sub-rgb));
}
#body_top #header #headerlogo img.logo_w {
  display: inline-block;
}
#body_top #header #headerlogo img.logo_fixed {
  display: none;
}
#body_top #header #pc_nav .mainmenu li a {
  color: #FFF;
}
#body_top #header.headerfixed {
  background-color: rgba(255, 255, 255, 0.8);
}
#body_top #header.headerfixed #menu_btn span {
  background: rgb(var(--sub-rgb));
}
#body_top #header.headerfixed #headerlogo img.logo_w {
  display: none;
}
#body_top #header.headerfixed #headerlogo img.logo_fixed {
  display: inline-block;
}
#body_top #header.headerfixed #pc_nav .mainmenu li a {
  color: rgb(var(--sub-rgb));
}

#mainnavi {
  background-color: rgb(var(--back-rgb));
  z-index: 20;
  height: 100vh;
  width: 30vw;
  min-width: 320px;
  padding: var(--header-height) 0;
  overflow: auto;
  position: fixed;
  top: 0;
  right: -320px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
}
#mainnavi.active {
  opacity: 1;
  visibility: visible;
  right: 0px;
}
#mainnavi ul {
  margin: 0 3%;
  border-bottom: dotted 1px rgb(var(--text-rgb));
}
#mainnavi ul li {
  margin: 0;
  padding: 0 0;
  font-size: 1rem;
  border-top: dotted 1px rgb(var(--text-rgb));
}
#mainnavi ul li a {
  display: block;
  padding: 1rem 0.5rem;
  text-decoration: none;
  color: rgb(var(--main-rgb));
}
#mainnavi ul ul {
  border: 0;
}
#mainnavi ul ul li {
  border-top: dotted 0px rgb(var(--text-rgb));
}
#mainnavi ul ul li a {
  padding: 0rem 0.5rem 1rem;
  color: rgb(var(--text-rgb));
}

/*main
---------------------------------------------------------------------*/
#main {
  padding: 0px 0 0 0;
  position: relative;
  margin-top: var(--header-height);
}

#main h1 {
  font-size: clamp(2rem, 0.918957012rem + 2.5369978858vw, 2.6666666667rem);
  color: rgb(var(--main-rgb));
  position: relative;
  text-align: left;
  align-items: center;
  letter-spacing: 0;
  margin-top: 1em;
  margin-bottom: 1em;
}
#main h1 small {
  position: relative;
  display: block;
  padding: 0 0em 0 0;
  font-size: 1rem;
}

#main .topmainimage h1 {
  margin: 3em auto 1em;
  padding: 0 4%;
}
@media (min-width: 1024px) {
  #main .topmainimage h1 {
    max-width: 1600px;
  }
}

#footer_entry {
  margin: calc(-1 * var(--margin-top)) 0 0;
  position: relative;
  padding: 0% 0 0%;
}
#footer_entry img.back_entry_bottom {
  position: relative;
  display: block;
}
@media (max-width: 1023px) {
  #footer_entry img.back_entry_bottom {
    max-width: none !important;
    width: 150%;
    margin: 0 -25%;
  }
}
#footer_entry div {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 25%;
  left: 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
#footer_entry div a {
  position: relative;
  display: inline-block;
  border: solid 1px #FFF;
  padding: 30px;
  z-index: 10;
  max-width: 50%;
}
#footer_entry div img {
  margin: auto;
  width: 60%;
  max-width: 300px;
  display: block;
}
#footer_entry div a:hover {
  transform: scale(1.1);
}
#footer_entry div #entrymark {
  width: 50%;
  max-width: 240px;
  margin-bottom: 10px;
}
#footer_entry div #entrymark .st0 {
  fill: #FFFFFF;
}

/*sidecol
---------------------------------------------------------------------*/
#sidecol {
  margin: calc(-2 * var(--margin-top)) auto 1em;
  position: relative;
  z-index: 10;
}

#body_top #topicpath {
  visibility: hidden;
}

#topicpath {
  padding: 0;
  font-size: 0.8rem;
  margin: 1em auto 1em;
  text-align: right;
  position: relative;
  z-index: 15;
}

/*footer
---------------------------------------------------------------------*/
#footer {
  margin: calc(-1 * var(--margin-top)) 0 0;
  padding: calc(1.2 * var(--margin-top)) 0 0;
  position: relative;
  font-size: 0.8rem;
}
#footer::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  background-color: rgb(250, 250, 250);
}
#footer .inner {
  padding: 3% 5%;
}
#footer a {
  color: rgb(var(--text-rgb));
}
@media (max-width: 1023px) {
  #footer h2 img {
    width: 60%;
    max-width: 300px;
  }
}
@media (min-width: 1024px) {
  #footer #footer_content {
    display: flex;
    justify-content: space-between;
  }
  #footer #footer_content h2 img {
    max-width: 300px;
  }
  #footer #footer_content #footer_address p {
    margin-left: 90px;
  }
  #footer #footermenu > ul {
    display: flex;
    gap: 1em;
    line-height: 1.5;
  }
  #footer #footermenu > ul li {
    min-width: 8em;
    margin-bottom: 0.5em;
  }
  #footer #footermenu > ul li a b {
    color: rgb(var(--main-rgb));
  }
  #footer #footermenu > ul ul {
    font-size: 80%;
    margin-top: 0.5em;
  }
  #footer #footer_bottom {
    margin-top: 2em;
    display: flex;
    justify-content: space-between;
    font-size: 90%;
  }
  #footer #link_haraplex {
    order: 2;
  }
  #footer #copyright {
    order: 1;
  }
  #footer a:hover {
    color: rgb(var(--main-rgb)) !important;
    text-decoration: underline;
  }
}
/*maincol
---------------------------------------------------------------------*/
#maincol {
  position: relative;
  padding: var(--margin-top) 0 0 0;
}

#maincol article .inner {
  position: relative;
  z-index: 20;
}

.fadein {
  opacity: 0;
  transform: translate(0, 100px);
}

.view {
  opacity: 1;
  transform: translate(0, 0);
  transition-duration: 0.5s;
  transition-property: opacity, transform;
}

body:not(#body_top) #maincol article:first-child .inner:first-child {
  animation: fadein 0.5s forwards;
}

@keyframes fadein {
  0% {
    opacity: 0;
    transform: translate(0, 100px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
#maincol article {
  position: relative;
  margin: calc(-1 * var(--margin-top)) 0 0;
  padding: 0 0 calc(1 * var(--margin-top));
  background: url(../img/back_main.webp) no-repeat 0 0;
  background-size: 100%;
  min-height: 50vh;
}
#maincol article:last-child {
  padding: 0 0 calc(2 * var(--margin-top));
}
@media (max-width: 1023px) {
  #maincol article {
    background-size: 150%;
  }
}
#maincol article::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

#maincol article.back::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, transparent var(--margin-top), rgba(var(--main-rgb), 0.05) var(--margin-top));
  z-index: -1;
}

/*各ページ*/
.grd {
  color: #FFF;
  display: inline-block;
  line-height: 1;
  padding: 0.2em 0.3em;
}

#body_about .grd,
#pc_nav .mainmenu li.nav_about a:after {
  background: var(--about-grd);
}

#body_work .grd,
#pc_nav .mainmenu li.nav_work a:after {
  background: var(--work-grd);
}

#body_person .grd,
#person .grd,
.person_list .grd,
#pc_nav .mainmenu li.nav_person a:after {
  background: var(--person-grd) !important;
}

#body_recruit .grd,
#pc_nav .mainmenu li.nav_recruit a:after {
  background: var(--recruit-grd);
}

#body_entry .grd,
#pc_nav .mainmenu li.nav_entry a:after {
  background: var(--entry-grd);
}

#body_about #maincol article {
  background: url(../img/back_about.webp) no-repeat 0 0;
  background-size: 100%;
}
@media (max-width: 1023px) {
  #body_about #maincol article {
    background-size: 150%;
  }
}

#body_work #maincol article {
  background: url(../img/back_work.webp) no-repeat 0 0;
  background-size: 100%;
}
@media (max-width: 1023px) {
  #body_work #maincol article {
    background-size: 150%;
  }
}

#body_person #maincol article {
  background: url(../img/back_person.webp) no-repeat 0 0;
  background-size: 100%;
}
@media (max-width: 1023px) {
  #body_person #maincol article {
    background-size: 150%;
  }
}

#body_recruit #maincol article {
  background: url(../img/back_recruit.webp) no-repeat 0 0;
  background-size: 100%;
}
@media (max-width: 1023px) {
  #body_recruit #maincol article {
    background-size: 150%;
  }
}

#body_entry #maincol article {
  background: url(../img/back_entry.webp) no-repeat 0 0;
  background-size: 100%;
}
@media (max-width: 1023px) {
  #body_entry #maincol article {
    background-size: 150%;
  }
}

#maincol h2 {
  font-size: clamp(1.6666666667rem, 0.76579751rem + 2.1141649049vw, 2.2222222222rem);
  margin: 1em 0 1em 0;
  line-height: 1.2;
}
#maincol h2 small {
  font-size: 1rem;
  display: block;
}

#maincol h3 {
  margin: 0.5em 0 0.75em;
  padding: 0 0 0;
  font-size: clamp(1.5555555556rem, 1.1952078929rem + 0.8456659619vw, 1.7777777778rem);
  position: relative;
  background: url(../img/mark.png) no-repeat 0 0em;
  background-size: 1.2em;
  padding-left: 1.5em;
}
#maincol h3 small {
  color: rgba(var(--main-rgb));
  font-size: 1rem;
  display: block;
}

#maincol h4 {
  margin: 1em 0 0.75em;
  padding: 0 0 0;
  font-size: 1.15em;
}

p {
  margin: 0 0 1em;
}

.serif {
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

.margin_top {
  margin-top: 50px !important;
}

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

.txtleft {
  text-align: left !important;
  display: block;
}

.txtright {
  text-align: right !important;
  display: block;
}

.small {
  font-size: 80%;
}

.large {
  font-size: 120%;
}

.widthmax {
  width: 100%;
}

strong {
  font-weight: bold;
  font-size: 110%;
}

em, .red {
  color: rgb(var(--red));
}

.blue {
  color: rgb(var(--main-rgb));
}

.img {
  border-radius: var(--radius);
}

a {
  text-decoration: none;
  color: rgb(var(--main-rgb));
  transition: ease 0.5s;
}
a:hover {
  color: rgb(var(--main-rgb));
}
a img {
  transition: ease 0.5s;
}
.linkbtn {
  line-height: 0.1;
}

.linkbtn a {
  line-height: 1.2;
  display: inline-block;
  position: relative;
  padding: 0.75em 1.5em;
  margin-bottom: 0.25em;
  background-color: #FFF;
  color: #FFF !important;
  background-color: rgb(var(--text-rgb));
  border-radius: 100px;
  width: 360px;
  max-width: 75%;
}
.linkbtn a::before {
  position: absolute;
  top: 0;
  right: 1em;
  content: "";
  display: flex;
  align-items: center;
  background: url(../img/arr.svg) no-repeat center center;
  background-size: 1.2em;
  width: 1.2em;
  height: 100%;
}
@media (hover: hover) {
  .linkbtn a:hover {
    background-color: rgb(var(--main-rgb));
  }
  .linkbtn a:hover::before {
    animation: rotateAnimation 0.5s ease-in-out forwards;
  }
}

@keyframes rotateAnimation {
  from {
    transform: rotate(0deg) scale(1);
  }
  to {
    transform: rotate(360deg) scale(1.2);
  }
}
.arr {
  display: block;
  padding-left: 1.5em;
  position: relative;
  color: rgb(var(--text-rgb));
}
.arr::before {
  position: absolute;
  top: 0.45em;
  left: 0;
  content: "";
  display: block;
  background: rgb(var(--text-rgb)) url(../img/arr.svg) no-repeat center center;
  background-size: 1.2em;
  width: 1.2em;
  height: 1.2em;
  border-radius: 50%;
}
.arr small {
  color: rgb(var(--main-rgb));
  display: block;
  font-size: 0.8rem !important;
}

@media (hover: hover) {
  .arr:hover::before,
  li:has(a:hover) .arr::before {
    animation: rotateAnimation 0.5s ease-in-out forwards;
    background: rgb(var(--main-rgb)) url(../img/arr.svg) no-repeat center center;
  }
  li:has(a:hover) .arr {
    color: rgb(var(--main-rgb));
  }
}
a.pdf::after,
a.doc::after,
a.xls::after {
  display: inline-block;
  content: "";
  border-radius: 20px;
  font-size: 70%;
  padding: 3px 8px;
  line-height: 1;
  margin-left: 0.2em;
  background-color: #FFF;
  border: solid 1px #000;
}

a.pdf {
  position: relative;
}
a.pdf::after {
  content: "PDF";
  border-color: red;
  color: red;
}

a.doc {
  position: relative;
}
a.doc::after {
  content: "Word";
  border-color: blue;
  color: blue;
}

a.xls {
  position: relative;
}
a.xls::after {
  content: "Excel";
  border-color: green;
  color: green;
}

a.blank:not(a:has(img)) {
  position: relative;
}
a.blank:not(a:has(img))::after {
  content: "　";
  display: inline-block;
  margin: 0 5px;
  width: 14px;
  background-image: url("../img/blank.svg");
  background-repeat: no-repeat;
  background-size: 14px;
  background-position: center;
}

.chui {
  text-indent: -1em;
  padding-left: 1em;
}

#maincol li {
  margin-bottom: 0.5em;
}

ul.ul_default {
  list-style: none;
  margin: 0 0 1em;
  padding: 0 0 0 0em;
}
ul.ul_default li {
  margin: 0 0 1em;
  padding: 0 0 0 1.5em;
  position: relative;
}
ul.ul_default li:before {
  content: "";
  height: 1em;
  width: 1em;
  border-radius: var(--radius);
  background-color: rgb(var(--main-rgb));
  position: absolute;
  top: 0.15em;
  left: 0;
}

table.default {
  border-collapse: collapse;
  min-width: 50%;
  margin: 0 0 15px;
}
table.default th, table.default td {
  padding: 1em 1em;
  font-weight: normal;
  text-align: left;
}
table.default th {
  border-top: solid 1px rgba(var(--main-rgb), 1);
  font-weight: bold;
  color: rgb(var(--main-rgb));
}
table.default td {
  border-top: dotted 1px rgba(var(--text-rgb), 1);
}
table.default thead th {
  text-align: center;
}
@media (max-width: 1023px) {
  table.cellblock tr {
    display: block;
    margin-bottom: 3px;
  }
  table.cellblock th, table.cellblock td {
    display: block;
    padding: 0.5em;
  }
  table.cellblock.default td {
    border-top: dotted 0px rgba(var(--text-rgb), 1);
  }
  .scroll {
    overflow: auto;
    margin: 0 0 2em;
  }
  .scroll table {
    position: relative;
    width: auto;
  }
  .scroll th, .scroll td {
    white-space: nowrap;
  }
}
dl.dl_default div {
  margin: 0 0 1em 0em;
}
dl.dl_default dt {
  margin: 0 0 0.5em;
  padding: 0 0 0;
  position: relative;
  font-weight: bold;
  font-size: clamp(1.0555555556rem, 0.6051209772rem + 1.0570824524vw, 1.3333333333rem);
}
dl.dl_default dd {
  margin: 0 0 1em 2em;
}

/**/
.sub_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  list-style: none;
  margin: 0 0;
  padding: 0;
  gap: 1em;
  line-height: 1.5;
}
.sub_list li {
  margin: 0 0;
  padding: 0 0;
  position: relative;
  width: calc(50% - 0.5em);
}
@media (max-width: 1023px) {
  .sub_list li {
    width: 100%;
  }
}
.sub_list a {
  margin: 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 5%;
  gap: 1em;
  background-color: rgb(250, 250, 250);
  border-radius: var(--radius);
}
.sub_list a::after {
  content: "";
  display: block;
  background: rgb(var(--text-rgb)) url(../img/arr.svg) no-repeat center center;
  background-size: 1.2em;
  width: 1.2em;
  height: 1.2em;
  border-radius: 50%;
  flex-shrink: 0;
}
.sub_list a strong {
  font-size: 1.3rem;
  margin-right: auto;
}
.sub_list a small {
  color: rgb(var(--main-rgb));
  display: block;
  font-size: 0.8rem !important;
}
.sub_list a img {
  width: 30%;
  flex-shrink: 0;
  border-radius: var(--radius);
}
@media (hover: hover) {
  .sub_list a:hover::after {
    background: rgb(var(--main-rgb)) url(../img/arr.svg) no-repeat center center;
    animation: rotateAnimation 0.5s ease-in-out forwards;
  }
  .sub_list a:hover img {
    transform: scale(1.1);
  }
}

.work_list {
  flex-wrap: wrap;
}

@media (max-width: 1023px) {
  #sidecol .work_list {
    flex-wrap: nowrap;
  }
  #sidecol .work_list li {
    width: calc(50% - 0.5em);
  }
  #sidecol .work_list a {
    justify-content: center;
  }
  #sidecol .work_list a img {
    width: 60%;
  }
  #sidecol .work_list a strong {
    display: none;
  }
}

.person_sub_list {
  flex-wrap: nowrap;
}
.person_sub_list a img {
  border-radius: var(--radius);
  object-fit: cover;
  width: 30%;
  aspect-ratio: 4/5;
}
.person_sub_list li.to_index {
  width: 5em;
  flex-shrink: 0;
}
.person_sub_list li.to_index a {
  flex-direction: column;
  justify-content: center;
}
.person_sub_list li.to_index a::after {
  display: none;
}
.person_sub_list li.to_index a::before {
  content: "";
  height: 36px;
  width: 36px;
  background-image: radial-gradient(circle, rgb(var(--main-rgb)) 50%, transparent 50%);
  background-repeat: repeat;
  background-size: 12px 12px;
}
@media (max-width: 1023px) {
  .person_sub_list a {
    justify-content: center;
  }
  .person_sub_list a img {
    width: 60%;
  }
  .person_sub_list a strong {
    display: none;
  }
}

/*数字*/
.numbers_list {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  gap: 1em;
  justify-content: space-between;
  list-style: none;
}
.numbers_list li {
  background-color: #FFF;
  border-radius: 10px;
  margin: 0;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-direction: column;
  width: calc(50% - 1em);
}
@media (min-width: 1024px) {
  .numbers_list li {
    width: calc(33% - 1em);
  }
}
.numbers_list img {
  display: block;
  width: 70%;
}
@media (max-width: 1023px) {
  .numbers_list img {
    width: 90%;
    max-width: 180px;
  }
}
@media (min-width: 1024px) {
  .numbers_list li.col2 {
    padding: 40px 10px;
    width: calc(50% - 1em);
    flex-direction: row;
  }
  .numbers_list li.col2 img {
    width: 46%;
  }
}

.voice {
  margin: 30px 0;
}
@media (min-width: 1024px) {
  .voice {
    column-count: 2;
  }
  .voice div {
    break-inside: avoid;
  }
  .voice div:first-child {
    margin-top: -30px;
  }
}
.voice div {
  display: flex;
  align-items: flex-start;
  margin: 10px 0.5em 0px;
  padding: 0 0;
}
.voice dt {
  flex-shrink: 0;
  margin: 0px 1.5em 0 0;
}
@media (min-width: 1024px) {
  .voice dt {
    margin: 0px 1.5em 0;
  }
}
.voice dt img {
  display: block;
  width: 60px;
}
@media (min-width: 1024px) {
  .voice dt img {
    width: 100px;
  }
}
.voice dd {
  background-color: rgba(250, 250, 250, 0.9);
  padding: 2em;
  border-radius: 0 10px 10px 10px;
  margin: 2rem 0 0 0;
  position: relative;
}
.voice dd::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -1rem;
  width: 1rem;
  height: 1rem;
  background-color: rgba(250, 250, 250, 0.9);
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%);
}
@media (min-width: 1024px) {
  .voice div.rightbox dt {
    order: 2;
  }
  .voice div.rightbox dd {
    border-radius: 10px 0 10px 10px;
  }
  .voice div.rightbox dd::after {
    left: 100%;
    clip-path: polygon(0% 0%, 100% 0%, 0% 100%);
  }
}
.voice dd strong {
  color: rgb(var(--about-rgb));
  display: block;
  margin: 0 0 0.5em;
}

.recommend_box {
  position: relative;
  /*休日・退勤後の過ごし方*/
  /*向いている*/
  /*ここが好き*/
}
.recommend_box h2 {
  text-align: center;
  margin-bottom: 0 !important;
}
.recommend_box .recommend {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  margin: -1em 0 0;
  padding: 3em 3em 2em;
}
.recommend_box ul.offlist {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  list-style: none;
  padding: 3em 5% 2em;
  gap: 0em 10vw;
  justify-content: center;
  font-size: 120%;
}
.recommend_box ul.offlist li {
  color: rgb(var(--about-rgb));
  margin: 0;
  padding: 0;
}
.recommend_box .off {
  position: absolute;
  bottom: -3em;
  width: 40%;
  max-width: 180px;
}
@media (min-width: 1024px) {
  .recommend_box .off {
    max-width: 240px;
  }
}
.recommend_box .off.off01 {
  left: -2%;
}
.recommend_box .off.off02 {
  right: 0%;
}
.recommend_box ul.fitlist {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  list-style: none;
  padding: 3em 1em;
  gap: 1%;
  justify-content: center;
}
.recommend_box ul.fitlist li {
  margin: 0;
  padding: 0;
  text-align: center;
}
@media (max-width: 1023px) {
  .recommend_box ul.fitlist li {
    width: 48%;
  }
}
@media (min-width: 1024px) {
  .recommend_box ul.fitlist li {
    width: 24%;
  }
}
.recommend_box ul.fitlist img {
  width: 50%;
  margin: auto;
  display: block;
}
.recommend_box dl.kokosuki {
  text-align: center;
}
.recommend_box dl.kokosuki dt {
  font-size: clamp(1.7777777778rem, 1.0570824524rem + 1.6913319239vw, 2.2222222222rem);
  padding: 0 0 3rem;
  margin: 0 0 1rem;
  background: url(../img/mark.png) no-repeat bottom center;
  background-size: 2rem;
}
.recommend_box dl.kokosuki dd {
  margin: 0 0 1em;
}
.recommend_box dl.kokosuki dd.suki img {
  position: absolute;
  width: 50%;
  max-width: 180px;
}
@media (min-width: 1024px) {
  .recommend_box dl.kokosuki dd.suki img {
    max-width: 240px;
  }
}
.recommend_box dl.kokosuki dd.suki img.suki01 {
  top: 0;
  left: -20px;
}
.recommend_box dl.kokosuki dd.suki img.suki02 {
  bottom: -3em;
  right: -2em;
}

.about_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
  margin: 0;
  padding: 0;
}
.about_list li {
  margin: 0 0 0px;
  padding: 0;
  position: relative;
}
@media (max-width: 1023px) {
  .about_list li {
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .about_list li {
    width: 32%;
  }
}
.about_list a {
  margin: 0 0;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 5%;
  gap: 1em;
  background-color: rgba(250, 250, 250, 0.9);
}
.about_list a img {
  width: 50%;
}
@media (min-width: 1024px) {
  .about_list li a {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .about_list li a img {
    width: 80%;
  }
  .about_list li a:hover img {
    transform: scale(1.05);
  }
}

.work_main .main_text img {
  display: block;
  margin: auto;
  width: 80%;
  max-width: 350px;
}
.work_main .main_photo {
  position: relative;
}
.work_main .main_photo span {
  background: url(../../work/img/work.svg) no-repeat center center;
  background-size: 40%;
  display: block;
  width: 100%;
  height: 6em;
  text-align: center;
  vertical-align: bottom;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: rgb(var(--work-rgb));
}
@media (min-width: 1024px) {
  .work_main .main_text {
    width: 40%;
  }
  .work_main .main_photo {
    flex-shrink: 0;
    width: 60%;
    margin: 0 0;
  }
}

.work_business h4 {
  font-weight: bold;
  color: rgb(var(--work-rgb));
}
.person_list {
  margin: 0 0 50px;
  padding: 0 0 0;
  list-style: none;
}
.person_list:not(.swiper-wrapper) {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 30px;
}
.person_list li {
  margin: 0 0 0px;
  padding: 0 0;
  position: relative;
}
@media (max-width: 1023px) {
  .person_list li {
    width: calc(50% - 15px);
  }
}
@media (min-width: 1024px) {
  .person_list li {
    width: calc(33% - 30px);
  }
}
.person_list a {
  margin: 0 0;
  display: block;
  height: 100%;
  padding: 0;
  gap: 1em;
}
.person_list p {
  position: relative;
  margin: 0;
}
.person_list .list_image {
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
  line-height: 0;
}
.person_list .list_image img {
  object-fit: cover;
  width: 100%;
  aspect-ratio: 3/4;
}
.person_list .staff_text {
  position: absolute;
  bottom: 5%;
  left: 5%;
}
.person_list .staff_text .grd {
  margin-top: 5%;
}
.person_list a strong.arr {
  color: rgb(var(--main-rgb));
  padding: 0 1em;
}
.person_list a strong.arr::before {
  position: absolute;
  top: 0.5em;
  left: auto;
  right: 0.5em;
}
.person_list .staff_list_name {
  font-size: 150%;
}
@media (min-width: 1024px) {
  .person_list a:hover .list_image img {
    transform: scale(1.05);
  }
}

.profile h2 span {
  margin-bottom: 0.5em;
}
.profile p {
  color: rgb(var(--main-rgb));
  text-align: right;
}
.profile p .pro_name {
  font-size: 200%;
  letter-spacing: 5px;
}
.profile .main_photo {
  position: relative;
  line-height: 0.1;
}
.profile .main_photo::after {
  position: absolute;
  bottom: -25%;
  content: "";
  width: 100%;
  height: 25%;
  background: url(../../person/img/interview.svg) no-repeat center center;
  background-size: 50%;
  display: block;
}
@media (max-width: 1023px) {
  .profile {
    display: flex;
    flex-direction: column;
  }
  .profile .profile_shosai {
    margin: -5rem 0 0 1rem;
    order: 2;
    z-index: 10;
    position: relative;
  }
  .profile .profile_shosai h2 {
    margin: 0 !important;
  }
}
@media (min-width: 1024px) {
  .profile .profile_shosai {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .profile .main_photo {
    flex-shrink: 0;
    width: 60%;
    margin: 0 0;
  }
}

.qa_interview {
  counter-reset: q_num;
}
.qa_interview div {
  margin: 0 0 60px;
}
.qa_interview div h3 {
  background-image: none !important;
  margin-top: 0em !important;
  padding-left: 0 !important;
  position: relative;
  display: flex;
  align-items: center;
  line-height: 1;
}
.qa_interview div h3::before {
  counter-increment: q_num;
  content: "Q" counter(q_num);
  display: inline-block;
  padding: 0;
  margin: 0 0.25em 0 0;
  background: var(--person-grd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Lucida Sans Unicode", Arial;
}
@media (min-width: 1024px) {
  .qa_interview div.flex_box {
    gap: 5%;
    align-items: center;
  }
  .qa_interview p.photoarea {
    margin: 0;
  }
}

.schedule {
  margin: 30px 0 0;
}
@media (min-width: 1024px) {
  .schedule {
    column-count: 2;
  }
}
.schedule div {
  position: relative;
  break-inside: avoid;
  padding: 0 1em 0 0;
}
.schedule div::before {
  position: absolute;
  content: "";
  top: 0.4rem;
  left: -5px;
  width: 11px;
  height: 11px;
  display: inline-block;
  border-radius: 50%;
  background-color: rgb(var(--person-rgb));
}
.schedule div:not(:last-child)::after {
  display: block;
  position: absolute;
  top: 0.5rem;
  left: 0;
  content: "";
  width: 1px;
  height: 100%;
  border-left: solid 1px rgb(var(--person-rgb));
}
.schedule dt {
  margin: 0 0 0.5em;
  padding: 0em 0em 0 1rem;
  font-weight: bold;
  display: flex;
}
.schedule dt span {
  color: rgb(var(--main-rgb));
  display: inline-block;
  width: 4rem;
  flex-shrink: 0;
}
.schedule dd {
  margin: 0em 0 0em;
  padding: 0 0 1rem 5rem;
  font-size: 0.9em;
}

.dayoff {
  background-color: #FFF;
  padding: 5%;
}
@media (min-width: 1024px) {
  .dayoff .photoarea {
    width: 40% !important;
  }
}

.recruit_main .main_photo {
  position: relative;
}
.recruit_main .main_photo::after {
  content: "";
  width: 100%;
  height: 100px;
  background: url(../../recruit/img/recruit.svg) no-repeat center center;
  background-size: 50%;
  display: block;
}
.recruit_main .main_text img {
  display: block;
  margin: auto;
  width: 80%;
  max-width: 350px;
}
@media (max-width: 1023px) {
  .recruit_main {
    display: flex;
    flex-direction: column;
  }
}
@media (min-width: 1024px) {
  .recruit_main .main_text {
    width: 40%;
  }
  .recruit_main .main_text img {
    width: 300px;
  }
  .recruit_main .main_photo {
    flex-shrink: 0;
    width: 60%;
    margin: 0 0;
  }
}

.boshuyoko {
  background-color: rgba(250, 250, 250, 0.9);
  border-radius: var(--radius);
  padding: 5%;
}
.boshuyoko table {
  width: 100%;
}

.senko_flow {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  counter-reset: item 0;
  list-style: none;
  width: 100%;
  max-width: 960px;
}
.senko_flow li {
  background-color: rgba(250, 250, 250, 0.9);
  border-radius: var(--radius);
  margin: 0 0 50px !important;
  padding: 2em;
  position: relative;
  display: flex;
  align-items: center;
  gap: 2em;
}
.senko_flow li::before {
  counter-increment: item 1;
  content: "STEP " counter(item);
  font-size: 1rem;
  position: absolute;
  width: 20%;
  max-width: 150px;
  text-align: center;
  top: 8%;
  left: 2em;
  flex-shrink: 0;
  font-weight: bold;
  color: rgb(var(--main-rgb));
}
.senko_flow li:not(:last-child):after {
  content: "";
  display: block;
  justify-content: center;
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 20px;
  height: 15px;
  background-color: rgb(var(--recruit-rgb));
  clip-path: polygon(50% 15px, 0% 0%, 20px 0%);
}
.senko_flow img {
  width: 30%;
  max-width: 150px;
  flex-shrink: 0;
}
.senko_flow span {
  flex-grow: 2;
}
.senko_flow strong {
  display: block;
  font-size: 120%;
}

/**/
.iframe {
  margin: 30px auto;
}
.iframe iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  max-width: 720px;
  display: block;
  margin: auto;
}

@media (max-width: 1023px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
  .flex_photo .photoarea img {
    width: 90%;
    max-width: 540px;
    margin: auto;
    display: block;
  }
}
@media (min-width: 1024px) {
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
  .flex_box {
    display: flex;
    justify-content: space-around;
    gap: 2%;
  }
  .flex_photo {
    display: flex;
    justify-content: space-between;
    gap: 5%;
  }
  .flex_photo .photoarea {
    width: 50%;
    flex-shrink: 0;
  }
  .image_left .textarea {
    order: 2;
  }
  .image_left .photoarea {
    order: 1;
  }
}
@media print {
  footer, #overlay, #menu_btn, #yoyaku_link_btn, #sidecol, #topicpath {
    display: none;
  }
  header {
    position: relative !important;
  }
}

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