@charset "UTF-8";
html {
  color: #000;
  background: #FFF;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, button, textarea, select, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset, img {
  border: 0;
}

address, button, caption, cite, code, dfn, em, input, optgroup, option, select, strong, textarea, th, var {
  font: inherit;
}

del, ins {
  text-decoration: none;
}

li {
  list-style: none;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: 400;
}

q:before, q:after {
  content: '';
}

abbr, acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: baseline;
}

sub {
  vertical-align: baseline;
}

legend {
  color: #000;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1em;
}

.font_Lobster {
  font-family: 'Lobster', cursive;
}

/*============================================================================
画面の横幅に左右されない共通スタイル
============================================================================*/
html {
  margin-bottom: 1px;
  height: 100%;
  overflow-y: scroll;
}

body {
  font-family: '游ゴシック体', 'Yu Gothic', 'メイリオ', 'meiryo', 'Meiryo UI', "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , sans-serif;
  /*font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Helvetica, Arial, Verdana, sans-serif;*/
  font-size: 16px;
  color: #222;
  line-height: 170%;
  margin: 0px;
  min-height: 100vh;
}

img {
  display: block;
}

* {
  box-sizing: border-box;
  position: relative;
}

/*============================================================================
header
============================================================================*/
header {
  z-index: 10;
  position: fixed;
  top: 0px;
  width: 100%;
}
header .site-title {
  padding: 10px;
}
header .site-title img {
  height: 40px;
}
header .gnavi li a {
  color: #fff;
}

/*============================================================================
footer
============================================================================*/
footer {
  padding: 20px 10px;
  border-top: 1px solid #F4F4F4;
  text-align: right;
}
footer a {
  text-decoration: none;
}

small {
  width: 100%;
  text-align: center;
}

/*============================================================================
section_eyecatch
============================================================================*/
.section_eyecatch {
  min-height: 100vh;
  background: #ddd;
  overflow: hidden;
}
.section_eyecatch .bg-area {
  height: 100vh;
  display: flex;
  justify-content: center;
}
.section_eyecatch .bg-area video {
  position: absolute;
  bottom: 0px;
}
.section_eyecatch .text-area {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  flex-direction: column;
  font-weight: bold;
}
.section_eyecatch .text-area .page-title {
  font-size: 48px;
  line-height: 1em;
  margin-bottom: 1em;
}
.section_eyecatch .text-area .sub-text {
  font-size: 18px;
  padding: 0px 10px;
}

/*============================================================================
section_career
============================================================================*/
.section_career {
  min-height: 400px;
  background: #F4F4F4;
}
.section_career .text-area {
  max-width: 700px;
}
.section_career .text-area .h_area {
  margin-bottom: 30px;
}
.section_career .text-area .h_area .h {
  padding-left: 1em;
  font-family: 'Roboto', sans-serif;
}
.section_career .text-area .text-box p {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 1em;
  display: block;
}

/*============================================================================
section_skillset
============================================================================*/
.section_skillset {
  background: #F4F4F4;
}
.section_skillset .inner-area {
  min-height: 100vh;
}
.section_skillset .inner-area .title-area .h_area .h {
  font-family: 'Roboto', sans-serif;
}
.section_skillset .inner-area .skill-list-area .list-h {
  font-size: 12px;
  padding-left: 1em;
}
.section_skillset .inner-area .skill-list-area ul {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px dashed #ccc;
  margin-bottom: 8px;
}
.section_skillset .inner-area .skill-list-area ul li {
  border: 1px solid #ccc;
  padding: 8px;
  border-radius: 4px;
  margin: 4px;
  font-size: 12px;
  line-height: 1em;
  background: #fff;
}

/*============================================================================
@media screen and (max-width: 479px)
============================================================================*/
@media screen and (max-width: 479px) {
  /*============================================================================
  header
  ============================================================================*/
  header {
    display: flex;
    justify-content: space-between;
  }
  header nav ul {
    z-index: 3;
    display: flex;
    height: 100%;
  }
  header nav ul li {
    width: 160px;
  }
  header nav ul li a {
    color: #fff;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
  }

  /*============================================================================
  section_career
  ============================================================================*/
  .section_career {
    min-height: 400px;
    background: #F4F4F4;
    padding: 100px 10px 80px;
  }
  .section_career .text-area {
    width: 100%;
    margin: 0 auto;
    position: relative;
    top: 0;
    left: 0;
  }
  .section_career .text-area .h_area .h {
    font-size: 48px;
    font-weight: bold;
    line-height: 1;
  }
  .section_career .text-area .text-box .mb {
    margin-bottom: 1em;
  }

  /*============================================================================
  section_skillset
  ============================================================================*/
  .section_skillset .inner-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 0px auto;
    padding: 0px 0px 60px;
  }
  .section_skillset .title-area {
    width: 100%;
  }
  .section_skillset .title-area .h_area {
    width: 100%;
    text-align: center;
    padding: 20px 0px;
  }
  .section_skillset .title-area .h_area .h {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  .section_skillset .title-area .h_area .h_sub-text {
    font-size: 18px;
  }
  .section_skillset .title-area .img-box {
    width: 100%;
    height: 210px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .section_skillset .title-area .img-box img {
    width: 100%;
  }
  .section_skillset .skill-list-area {
    width: 100%;
    padding: 20px;
    background: #F4F4F4;
  }
  .section_skillset .skill-list-area ul {
    display: flex;
    flex-wrap: wrap;
  }

  /*@media screen and (max-width: 479px)*/
}
/*============================================================================
@media screen and (min-width: 480px) and (max-width: 767px)
============================================================================*/
@media screen and (min-width: 480px) and (max-width: 767px) {
  /*============================================================================
  header
  ============================================================================*/
  header {
    display: flex;
    justify-content: space-between;
  }
  header nav ul {
    z-index: 3;
    display: flex;
    height: 100%;
  }
  header nav ul li {
    width: 160px;
  }
  header nav ul li a {
    color: #fff;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
  }

  /*============================================================================
  section_career
  ============================================================================*/
  .section_career {
    min-height: 400px;
    background: #F4F4F4;
    padding: 100px 0px 80px;
  }
  .section_career .text-area {
    width: 480px;
    margin: 0 auto;
    position: relative;
    padding: 0px 10px;
  }
  .section_career .text-area .h_area .h {
    font-size: 48px;
    font-weight: bold;
    line-height: 1;
  }
  .section_career .text-area .text-box .mb {
    margin-bottom: 1em;
  }

  /*============================================================================
  section_skillset
  ============================================================================*/
  .section_skillset .inner-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 0px auto;
    padding: 0px 0px 60px;
  }
  .section_skillset .title-area {
    width: 480px;
  }
  .section_skillset .title-area .h_area {
    width: 100%;
    text-align: center;
    padding: 20px 0px;
  }
  .section_skillset .title-area .h_area .h {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  .section_skillset .title-area .h_area .h_sub-text {
    font-size: 18px;
  }
  .section_skillset .title-area .img-box {
    width: 480px;
  }
  .section_skillset .title-area .img-box img {
    width: 100%;
  }
  .section_skillset .skill-list-area {
    width: 480px;
    padding: 20px;
    background: #F4F4F4;
  }
  .section_skillset .skill-list-area ul {
    display: flex;
    flex-wrap: wrap;
  }

  /*@media screen and (min-width: 480px) and (max-width: 767px)*/
}
/*============================================================================
@media screen and (min-width: 768px) and (max-width: 959px)
============================================================================*/
@media screen and (min-width: 768px) and (max-width: 959px) {
  /*============================================================================
  header
  ============================================================================*/
  header {
    display: flex;
    justify-content: space-between;
  }
  header nav ul {
    z-index: 3;
    display: flex;
    height: 100%;
  }
  header nav ul li {
    width: 160px;
  }
  header nav ul li a {
    color: #fff;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
  }

  /*============================================================================
  section_career
  ============================================================================*/
  .section_career {
    min-height: 400px;
    background: #F4F4F4;
    padding: 100px 0px 80px;
  }
  .section_career .text-area {
    width: 600px;
    margin: 0 auto;
    position: relative;
    padding: 0px 10px;
  }
  .section_career .text-area .h_area .h {
    font-size: 48px;
    font-weight: bold;
    line-height: 1;
  }
  .section_career .text-area .text-box .mb {
    margin-bottom: 1em;
  }

  /*============================================================================
  section_skillset
  ============================================================================*/
  .section_skillset .inner-area {
    display: flex;
    flex-direction: column;
    width: 600px;
    margin: 0px auto;
    padding: 0px 0px 60px;
  }
  .section_skillset .title-area {
    width: 600px;
  }
  .section_skillset .title-area .h_area {
    width: 100%;
    text-align: center;
    padding: 20px 0px;
  }
  .section_skillset .title-area .h_area .h {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  .section_skillset .title-area .h_area .h_sub-text {
    font-size: 18px;
  }
  .section_skillset .title-area .img-box {
    width: 600px;
  }
  .section_skillset .title-area .img-box img {
    width: 100%;
  }
  .section_skillset .skill-list-area {
    width: 600px;
    padding: 20px;
    background: #F4F4F4;
  }
  .section_skillset .skill-list-area ul {
    display: flex;
    flex-wrap: wrap;
  }

  /*@media screen and (min-width: 768px) and (max-width: 959px)*/
}
/*============================================================================
@media screen and (min-width: 960px) and (max-width: 1279px)
============================================================================*/
@media screen and (min-width: 960px) and (max-width: 1279px) {
  /*============================================================================
  header
  ============================================================================*/
  header {
    display: flex;
    justify-content: space-between;
  }
  header nav ul {
    z-index: 3;
    display: flex;
    height: 100%;
  }
  header nav ul li {
    width: 160px;
  }
  header nav ul li a {
    color: #fff;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
  }

  /*============================================================================
  section_career
  ============================================================================*/
  .section_career {
    min-height: 400px;
    background: #F4F4F4;
    padding: 120px 0px 60px;
  }
  .section_career .text-area {
    width: 960px;
    margin: 0 auto;
    position: relative;
    padding: 0px 10px;
  }
  .section_career .text-area .h_area .h {
    font-size: 48px;
    font-weight: bold;
    line-height: 1;
  }
  .section_career .text-area .text-box .mb {
    margin-bottom: 1em;
  }

  /*============================================================================
  section_skillset
  ============================================================================*/
  .section_skillset .inner-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 100vh;
    width: 960px;
    margin: 0px auto;
    padding: 60px 0px;
  }
  .section_skillset .title-area {
    width: 480px;
  }
  .section_skillset .title-area .h_area {
    width: 100%;
    text-align: center;
    padding: 20px 0px;
  }
  .section_skillset .title-area .h_area .h {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  .section_skillset .title-area .h_area .h_sub-text {
    font-size: 18px;
  }
  .section_skillset .title-area .img-box {
    width: 480px;
  }
  .section_skillset .title-area .img-box img {
    width: 100%;
  }
  .section_skillset .skill-list-area {
    width: 480px;
    padding: 20px;
    background: #F4F4F4;
  }
  .section_skillset .skill-list-area ul {
    display: flex;
    flex-wrap: wrap;
  }

  /*@media screen and (min-width: 960px) and (max-width: 1279px)*/
}
/*============================================================================
@media screen and (min-width: 1280px)
============================================================================*/
@media screen and (min-width: 1280px) {
  /*============================================================================
  header
  ============================================================================*/
  header {
    display: flex;
    justify-content: space-between;
  }
  header nav ul {
    z-index: 3;
    display: flex;
    height: 100%;
  }
  header nav ul li {
    width: 160px;
  }
  header nav ul li a {
    color: #fff;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
  }

  /*============================================================================
  section_career
  ============================================================================*/
  .section_career {
    min-height: 400px;
    background: #F4F4F4;
    padding: 120px 0px 60px;
  }
  .section_career .text-area {
    width: 960px;
    margin: 0 auto;
    position: relative;
    top: 0;
    left: 0;
  }
  .section_career .text-area .h_area .h {
    font-size: 48px;
    font-weight: bold;
    line-height: 1;
  }
  .section_career .text-area .text-box .mb {
    margin-bottom: 1em;
  }

  /*============================================================================
  section_skillset
  ============================================================================*/
  .section_skillset .inner-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 100vh;
    width: 1280px;
    margin: 0px auto;
    padding: 60px 0px;
  }
  .section_skillset .title-area {
    width: 600px;
  }
  .section_skillset .title-area .h_area {
    width: 100%;
    text-align: center;
    padding: 20px 0px;
  }
  .section_skillset .title-area .h_area .h {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  .section_skillset .title-area .h_area .h_sub-text {
    font-size: 18px;
  }
  .section_skillset .title-area .img-box {
    width: 600px;
  }
  .section_skillset .title-area .img-box img {
    width: 100%;
  }
  .section_skillset .skill-list-area {
    display: flex;
    justify-content: center;
  }
  .section_skillset .skill-list-area .skill-list-box {
    width: 600px;
    padding: 20px;
  }
  .section_skillset .skill-list-area .skill-list-box ul {
    display: flex;
    flex-wrap: wrap;
  }

  /*@media screen and (min-width: 1280px)*/
}
.effect_fade-in_move-right {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 1s;
}

/*============================================================================
繧｢繝九Γ繝ｼ繧ｷ繝ｧ繝ｳ
============================================================================*/
.header-animation {
  animation-name: header-animation;
  animation-duration: 2s;
  background: #7addbc;
}

@keyframes header-animation {
  from {
    transform: translateY(-60px);
  }
  to {
    transform: translateY(0px);
  }
}

/*# sourceMappingURL=style.css.map */
