@charset "utf-8";
/*
  文字色 #FFF;
  文字色 #333;
  強調色(青) #1A5096;
  強調色(赤) #B40707;
  背景色 #2C578F;
*/

html, body {
  margin: 0;
  font-size: 1rem;
}

.sp {
  display: none;
}

.pc {
  display: block;
}

#page_top {
  width: 4rem;
  height: 4rem;
  position: fixed;
  right: -5rem;
  bottom: 7.5rem;
  opacity: 1;
}

#page_top IMG {
  width: 4rem;
  height: 4rem;
}

@media (max-width: 480px) { /* 480px以下 */
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
}

.all_wrap {
  display: flex;
  flex-direction: column;
  margin: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background: #FFF;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

HEADER {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 1rem 2rem;
  margin: 0;
  width: 100%;
  min-height: 4rem;
  min-height: 6rem;
  height: 4rem;
  height: 6rem;

  box-sizing: border-box;
  z-index: 99999;
  font-size: 0;
}

HEADER H1 {
  margin: 0;
}

HEADER H1 IMG {
  width: auto;
  height: 3rem;
  vertical-align: top;
}

HEADER NAV UL {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  margin: 0;
  padding-inline-start: 0;
}

HEADER NAV UL LI {
  margin: 0 0.5rem;
  list-style-type: none;
  font-size: 1rem;
  font-weight: 700;
  line-height: 2rem;
  line-height: 4rem;
  color: #1A5096;
}

HEADER NAV UL LI A {
  position: relative;
  text-decoration: none;
  color: #1A5096;
  display: inline-block;
}

HEADER NAV UL LI A::after {
  position: absolute;
  content: '';
  top: 3rem;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #1A5096;
  opacity: 0;
  transition: .3s;
}

HEADER NAV UL LI A:hover::after {
  opacity: 1;
  width: 100%;
}

HEADER NAV UL LI.current {
  position: relative;
}

HEADER NAV UL LI.current::after {
  position: absolute;
  content: '';
  top: 1.75rem;
  top: 2.75rem;

  left: calc(50% - 0.375rem);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 0.375rem solid transparent;
  border-left: 0.375rem solid transparent;
  border-bottom: 0.625rem solid #1A5096;
  border-top: 0;
}

@media (max-width: 551px) { /* 767px以下 */
  HEADER {
    flex-direction: column;
    justify-content: space-between;
    justify-content: start;
    height: 5rem;
    min-height: 5rem;
    padding: 1.5rem 1rem 0.5rem 1rem;
    padding: 1rem 10vw;
  }
  HEADER H1 {
  }
  HEADER H1 IMG {
    height: 2rem;
    height: 1.5rem;
  }
  HEADER NAV UL {
    justify-content: center;
    justify-content: space-between;
  }
  HEADER NAV UL LI {
    margin: 0.25rem 0.25rem 0;
  }
  HEADER NAV UL LI:first-child {
    margin: 0.25rem 0.25rem 0 0;
  }
  HEADER NAV UL LI {
    font-size: 0.8rem;
    line-height: 1.6rem;
    line-height: 2.0rem;
  }
  HEADER NAV UL LI.current::after {
    top: 1.4rem;
    top: 1.6rem;
    left: calc(50% - 0.3rem);
    border-right: 0.3rem solid transparent;
    border-left: 0.3rem solid transparent;
    border-bottom: 0.5rem solid #1A5096;
  }
  HEADER NAV UL LI A::after {
    top: 1.6rem;
    top: 1.8rem;
  }
}


/** メイン **/
MAIN {
  display: flex;
  flex: 1;
  margin: 0;
  padding: 0;
  flex-direction: column;
  width: 64vw;
  margin: 0 auto;
}

MAIN DIV.top_image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  aspect-ratio: 5 / 1;
  color: white;
  font-size: 60px;
  font-weight: bold;
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-text-stroke: 3px #00008b;
  paint-order: stroke;
}

MAIN DIV.top_profile {
  background-image: url(../img/top_profile.jpg);
}

MAIN DIV.top_develop {
  background-image: url(../img/top_develop.jpg);
}

MAIN DIV.top_recruit {
  width: 100%;
  aspect-ratio: 5 / 1;
}

MAIN DIV.top_recruit UL {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 5 / 1;
  padding: 0;
  margin: 0;
}

MAIN DIV.top_recruit UL LI {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  aspect-ratio: 5 / 1;
  padding: 0;
  margin: 0;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  animation-name: bg-change;
  animation-duration: 30s;   /* 5s×5枚 */
  animation-timing-function: linear;
  animation-delay: 0s;
  animation-iteration-count: infinite;
}

MAIN DIV.top_recruit UL LI:nth-child(1) {
  background-image: url(../img/top_recruit01.jpg);
  animation-delay: 0s;
}

MAIN DIV.top_recruit UL LI:nth-child(2) {
  background-image: url(../img/top_recruit02.jpg);
  animation-delay: 5s;
}

MAIN DIV.top_recruit UL LI:nth-child(3) {
  background-image: url(../img/top_recruit03.jpg);
  animation-delay: 10s;
}

MAIN DIV.top_recruit UL LI:nth-child(4) {
  background-image: url(../img/top_recruit04.jpg);
  animation-delay: 15s;
}

MAIN DIV.top_recruit UL LI:nth-child(5) {
  background-image: url(../img/top_recruit05.jpg);
  animation-delay: 20s;
}

@keyframes bg-change {
  0%   { opacity: 0;}
  3%   { opacity: 1;}
  33%  { opacity: 1;}
  36%  { opacity: 0;}
  100% { opacity: 0;}
}

MAIN DIV.top_security {
  background-image: url(../img/top_security.jpg);
}

MAIN DIV.title {
  margin-top: 1rem;
  width: 100%;
  height: 1rem;
  border-bottom: 1.25rem solid #1A5096;
  border-image: linear-gradient(to right, #1A5096, #1A5096, #FFF) 1;
}

MAIN DIV.title H2 {
  margin: 0;
  padding-left: 1rem;
}

MAIN DIV.title H2 IMG {
  height: 1.5rem;
}

MAIN DIV.title H2 SPAN {
/* del
  display: none;
 */
/* add */
  display: flex;
  justify-content: left;
/*  align-items: left; */
  width: 100%;
  aspect-ratio: 5 / 1;
  color: white;
  font-size: 22px;
/*  font-weight: bold;*/
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-text-stroke: 3px #1A5096;
  paint-order: stroke;
}

SVG {
  width: 100%;
  height: 2rem;
  overflow: visible;
}

TEXT.svg1 {
  font-size: 1.5rem;
  fill: #FFF;
  stroke: #1A5096;
  stroke-width: 4;
  stroke-linejoin: round;
}

TEXT.svg2 {
  font-size: 1.5rem;
  fill: #FFF;
}




@media (max-width: 1199px) { /* 1199px以下 */
  MAIN {
    width: calc(100% - 2rem);
    width: 80vw;
  }
  MAIN DIV.title H2 {
    margin: 0;
    padding-left: 0.5rem;
  }
  MAIN DIV.title H2 IMG {
    height: 1.5rem;
  }

  SVG TEXT.svg1 {
    font-size: 1.25rem;
    fill: #FFF;
    stroke: #1A5096;
    stroke-width: 3;
    stroke-linejoin: round;
  }
  SVG TEXT.svg2 {
    font-size: 1.25rem;
    fill: #FFF;
  }
}

@media (max-width: 480px) { /* 480px以下 */
  MAIN {
    width: 90vw;
  }
  MAIN DIV.title {
    margin-top: 1rem;
    width: 100%;
    height: 0.75rem;
    height: 1rem;
    border-bottom: 1rem solid #1A5096;
    border-image: linear-gradient(to right, #1A5096, #1A5096, #FFF) 1;
  }
  
  MAIN DIV.title H2 {
    margin: 0;
    padding-left: 0.75rem;
  }
  
  MAIN DIV.title H2 IMG {
    height: 1.25rem;
  }

  MAIN DIV.top_image {
    font-size: 20px;
  }
}

MAIN SECTION {
  margin-top: 1.5rem;
}

/* 共通 */
MAIN SECTION DIV.heading {
  position: relative;
  margin-top: 2rem;
  font-size: 1rem;
  line-height: 1.5rem;
  padding-left: 1rem;
  color: #1A5096;
  font-weight: 500;
}

MAIN SECTION DIV.heading:nth-of-type(1) {
  margin-top: 0;
}


MAIN SECTION DIV.heading::before {
  position: absolute;
  content: '';
  top: 0.25rem;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 0.5rem solid transparent;
  border-bottom: 0.5rem solid transparent;
  border-left: 0.8rem solid #1A5096;
  border-right: 0;
}

MAIN SECTION.recruit DIV#qa DIV.heading {
  font-size: 1.5rem;
}

MAIN SECTION  P {
  margin: 0.5rem 0;
  line-height: 1.5rem;
}

MAIN SECTION UL {
  margin: 0.5rem 0;
  padding-left: 2rem;
}

MAIN SECTION UL LI {
  list-style-type: square;
}

@media (max-width: 480px) { /* 480px以下 */
  MAIN SECTION DIV.heading {
    font-size: 0.9rem;
    line-height: 1.35rem;
  }
  MAIN SECTION DIV.heading::before {
    position: absolute;
    content: '';
    top: 0.3rem;
    left: -1rem;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 0.45rem solid transparent;
    border-bottom: 0.45rem solid transparent;
    border-left: 0.72rem solid #1A5096;
    border-right: 0;
  }
  MAIN SECTION.recruit DIV#qa DIV.heading {
    font-size: 1.5rem;
  }
  MAIN SECTION P {
    font-size: 0.9rem;
    line-height: 1.35rem;
  }
  MAIN SECTION UL LI {
    font-size: 0.9rem;
  }
}

/* 会社概要  */
MAIN SECTION.greetings {
  padding: 0 1rem;
}

MAIN SECTION.greetings P {
  padding: 0;
  margin: 0 0 1rem 0;
  text-align: justify;
}

MAIN SECTION.greetings P.signature {
  text-align: right;
}

MAIN SECTION.company DIV.map {
  margin-top: 10px;
  width: 100%;
}

MAIN SECTION.company DIV.map iframe {
  width: 100%;
}

MAIN SECTION.greetings P.signature {
  font-family: HG正楷書体-PRO;
  font-size: 18px;
  font-weight: bold;
}

table {
  border-collapse: collapse;
  width: 100%;
}
.tb01 th,
.tb01 td {
  padding: 10px;
  border: 0;
  border-bottom: solid 1px #333;
  text-align:center;
  box-sizing:border-box;
}
.tb01 th {
  background: #DDE3E9;
  color: #1A5096;
  width: 30%;
}

.tb01 td {
  text-align: left;
}

@media (max-width: 480px) { /* 480px以下 */
  .tb01 {
    width: 100%;
  }
  table.tb01 th,
  table.tb01 td {
    display: block;
    width: 100%;
    border-bottom:none;
  }
  .tb01 tr:last-child{
    border-bottom: solid 1px #ccc;
  }

  MAIN SECTION.greetings {
    padding: 0;
  }
}

/* 開発実績  */
MAIN SECTION.develop DIV.sub_title {
  margin-top: 2rem;
  padding: 0 0 0.25rem 2rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: #1a5096;
  border-bottom: solid 2px #1A5096;
}

MAIN SECTION.develop DIV.work {
    margin-top: 0;
}

MAIN SECTION.develop DIV.work,
MAIN SECTION.develop DIV.language,
MAIN SECTION.develop DIV.database {
  position: relative;
}

MAIN SECTION.develop DIV.work::before,
MAIN SECTION.develop DIV.language::before,
MAIN SECTION.develop DIV.database::before {
  position: absolute;
  content: '';
  background-size: contain;
  background-repeat: no-repeat;
  top: 0.25rem;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
}

MAIN SECTION.develop DIV.work::before {
  background-image: url(../img/ico_work.svg);
}

MAIN SECTION.develop DIV.language::before {
  background-image: url(../img/ico_language.svg);
}

MAIN SECTION.develop DIV.database::before {
  background-image: url(../img/ico_database.svg);
}

MAIN SECTION.develop UL {
  column-count: 2;
}

@media (max-width: 480px) { /* 480px以下 */
  MAIN SECTION.develop UL {
    column-count: 1;
  }
}


/* 採用情報  */
MAIN SECTION.recruit A {
  color: #333;
  font-weight: 700;
  text-decoration: none;
}

MAIN SECTION.recruit A::before,
MAIN SECTION.recruit A::after {
  content: &nbsp;
}

MAIN SECTION.recruit DIV.navi {
  width: 100%;
}

MAIN SECTION.recruit DIV.navi UL {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  width: 90%;
  padding: 0 5%;
  margin: 0;
}

MAIN SECTION.recruit DIV.navi UL LI {
  display: flex;
  justify-content: space-around;
  width: 18%;
  list-style-type: none;
  color: #FFF;
  font-feature-settings: "palt";
  font-size: 1.2rem;
  line-height: 1.2rem;
}

MAIN SECTION.recruit DIV.navi UL LI A {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  box-shadow: 0 0.25rem 0.5rem 0 rgba(0, 0, 0, 0.25);
  background-color: #8DA8CB;
  background-size: contain;
  background-repeat: no-repeat;
  color: #FFF;
  text-decoration: none;
  text-shadow:
       2px  2px 1px #1a5096,
      -2px  2px 1px #1a5096,
       2px -2px 1px #1a5096,
      -2px -2px 1px #1a5096,
       2px  0px 1px #1a5096,
       0px  2px 1px #1a5096,
      -2px  0px 1px #1a5096,
       0px -2px 1px #1a5096;
}

MAIN SECTION.recruit DIV.navi UL LI A:hover {
  background-color: #1A5096;
}

MAIN SECTION.recruit DIV.navi UL LI A.recruitment  {
  background-image: url(../img/bg_recruitment.svg);
}

MAIN SECTION.recruit DIV.navi UL LI A.training  {
  background-image: url(../img/bg_training.svg);
}

MAIN SECTION.recruit DIV.navi UL LI A.benefits  {
  background-image: url(../img/bg_benefits.svg);
}

MAIN SECTION.recruit DIV.navi UL LI A.from_employee  {
  background-image: url(../img/bg_from_employee.svg);
}

MAIN SECTION.recruit DIV.navi UL LI A.qa  {
  background-image: url(../img/bg_qa.svg);
}

MAIN SECTION.recruit DIV.sub_title {
  margin-top: 2rem;
  padding: 0 0 0.25rem 2rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: #1a5096;
  border-bottom: solid 2px #1A5096;
}

MAIN SECTION.recruit DIV.recruitment,
MAIN SECTION.recruit DIV.training,
MAIN SECTION.recruit DIV.benefits,
MAIN SECTION.recruit DIV.from_employee,
MAIN SECTION.recruit DIV.qa {
  position: relative;
}

MAIN SECTION.recruit DIV.recruitment::before,
MAIN SECTION.recruit DIV.training::before,
MAIN SECTION.recruit DIV.benefits::before,
MAIN SECTION.recruit DIV.from_employee::before,
MAIN SECTION.recruit DIV.qa::before {
  position: absolute;
  content: '';
  background-size: contain;
  background-repeat: no-repeat;
  top: 0.25rem;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
}

MAIN SECTION.recruit DIV.recruitment::before {
  background-image: url(../img/ico_recruitment.svg);
}

MAIN SECTION.recruit DIV.training::before {
  background-image: url(../img/ico_training.svg);
}

MAIN SECTION.recruit DIV.benefits::before {
  background-image: url(../img/ico_benefits.svg);
}

MAIN SECTION.recruit DIV.from_employee::before {
  background-image: url(../img/ico_from_employee.svg);
}

MAIN SECTION.recruit DIV.qa::before {
  background-image: url(../img/ico_qa.svg);
}

MAIN SECTION.recruit DIV#recruitment TABLE {
  margin: 1rem 0;
}

MAIN SECTION.recruit DIV#recruitment TABLE TH,
MAIN SECTION.recruit DIV#recruitment TABLE TD {
  padding: 10px;
  border: 0;
  border-bottom: solid 1px #333;
  text-align:center;
  box-sizing: border-box;
}

MAIN SECTION.recruit DIV#recruitment TABLE TH {
  width: 20%;
  vertical-align: top;
  color: #1A5096;
  background-color: #DDE3E9;
  border-right: solid 1px #333;
}

MAIN SECTION.recruit DIV#recruitment TABLE TD {
  text-align: left;
}

MAIN SECTION.recruit DIV#recruitment TABLE TD.item {
  width: 25%;
  text-align: center;
  border-right: solid 1px #333;
}

MAIN SECTION.recruit DIV#benefits DIV.list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

MAIN SECTION.recruit DIV#benefits DIV.list DIV {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 14vw;
  height: 14vw;
  box-sizing: border-box;
  border: solid 1px #1A5096;
  border-radius: 7vw;
  margin: 2vw 1vw;
  font-weight: 700;
}

MAIN SECTION.recruit DIV#benefits DIV.list DIV.insurance,
MAIN SECTION.recruit DIV#benefits DIV.list DIV.severance,
MAIN SECTION.recruit DIV#benefits DIV.list DIV.examination,
MAIN SECTION.recruit DIV#benefits DIV.list DIV.holiday,
MAIN SECTION.recruit DIV#benefits DIV.list DIV.vacation,
MAIN SECTION.recruit DIV#benefits DIV.list DIV.child,
MAIN SECTION.recruit DIV#benefits DIV.list DIV.care,
MAIN SECTION.recruit DIV#benefits DIV.list DIV.license,
MAIN SECTION.recruit DIV#benefits DIV.list DIV.event {
  background-color: rgba(255,255,255, 0.6);
  background-blend-mode: lighten;
  background-size: contain;
  background-repeat: no-repeat;
}

MAIN SECTION.recruit DIV#benefits DIV.list DIV.insurance {
  background-image: url(../img/bg_insurance.jpg);
}

MAIN SECTION.recruit DIV#benefits DIV.list DIV.severance {
  background-image: url(../img/bg_severance.jpg);
}

MAIN SECTION.recruit DIV#benefits DIV.list DIV.examination {
  background-image: url(../img/bg_examination.jpg);
}

MAIN SECTION.recruit DIV#benefits DIV.list DIV.holiday {
  background-image: url(../img/bg_holiday.jpg);
}

MAIN SECTION.recruit DIV#benefits DIV.list DIV.vacation {
  background-image: url(../img/bg_vacation.jpg);
}

MAIN SECTION.recruit DIV#benefits DIV.list DIV.child {
  background-image: url(../img/bg_child.jpg);
}

MAIN SECTION.recruit DIV#benefits DIV.list DIV.care {
  background-image: url(../img/bg_care.jpg);
}

MAIN SECTION.recruit DIV#benefits DIV.list DIV.license {
  background-image: url(../img/bg_license.jpg);
}

MAIN SECTION.recruit DIV#benefits DIV.list DIV.event {
  background-image: url(../img/bg_event.jpg);
}


MAIN SECTION.recruit DIV#from_employee DIV.employee {
  display: flex;
  width: 100%;
  margin: 1rem 0;
}

MAIN SECTION.recruit DIV#from_employee DIV.employee P {
  color: #1A5096;
  font-weight: 700;
}

MAIN SECTION.recruit DIV#from_employee DIV.employee_img {
  text-align: center;
  margin-right: 1rem;
  width: 14%;
}

MAIN SECTION.recruit DIV#from_employee DIV.employee_word {
  width: 86%;
}

MAIN SECTION.recruit DIV#qa DIV.question,
MAIN SECTION.recruit DIV#qa DIV.answer {
  display: block;
  position: relative;
  margin: 1rem 10rem 1rem 0;
  padding: 1rem 2rem;
  background-color: #8DA8CB;
  color: #FFF;
  border: 0;
  border-radius: 2rem;
  font-weight: 700;
}

MAIN SECTION.recruit DIV#qa DIV.answer {
  margin: 1rem 0 2rem 10rem;
  background-color: #CCC;
  color: #1A5096;
  font-weight: 500;
}

MAIN SECTION.recruit DIV#qa DIV.question::after {
  content: "";
  position: absolute;
  bottom: -2.5rem;
  left: 6rem;
  margin-left: -3rem;
  border: 1.5rem solid transparent;
  border-top: 1.5rem solid #8DA8CB;
  z-index: 0;
}

MAIN SECTION.recruit DIV#qa DIV.answer::after {
  content: "";
  position: absolute;
  bottom: -2.5rem;
  right: 3rem;
  margin-left: -3rem;
  border: 1.5rem solid transparent;
  border-top: 1.5rem solid #8DA8CB;
  z-index: 0;
}

MAIN SECTION.recruit DIV#qa DIV.answer::after {
  border-top: 1.5rem solid #CCC;
}





@media (max-width: 1199px) { /* 1199px以下 */
  MAIN SECTION.recruit DIV.sub_title {
    padding: 0 0 0.25rem 1.5rem;
    font-size: 1rem;
  }
  MAIN SECTION.recruit DIV.recruitment::before,
  MAIN SECTION.recruit DIV.training::before,
  MAIN SECTION.recruit DIV.benefits::before,
  MAIN SECTION.recruit DIV.from_employee::before,
  MAIN SECTION.recruit DIV.qa::before {
    top: 0.2rem;
    left: 0;
    width: 1.25rem;
    height: 1.25rem;
  }

  MAIN SECTION.recruit DIV#benefits DIV.list DIV {
    width: 18vw;
    height: 18vw;
    border-radius: 9vw;
  }
}

@media (max-width: 767px) {
  MAIN SECTION.recruit DIV.navi UL {
    width: 100%;
    padding: 0;
  }
  MAIN SECTION.recruit DIV.navi UL LI {
    font-size: 0.9rem;
    line-height: 1rem;
  }
  MAIN SECTION.recruit DIV#benefits DIV.list DIV {
    width: 24vw;
    height: 24vw;
    border-radius: 12vw;
    margin: 2vw 1.3vw;
  }
}

@media (max-width: 480px) { /* 480px以下 */
  MAIN SECTION.recruit DIV#recruitment TABLE {
    width: 100%;
  }
  MAIN SECTION.recruit DIV#recruitment TABLE TR {
    display: block;
    width: 100%;
  }
  MAIN SECTION.recruit DIV#recruitment TABLE TH {
    display: block;
    width: 100%;
    border: none;
  }
  MAIN SECTION.recruit DIV#recruitment TABLE TD {
    display: table-cell;
    width: 55vw;
    border-bottom: solid 1px #333;
  }
  MAIN SECTION.recruit DIV#recruitment TABLE TD.item {
    width: 35vw;
  }
  MAIN SECTION.recruit DIV#benefits DIV.list DIV {
    width: 43vw;
    height: 43vw;
    border-radius: 21.5vw;
    margin: 3vw 1vw;
  }
  MAIN SECTION.recruit DIV#qa DIV.question {
    margin: 2rem 0;
    margin-right: 5rem;
  }
  MAIN SECTION.recruit DIV#qa DIV.answer {
    margin: 2rem 0;
    margin-left: 5rem;
  }
  MAIN SECTION.recruit DIV#from_employee DIV.employee_img {
    width: 22%;
  }
  
  MAIN SECTION.recruit DIV#from_employee DIV.employee_word {
    width: 78%;
  }

}

/* セキュリティ  */
MAIN SECTION.security DIV.overview {
  padding: 1rem;
  color: #1A5096;
}

MAIN SECTION.security DIV.index {
  font-weight: 500;
  border-bottom: solid 1px #1A5096;
}

MAIN SECTION.security P {
  padding: 1rem;
  margin: 0;
}

MAIN SECTION.security UL,
MAIN SECTION.security OL {
  margin: 0;
  padding: 0 1rem 1rem 2.5rem;
}

@media (max-width: 1199px) { /* 1199px以下 */
}

@media (max-width: 480px) { /* 480px以下 */
  MAIN SECTION {
    margin-top: 1.0rem;
    font-size: 0.9rem;
  }
  MAIN SECTION.recruit .tab_item {
    height: 1.7rem;
    font-size: 0.85rem;
    line-height: 1.7rem;
  }
}


/** フッタ **/
FOOTER {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  margin-top: 2rem;
  padding: 1rem 0 1rem;
  background-color: #2C578F;
}

FOOTER P {
  width: 100%;
  text-align: center;
  color: #FFF;
  font-size: 0.8rem;
  font-size: 0.75rem;
  margin: 0 auto;
}

FOOTER P:first-child {
  font-size: 0.8rem;
}

FOOTER P A {
  color: #FFF;
}

FOOTER P A::before,
FOOTER P A::after {
  content: &nbsp;
}

