html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

html {
  color: #252525;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-style: normal;
}

p {
  font-size: 16px;
  text-align: justify;
}

@media all and (max-width: 750px) {
  p {
    font-size: 14px;
  }
}

a {
  text-decoration: none;
  color: #252525;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
  word-break: break-all;
}

.p-header {
  margin-top: -61px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: fixed;
  height: 61px;
  width: 100%;
  z-index: 10;
  background-color: #fff;
}

@media all and (max-width: 750px) {
  .p-header {
    height: 50px;
  }
}

.p-header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 1160px;
  margin: 0 auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media all and (max-width: 1160px) {
  .p-header__wrapper {
    width: 100%;
    padding: 0 15px;
    margin: 0;
  }
}

.p-header__wrapper__logo {
  font-size: 34px;
  line-height: 58px;
  cursor: pointer;
}

@media all and (max-width: 750px) {
  .p-header__wrapper__logo {
    font-size: 29px;
    line-height: 50px;
  }
}

.header-scroll {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin-top: 0;
}

.p-top {
  position: relative;
  width: 100vw;
  height: 100vh;
}

.p-top__img {
  background-image: url("../assets/img/FB.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 85.7vw;
  height: 90vh;
}

@media all and (max-width: 750px) {
  .p-top__img {
    width: 82vw;
  }
}

.p-top__box {
  background-color: #252525;
  width: 80vw;
  height: 100vh;
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
}

.p-top__scroll {
  display: inline-block;
  position: absolute;
  right: 40px;
  bottom: 0;
  z-index: 2;
  padding: 10px 10px 250px;
  overflow: hidden;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  letter-spacing: .2em;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}

@media all and (max-width: 750px) {
  .p-top__scroll {
    font-size: 14px;
    padding: 10px 0 250px;
  }
}

.p-top__scroll:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 240px;
  background: #fff;
  -webkit-animation: sdl 4s cubic-bezier(1, 0, 0, 1) infinite;
          animation: sdl 4s cubic-bezier(1, 0, 0, 1) infinite;
}

@-webkit-keyframes sdl {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50.1% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}

@keyframes sdl {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50.1% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}

.p-top__txts {
  position: absolute;
  right: 0;
  top: 12vh;
}

@media all and (max-width: 1000px) {
  .p-top__txts {
    top: 23.2vh;
  }
}

.p-top__txts__catch-copy {
  width: 46vw;
  height: 82px;
  background-color: #fff;
}

.p-top__txts__catch-copy:before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #252525;
  -webkit-animation: slide 1.5s cubic-bezier(1, 0, 0, 1);
          animation: slide 1.5s cubic-bezier(1, 0, 0, 1);
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes slide {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}

@keyframes slide {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}

@media all and (max-width: 1000px) {
  .p-top__txts__catch-copy {
    height: 48px;
    width: 60vw;
  }
}

@media all and (max-width: 600px) {
  .p-top__txts__catch-copy {
    width: 92vw;
  }
}

.p-top__txts__catch-copy__inner {
  font-weight: 400;
  line-height: 82px;
  font-size: 22px;
  padding-left: 50px;
}

@media all and (max-width: 1000px) {
  .p-top__txts__catch-copy__inner {
    font-size: 18px;
    line-height: 48px;
    padding-left: 33px;
  }
}

.p-top__txts__sub-title {
  margin-top: 5vh;
  position: absolute;
  right: 0;
  width: 34vw;
  height: 58px;
  background-color: #fff;
}

.p-top__txts__sub-title:before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #252525;
  -webkit-animation: slide2 1.5s cubic-bezier(1, 0, 0, 1);
          animation: slide2 1.5s cubic-bezier(1, 0, 0, 1);
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes slide2 {
  0% {
    width: 100%;
  }
  20% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}

@keyframes slide2 {
  0% {
    width: 100%;
  }
  20% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}

@media all and (max-width: 1000px) {
  .p-top__txts__sub-title {
    width: 45vw;
    height: 36px;
  }
}

@media all and (max-width: 600px) {
  .p-top__txts__sub-title {
    margin-top: 3vh;
    width: 77vw;
  }
}

.p-top__txts__sub-title__inner {
  line-height: 58px;
  font-size: 18px;
  padding-left: 40px;
}

@media all and (max-width: 1000px) {
  .p-top__txts__sub-title__inner {
    font-size: 14px;
    line-height: 36px;
    padding-left: 24px;
  }
}

.p-concept {
  margin: 0 auto;
  width: 1000px;
  margin-top: 140px;
}

@media all and (max-width: 1000px) {
  .p-concept {
    width: 100%;
    padding: 0 15px;
  }
}

@media all and (max-width: 750px) {
  .p-concept {
    margin-top: 108px;
  }
}

.p-concept:after {
  content: "";
  display: block;
  clear: both;
}

.p-concept__title {
  width: 364px;
  float: left;
}

@media all and (max-width: 1000px) {
  .p-concept__title {
    width: 40%;
  }
}

@media all and (max-width: 750px) {
  .p-concept__title {
    float: none;
    width: 100%;
  }
}

.p-concept__title__main {
  font-size: 38px;
  letter-spacing: 0.07em;
  padding-bottom: 12px;
}

@media all and (max-width: 1000px) {
  .p-concept__title__main {
    font-size: 25px;
    padding-bottom: 9px;
  }
}

.p-concept__title__line {
  height: 1px;
  width: 200%;
  background-color: #252525;
  position: relative;
  right: 100%;
}

@media all and (max-width: 750px) {
  .p-concept__title__line {
    left: 0;
  }
}

.p-concept__img {
  float: right;
}

@media all and (max-width: 1000px) {
  .p-concept__img {
    width: 55%;
  }
}

@media all and (max-width: 750px) {
  .p-concept__img {
    float: none;
    width: 100%;
    margin-top: 40px;
  }
}

.p-concept__txt {
  line-height: 2em;
  width: 364px;
  position: relative;
  top: 18px;
}

@media all and (max-width: 1000px) {
  .p-concept__txt {
    width: 40%;
    font-size: 14px;
  }
}

@media all and (max-width: 750px) {
  .p-concept__txt {
    position: static;
    width: 100%;
    margin-top: 8px;
  }
}

.p-company {
  margin: 0 auto;
  width: 1000px;
  margin-top: 140px;
}

@media all and (max-width: 1000px) {
  .p-company {
    width: 100%;
    padding: 0 15px;
  }
}

@media all and (max-width: 750px) {
  .p-company {
    margin-top: 80px;
  }
}

.p-company:after {
  content: "";
  display: block;
  clear: both;
}

.p-company__title {
  width: 364px;
  float: right;
}

@media all and (max-width: 1000px) {
  .p-company__title {
    width: 40%;
  }
}

@media all and (max-width: 750px) {
  .p-company__title {
    width: 100%;
    float: none;
  }
}

.p-company__title__main {
  font-size: 38px;
  letter-spacing: 0.07em;
  padding-bottom: 12px;
}

@media all and (max-width: 1000px) {
  .p-company__title__main {
    font-size: 25px;
    padding-bottom: 9px;
  }
}

.p-company__title__line {
  height: 1px;
  width: 200%;
  background-color: #252525;
  position: relative;
  left: 0;
}

.p-company__img {
  float: left;
}

@media all and (max-width: 1000px) {
  .p-company__img {
    width: 55%;
  }
}

@media all and (max-width: 750px) {
  .p-company__img {
    position: static;
    width: 100%;
    margin-top: 40px;
  }
}

.p-company__txts {
  width: 364px;
  float: right;
}

@media all and (max-width: 1000px) {
  .p-company__txts {
    width: 40%;
  }
}

@media all and (max-width: 750px) {
  .p-company__txts {
    position: static;
    width: 100%;
  }
}

.p-company__txts__lists {
  margin-top: 22px;
  width: 100%;
  line-height: 1.5em;
}

@media all and (max-width: 750px) {
  .p-company__txts__lists {
    margin-top: 14px;
  }
}

.p-company__txts__lists__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 9px;
}

@media all and (max-width: 1000px) {
  .p-company__txts__lists__list {
    margin-bottom: 6px;
  }
}

.p-company__txts__lists__list__title {
  width: 97px;
  text-align: left;
  font-weight: bold;
}

@media all and (max-width: 1000px) {
  .p-company__txts__lists__list__title {
    width: 30%;
    font-size: 14px;
  }
}

@media all and (max-width: 750px) {
  .p-company__txts__lists__list__title {
    width: 20%;
    font-size: 14px;
  }
}

@media all and (max-width: 550px) {
  .p-company__txts__lists__list__title {
    width: 30%;
  }
}

.p-company__txts__lists__list__date {
  width: 267px;
}

@media all and (max-width: 1000px) {
  .p-company__txts__lists__list__date {
    width: 70%;
    font-size: 14px;
  }
}

.p-company__txts__txt {
  line-height: 1.5em;
}

.p-recruit {
  margin: 0 auto;
  width: 1000px;
  margin-top: 140px;
}

@media all and (max-width: 1000px) {
  .p-recruit {
    width: 100%;
    padding: 0 15px;
  }
}

@media all and (max-width: 750px) {
  .p-recruit {
    margin-top: 80px;
  }
}

.p-recruit__headline__title {
  font-size: 38px;
  letter-spacing: 0.07em;
  padding-bottom: 12px;
  border-bottom: 1px solid #252525;
}

@media all and (max-width: 750px) {
  .p-recruit__headline__title {
    font-size: 25px;
    padding-bottom: 9px;
    width: 200%;
  }
}

.p-recruit__headline__txt {
  margin-top: 20px;
  line-height: 1.5em;
}

@media all and (max-width: 750px) {
  .p-recruit__headline__txt {
    font-size: 14px;
    margin-top: 12px;
    line-height: 1.5em;
  }
}

.p-recruit__contact {
  margin-top: 49px;
}

@media all and (max-width: 750px) {
  .p-recruit__contact {
    margin-top: 30px;
  }
}

.p-recruit__contact__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 24px;
}

.p-recruit__contact__content:nth-last-of-type(1) {
  margin-bottom: 0;
}

@media all and (max-width: 750px) {
  .p-recruit__contact__content {
    display: block;
    margin-bottom: 19px;
  }
}

.p-recruit__contact__content__label {
  width: 232px;
  color: #6C6C6C;
}

@media all and (max-width: 1000px) {
  .p-recruit__contact__content__label {
    width: 30%;
  }
}

@media all and (max-width: 750px) {
  .p-recruit__contact__content__label {
    font-size: 14px;
    line-height: 30px;
  }
}

.p-recruit__contact__content__label--required {
  display: inline-block;
  color: #fff;
  font-size: 12px;
  width: 35px;
  height: 19px;
  line-height: 19px;
  text-align: center;
  background-color: #6C6C6C;
  margin-left: 14px;
  position: relative;
  bottom: 1.5px;
}

@media all and (max-width: 750px) {
  .p-recruit__contact__content__label--required {
    font-size: 10px;
    width: 27px;
    height: 15px;
    line-height: 15px;
    margin-left: 7px;
  }
}

.p-recruit__contact__content__input {
  height: 44px;
  background-color: #EFEFEF;
  border: none;
  padding: 0 19px;
  font-size: 18px;
  color: #252525;
}

.p-recruit__contact__content__input::-webkit-input-placeholder {
  font-size: 18px;
  color: #9A9A9A;
}

.p-recruit__contact__content__input:-ms-input-placeholder {
  font-size: 18px;
  color: #9A9A9A;
}

.p-recruit__contact__content__input::-ms-input-placeholder {
  font-size: 18px;
  color: #9A9A9A;
}

.p-recruit__contact__content__input::placeholder {
  font-size: 18px;
  color: #9A9A9A;
}

@media all and (max-width: 750px) {
  .p-recruit__contact__content__input::-webkit-input-placeholder {
    font-size: 14px;
  }
  .p-recruit__contact__content__input:-ms-input-placeholder {
    font-size: 14px;
  }
  .p-recruit__contact__content__input::-ms-input-placeholder {
    font-size: 14px;
  }
  .p-recruit__contact__content__input::placeholder {
    font-size: 14px;
  }
}

@media all and (max-width: 750px) {
  .p-recruit__contact__content__input {
    display: block;
    height: 40px;
    font-size: 14px;
    padding: 0 13px;
  }
}

.p-recruit__contact__content .name {
  width: 384px;
}

@media all and (max-width: 1000px) {
  .p-recruit__contact__content .name {
    width: 40%;
  }
}

@media all and (max-width: 750px) {
  .p-recruit__contact__content .name {
    width: 100%;
  }
}

.p-recruit__contact__content .tel {
  width: 214px;
}

@media all and (max-width: 750px) {
  .p-recruit__contact__content .tel {
    width: 100%;
  }
}

.p-recruit__contact__content .email {
  width: 590px;
}

@media all and (max-width: 1000px) {
  .p-recruit__contact__content .email {
    width: 60%;
  }
}

@media all and (max-width: 750px) {
  .p-recruit__contact__content .email {
    width: 100%;
  }
}

.p-recruit__contact__btn {
  margin-top: 58px;
  width: 163px;
  height: 55px;
  background-color: #252525;
  text-align: center;
  line-height: 50px;
  color: #fff;
  position: relative;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  font-size: 18px;
  cursor: pointer;
  border: 2px solid #252525;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-recruit__contact__btn:hover {
  background-color: #fff;
  color: #252525;
  letter-spacing: 10px;
  text-indent: 0.5em;
}

@media all and (max-width: 750px) {
  .p-recruit__contact__btn {
    width: 113px;
    height: 44px;
    font-size: 16px;
    line-height: 42px;
    margin-top: 24px;
  }
}

.p-recruit .detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media all and (max-width: 750px) {
  .p-recruit .detail {
    display: block;
  }
}

.p-recruit .detail__label {
  width: 232px;
  vertical-align: top;
  margin-top: 10px;
}

@media all and (max-width: 1000px) {
  .p-recruit .detail__label {
    width: 30%;
  }
}

.p-recruit .detail__textarea {
  background-color: #EFEFEF;
  border: none;
  padding: 12px 19px;
  width: 768px;
  height: 236px;
  font-size: 18px;
  color: #252525;
}

@media all and (max-width: 1000px) {
  .p-recruit .detail__textarea {
    width: 70%;
  }
}

@media all and (max-width: 750px) {
  .p-recruit .detail__textarea {
    height: 187px;
    padding: 13px;
    font-size: 14px;
  }
}

.p-recruit .detail__textarea::-webkit-input-placeholder {
  font-size: 18px;
  color: #9A9A9A;
  font-weight: 0;
}

.p-recruit .detail__textarea:-ms-input-placeholder {
  font-size: 18px;
  color: #9A9A9A;
  font-weight: 0;
}

.p-recruit .detail__textarea::-ms-input-placeholder {
  font-size: 18px;
  color: #9A9A9A;
  font-weight: 0;
}

.p-recruit .detail__textarea::placeholder {
  font-size: 18px;
  color: #9A9A9A;
  font-weight: 0;
}

@media all and (max-width: 750px) {
  .p-recruit .detail__textarea::-webkit-input-placeholder {
    font-size: 14px;
  }
  .p-recruit .detail__textarea:-ms-input-placeholder {
    font-size: 14px;
  }
  .p-recruit .detail__textarea::-ms-input-placeholder {
    font-size: 14px;
  }
  .p-recruit .detail__textarea::placeholder {
    font-size: 14px;
  }
}

@media all and (max-width: 750px) {
  .p-recruit .detail__textarea {
    width: 100%;
  }
}

.p-footer {
  width: 100%;
  height: 71px;
  background-color: #252525;
  margin-top: 177px;
}

@media all and (max-width: 750px) {
  .p-footer {
    height: 37px;
    margin-top: 94px;
  }
}

.p-footer__txt {
  font-size: 12px;
  text-align: center;
  line-height: 68px;
  color: #fff;
}

@media all and (max-width: 750px) {
  .p-footer__txt {
    font-size: 10px;
    line-height: 35px;
  }
}

.p-thanks__wrapper {
  width: 100%;
  padding: 0 15px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.p-thanks__wrapper__title {
  white-space: nowrap;
  font-size: 31px;
  font-weight: bold;
  text-align: center;
  line-height: 1.5em;
}

@media all and (max-width: 750px) {
  .p-thanks__wrapper__title {
    font-size: 24px;
  }
}

.p-thanks__wrapper__txt {
  width: 100%;
  margin-top: 50px;
  text-align: center;
  line-height: 2em;
}

@media all and (max-width: 750px) {
  .p-thanks__wrapper__txt {
    margin-top: 53px;
    width: 100%;
    text-align: justify;
  }
}

.p-thanks__wrapper__link {
  display: block;
  text-align: center;
  margin-top: 90px;
  width: 243px;
  height: 55px;
  background-color: #252525;
  text-align: center;
  line-height: 53px;
  color: #fff;
  position: relative;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 2px solid #252525;
}

.p-thanks__wrapper__link:hover {
  background-color: #fff;
  color: #252525;
  letter-spacing: 3px;
  text-indent: 0.5em;
}

@media all and (max-width: 750px) {
  .p-thanks__wrapper__link {
    width: 190px;
    height: 44px;
    font-size: 15px;
    line-height: 40px;
    margin-top: 120px;
  }
  .p-thanks__wrapper__link:hover {
    letter-spacing: 2px;
    text-indent: 0.1em;
  }
}

.u-hidden {
  overflow: hidden;
}

.u-br {
  display: none;
}

@media all and (max-width: 750px) {
  .u-br {
    display: block;
  }
}

.reverse {
  display: block;
}

@media all and (max-width: 750px) {
  .reverse {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */