@charset "UTF-8";
:root {
  --color_text: #000;
  --color_link: #001050;
  --color_hover: #002cda;
  --color_career-link: #0032ff;
  --color_occupation-small: #fff;
  --background-color_main: #fff;
  --background-color_message: #fff;
  --background-color_aisatsu: #fe0;
  --background-color_btn-apply: #fe0;
  --background-color_btn-apply_small: #fff;
  --border-color_btn-apply: #000;
  --background-image_slide-pc-1: url('../images/title_bg1.jpg');
  --background-image_slide-pc-2: url('../images/title_bg2.jpg');
  --background-image_slide-pc-3: url('../images/title_bg3.jpg');
  --background-image_slide-sp-1: url('../images/title_bg1_sp.jpg');
  --background-image_slide-sp-2: url('../images/title_bg2_sp.jpg');
  --background-image_slide-sp-3: url('../images/title_bg3_sp.jpg');
  /* occupation */
  --border-color_occupation: #000;
  --background-color_occupation-1: #ff8ab1; /* Hue: 340 */
  --background-color_occupation-2: #8b52ff; /*  -70 (260) */
  --background-color_occupation-3: #00bfe6; /* -140 (190) */
  --background-color_occupation-4: #70c270; /* -210 (120) */
  --background-color_occupation-5: #f0d342; /* -280 ( 50) */
  --background-color_occupation-career: #e48696; /* -350 (350) */
}

html {
  font-size: 62.5%;
  width: 100%;
}
body {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  position: relative;
  right: 0;
  width: 100%;
  color: var(--color_text);
  background-color: var(--background-color_main);
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "halt";
}
html, body {
  min-width: 100%;
  height: 100%;
}
a {
  text-decoration: none;
  color: var(--color_text);
}
p a {
  transition: all .25s;
  text-decoration: underline;
  color: var(--color_link);
}
p a:hover {
  text-decoration: none;
  color: var(--color_hover);
}
.lh15 {
  line-height: 1;
}
.mb31 {
  font-family: 'Midashi Go MB31', sans-serif;
}
.pt20 {
  font-size: 2rem;
}
h1, h2, h3, h4, h5, h6, div, p, ul, li {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2;
  margin: 0;
  padding: 0;
}
ul, li {
  list-style: none;
}
ul.disc{padding-bottom: 0.75em;}
ul.disc li{
  list-style: disc;
  margin-left: 1em;
}
.pc {
  display: block !important;
}
.sp {
  display: none !important;
}
@media (max-width:480px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  br:not(.br) {
    display: none;
  }
}
.back {
  font-family: 'Midashi Go MB31', sans-serif;
  font-size: 2rem;
  display: block;
  width: 200px;
  margin: 40px auto;
  text-align: center;
}
.btn-apply {
  font-family: 'Midashi Go MB31', sans-serif;
  font-size: 2rem;
  line-height: 1;
  display: block;
  overflow: hidden;
  box-sizing: border-box;
  width: 100%;
  max-width: 320px;
  margin: 2em auto;
  transition: all .25s;
  text-align: center;
  border: 2px solid var(--border-color_btn-apply);
  border-radius: 12px;
  background-color: var(--background-color_btn-apply);
}
.btn-apply:hover {
  opacity: .5;
}
.btn-apply i {
  font-size: .75em;
  margin-left: .25em;
  vertical-align: top;
}
.btn-apply svg, svg.svg-inline--fa.fa-w-16 {
  width: .75em;
  height: .75em;
  margin-left: .25em;
  margin-right: .25em;
  vertical-align: text-top;
}
.btn-apply > span {
  display: block;
  padding: 20px;
}
.btn-apply > small {
  font-size: 14px;
  display: block;
  padding: 10px;
  background-color: var(--background-color_btn-apply_small);
}
.header_logo {
  display: flex;
  align-items: center;
  margin: 16px;
}
.header_logo li {
  margin-right: 20px;
}


main.index {
  position: relative;
  margin-bottom: 40px;
}
.bg, .bg_image {
  position: absolute;
  width: 100%;
  z-index: 0;
  left: 0;
  top: 0;
}
.bg_image {
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  animation: fade 15s 0s infinite;
}
.bg_image:nth-of-type(2) {
  animation-delay: 5s;
}
.bg_image:nth-of-type(3) {
  animation-delay: 10s;
}
@media (max-width:480px) {
  .bg, .bg_image, main.index .head .title {
    height: calc(100vw * 1015 / 640);
  }
  main.index .head .title img {
    width: 85%;
  }
  .bg_image:nth-of-type(1) {
    background-image: var(--background-image_slide-sp-1);
  }
  .bg_image:nth-of-type(2) {
    background-image: var(--background-image_slide-sp-2);
  }
  .bg_image:nth-of-type(3) {
    background-image: var(--background-image_slide-sp-3);
  }
}
@media (min-width:481px) {
  .bg, .bg_image, main.index .head .title {
    height: calc(100vw * 1400 / 2560);
  }
  .bg_image:nth-of-type(1) {
    background-image: var(--background-image_slide-pc-1);
  }
  .bg_image:nth-of-type(2) {
    background-image: var(--background-image_slide-pc-2);
  }
  .bg_image:nth-of-type(3) {
    background-image: var(--background-image_slide-pc-3);
  }
}
@media (min-width:481px) and (max-width:980px) {
  main.index .head .title img {
    width: 46%;
  }
}
main.index .head {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
main.index .head .title {
  display: flex;
  align-items: center;
  justify-content: center;
}
main.index .head .title img {
  height: auto;
  margin: 0 auto;
  z-index: 20;
}
main.index .aisatsu {
  width: 500px;
  max-width: 100%;
  margin: 40px auto 0 auto;
  padding: 20px;
}
main.index .aisatsu strong {
  background-color: var(--background-color_aisatsu);
}
main.index .aisatsu .large {
  font-size: 2rem;
}
main.index .aisatsu p:not(:last-child) {
  margin-bottom: 1.5em;
}
main.index .message {
  width: 100%;
  margin: 0 auto;
  padding: 60px 0px 20px;
  background-color: var(--background-color_message);
}
main.index .lead_message_wrap {
  padding-top: 60px;
  padding-bottom: 60px;
  background: url('../images/lead_message_bg.jpg');
}
main.index .lead_message {
  width: 80%;
  max-width: 470px;
  margin: 0 auto;
}
main.index .message .lead_message .photo + div {
  margin-top: 1.75em;
}
main.index .message .photo {
  max-width: 900px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin: 0 auto;
}
main.index .message .photo li {
  max-width: 520px;
}
main.index .message .title {
  font-family: "Midashi Go MB31", sans-serif;
  font-size: 2.1rem;
  display: inline;
  background-color: var(--background-color_aisatsu);
}
main.index .message .subtitle {
  font-size: 2.3rem;
  line-height: 1.5;
  margin-bottom: 0.75em;
}
main.index .message .title-container {
  margin-top: 60px;
  margin-bottom: 1em;
  display: flex;
}
main.index .message .title-container .icon {
  padding-top: 10px;
  padding-left: 10px;
}
main.index .border_note {
  background: linear-gradient(#f2e4c7 1px, transparent 1px);
  background-size: auto 3rem;
  line-height: 3rem;
  overflow: hidden;
}
main.index .border_note p {
  line-height: 3rem;
  margin-top: 2px;
}
main.index .border_note p:not(:last-child) {
  margin-bottom: 3rem;
}
main.index .message-container {
  width: 100%;
  max-width: 520px;
  margin: 0 auto 60px;
  padding-left: 40px;
}
main.index .recruit {
  margin-top: 60px;
  padding-left: 20px;
  padding-right: 20px;
}
main.index .message .occupation {
  display: flex;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  justify-content: center;
  align-content: stretch;
  flex-wrap: wrap;
}
main.index .message .occupation li {
  width: calc(33.3333% - 40px);
  margin: 0 20px 40px;
}
main.index .message .occupation li a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: all .25s;
  border: 4px solid #000;
  border-radius: 12px;
  height: 100%;
}
main.index .message .occupation li a > span {
  font-family: "Midashi Go MB31", sans-serif;
  font-size: 17px;
  font-weight: bold;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  min-height: 50px;
  padding: 20px;
  justify-content: center;
  align-items: center;
}
main.index .message .occupation li a > span small {
  font-size: 75%;
  font-weight: normal;
  display: block;
}
main.index .message .occupation li a > small {
  font-family: "Midashi Go MB31", sans-serif;
  font-size: 100%;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(8px + 0.25em);
  line-height: 1;
  color: var(--color_occupation-small);
}
main.index .message .occupation li a i {
  font-size: 150%;
}

/* 
 * Occupation 
 */
main.index .message .occupation li:nth-child(1) a > small {
  background-color: var(--background-color_occupation-1);
}
main.index .message .occupation li:nth-child(2) a > small {
  background-color: var(--background-color_occupation-2);
}
main.index .message .occupation li:nth-child(3) a > small {
  background-color: var(--background-color_occupation-3);
}
main.index .message .occupation li:nth-child(4) a > small {
  background-color: var(--background-color_occupation-4);
}
main.index .message .occupation li:nth-child(5) a > small {
  background-color: var(--background-color_occupation-5);
}
@media (hover:hover) {
  main.index .message .occupation li a:hover {
    opacity: .5;
  }
}
main.index .career .occupation li {
  width: calc(50% - 40px);
  margin: 0 20px 40px;
}
main.index .career .occupation li:nth-child(1) a > small {
  background-color: var(--background-color_occupation-career);
}

main.index .career {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 60px auto 0 auto;
}
main.index .career p {
  font-size: 16px;
}
main.index .career a {
  color: var(--color_carreer-link);
  cursor: pointer;
}

.career .job_bg {
  background-color: rgba(0,0,0,0.3);
  padding: 2px;
}


/*
 * Subpage - Title
 */
.title-img {
  width: 100%;
  margin: 0 auto;
  padding: 50px 0 40px;
  text-align: center;
  background-color: #f2f2f2;
}
.title-img img {
  margin: 0 auto;
}

/* 
 * Subpage - Under
 */
main.under {
  display: block;
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
  padding-left: 60px;
  background-image: url(../images/dotline_v.png);
  background-repeat: repeat-y;
  background-size: 1px auto;
}
main.under h1 {
  font-family: 'Midashi Go MB31', sans-serif;
  font-size: 3.8rem;
  line-height: 1.5;
}
main.under .title-container {
  padding-top: 2em;
}

main.under.kikaku .job_bg {
  background-color: #ff8ab1;
  padding: 10px 2px ;
  font-family: "Midashi Go MB31", sans-serif;
}
main.under.kikaku .job_border {
  border-bottom: 2px solid #ff8ab1;
}
main.under.seisan .job_bg {
  background-color: #8b52ff;
  padding: 10px 2px ;
  font-family: "Midashi Go MB31", sans-serif;
  color:#fff;
}
main.under.seisan .job_border {
  border-bottom: 2px solid #8b52ff;
  color:#fff;
}
main.under.contents .job_bg {
  background-color: #00bfe6;
  padding: 10px 2px ;
  font-family: "Midashi Go MB31", sans-serif;
}
main.under.contents .job_border {
  border-bottom: 2px solid #00bfe6;
}
main.under.webdesigner .job_bg {
  background-color: #70c270;
  padding: 10px 2px ;
  font-family: "Midashi Go MB31", sans-serif;
}
main.under.webdesigner .job_border {
  border-bottom: 2px solid #70c270;
}
main.under.support .job_bg {
  background-color: #f0d342;
  padding: 10px 2px ;
  font-family: "Midashi Go MB31", sans-serif;
	
}
main.under.support .job_border {
  border-bottom: 2px solid #f0d342;
}



main.under h2 {
  font-size: 2.1rem;
  line-height: 2;
}
main.under h3 {
  display: inline-block;
  margin-top: 1.2em;
  margin-bottom: 0.7em;
  line-height: 1.5;
  padding: 2px 10px;
  color: #fff;
  background-color: #999;
}
main.under h4 {
  font-weight: bold;
}
main.under .message {
  line-height: 1.8;
}
main.under article {
  overflow: hidden;
  width: 100%;
}
main.under section p:not(:last-child) {
  margin-bottom: 1em;
}
main.under section.information p {
  margin-bottom: 0;
}
main.under section.information ul + p, main.under section.information p + p {
  margin-top: 0.5em;
}
main.under section.information li {
  list-style: disc;
  margin-left: 1em;
}
main.under ul.asterisk li {
  list-style: none;
  text-indent: -1em;
}
main.under ul.asterisk li:before {
  display: inline;
  content: "※";
}
main.under section p a {
  text-decoration: none;
  color: #0032ff;
}
main.under section .info {
  margin-top: 2em;
  padding: 15px 20px;
  background-color: #e6e6e6;
}
main.under section .info p {
  font-size: 12px;
  line-height: 1.75;
  margin-bottom: 0;
}

/* 
 * Note
 */
.note {
  width: 90%;
  max-width: 700px;
  margin: 0 auto;
  border: 1px solid #000;
}
.note p {
  padding: 28px;
}
.note.note_small p {
  font-size: 12px;
  line-height: 1.5;
  padding: 14px;
}
/* Subpage - Note */
main.under .note {
  width: auto;
  margin-top: 40px;
}

/* 
 * Date
 */
.date {
  width: 90%;
  max-width: 700px;
  margin: 40px auto;
  text-align: center;
}
.date p {
  font-size: 1.2rem;
}

/* 
 * Footer
 */
.footer {
  height: 180px;
  background-color: #999;
}
.footer ul {
  display: flex;
  align-items: center;
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  padding-top: 60px;
  text-align: center;
}
.footer ul li {
  margin-right: 20px;
}
.footer ul li:last-child {
  margin-right: 0;
  margin-left: auto;
}
.footer ul li.copyright {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  color: #fff;
}



/* ----------------------------------------
 * PC < 980px
 ---------------------------------------- */
@media (max-width:980px) {
  .note {
    width: 100%;
  }
  .date {
    width: 100%;
  }
  main.index .message .title-container {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  main.index .message-container {
    margin: 0 auto 20px;
    padding-left: 0;
  }
  main.index .message .occupation {
    flex-direction: column;
    width: 100%;
    max-width: 400px;
    padding-top: 8px;
  }
  main.index .career {
    margin-top: 28px;
    margin-bottom: 60px;
  }
  main.index .message .occupation li {
    width: 100%;
    margin: 0 auto;
  }
  main.index .message .occupation li a > span {
    font-size: 20px;
  }
  main.index .message .occupation li + li {
    margin: 14px auto 0 auto;
  }

  /*
   * Subpage - Title
   */
  .title-img {
    width: 100%;
    margin: 0 auto;
    padding: 40px 0 30px;
    text-align: center;
  }
  .title-img h2 {
    width: 65%;
    margin: 0 auto;
  }
  .title-img h2 img {
    width: 100%;
  }

  /*
   * Subpage - Under
   */
  main.under {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    background: none;
  }
  main.under h1 {
    font-size: 2.8rem;
    line-height: 1.5;
  }
  main.under h3 {
    display: inline;
    padding: 2px 5px;
    color: #fff;
    background-color: #999;
  }
  main.under section p {
    line-height: 1.8em;
  }
  main.under section p:not(:last-child) {
    margin-bottom: 0.5em;
  }
  main.under section.information li {
    margin-left: 1.2em;
  }

  /*
   * Footer
   */
  .footer {
    height: auto;
    margin-top: 20px;
  }
  .footer ul {
    width: 100%;
    padding: 40px 10px 20px 10px;
  }
  .footer ul li {
    margin-right: 14px;
    margin-bottom: 15px;
  }
}





/* ----------------------------------------
 * Tablet
 ---------------------------------------- */
@media (max-width:680px) {
  .footer ul {
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .footer ul li {
    margin-bottom: 30px;
  }
  .footer ul li:last-child {
    margin-right: 0;
    margin-left: 0;
  }
}





/* ----------------------------------------
 * Mobile
 ---------------------------------------- */
@media (max-width:480px) {
  /*
   * Header
   */
  .header_logo li.home {
    margin-right: 0;
    margin-left: auto;
  }

  /*
   * Index
   */
  main.index .aisatsu {
    padding: 10px 20px;
  }
  main.index .message {
    padding: 40px 0 0 0;
  }
  main.index .lead_message {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
  main.index .message .lead_message .title {
    font-weight: bold;
    font-size: 1.7rem;
    line-height: 1.7em;
  }
  main.index .message .title-container .icon {
    padding-top: 0;
  }
  main.index .message .recruit .photo {
    flex-direction: column;
    height: 82vw;
    overflow: hidden;
  }
  main.index .message .recruit .photo li {
    height: 38vw;
    overflow: hidden;
  }

  /*
   * Footer
   */
  .footer ul li.mail {
    margin-left: auto;
    margin-right: 1%;
  }
  .footer ul li.mail img {
    width: 120px;
  }
  .footer ul li.lifebook, .footer ul li.home {
    margin-right: 0;
    margin-left: 0;
    width: 48%;
  }
  .footer ul li.lifebook img {
    width: 160px;
    margin-right: auto
  }
  .footer ul li.home img {
    width: 160px;
    margin-left: auto;
  }
  .footer ul li:last-child {
    width: 100%;
  }
}


@keyframes fade {
  0% {
    opacity: 0;
    z-index: 10;
  }
  4% {
    opacity: 1;
  }
  25% {
    z-index: 9;
  }
  49% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}




