@charset "UTF-8";
/*-------------------------------------------------------------
トップページ
---------------------------------------------------------------*/
.index {
  position: relative;
  /*---------------------------------------
KV
---------------------------------------*/
  /*---------------------------------------
    KV　内のスクロールアイコン
---------------------------------------*/
  /*=== 9-1-2 丸が動いてスクロールを促す ====*/
  /*スクロールダウン全体の場所*/
  /*Scrollテキストの描写*/
  /* 丸の描写 */
  /*下からの距離が変化して丸の全体が上から下に動く*/
  /*上から下にかけて丸が透過→不透明→透過する*/
  /* 線の描写 */
  /*---------------------------------------
コンテンツ
---------------------------------------*/
  /*---------------------------------------
business
---------------------------------------*/
  /*---------------------------------------
recruit
---------------------------------------*/
  /*---------------------------------------
bnrArea
---------------------------------------*/
  /*---------------------------------------
access
---------------------------------------*/
}

.index .mainImg {
  background-image: url(/assets/img/index/kv_img.jpg);
  background-repeat: none-repeat;
  background-size: cover;
  background-position: center center;
  padding: 0 24px;
  position: relative;
}

@media screen and (min-width: 1400px) {
  .index .mainImg {
    padding: 0;
  }
}

@media screen and (max-width: 639px) {
  .index .mainImg {
    padding: 0 12px;
  }
}

.index .mainImgInner {
  max-width: 1400px;
  margin: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.index .mainImg .copy {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (min-width: 640px) {
  .index .mainImg .copy {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 80vh;
  }
}

@media screen and (max-width: 639px) {
  .index .mainImg .copy {
    padding-top: 32px;
    height: 80vh;
  }
}

.index .mainImg .copy img {
  width: auto;
  max-width: auto;
}

.index .mainImg .copy span {
  margin-top: 32px;
  font-size: 28px;
  display: inline-block;
  font-weight: bold;
  border: 1px solid #fff;
  color: #fff;
  padding: 8px 24px;
  background: rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 639px) {
  .index .mainImg .copy span {
    font-size: 20px;
    padding: 8px 32px;
  }
}

@media screen and (min-width: 1025px) {
  .index .mainImg .mainCopy figure {
    overflow: hidden;
  }
  .index .mainImg .mainCopy figure img {
    height: 90vh;
  }
}

.index .kvScroll {
  position: absolute;
  bottom: 10px;
  right: 24px;
}

@media screen and (min-width: 1400px) {
  .index .kvScroll {
    right: 0;
  }
}

@media screen and (max-width: 639px) {
  .index .kvScroll {
    right: auto;
    left: 50%;
    margin: auto;
    top: 0;
    bottom: 16px;
  }
}

.index .kvScroll span {
  font-family: "Oswald", sans-serif;
  font-size: 16px;
  /*描画位置*/
  position: absolute;
  bottom: 70px;
  left: -10px;
  /*テキストの形状*/
  color: #eee;
  letter-spacing: 0.05em;
  /*縦書き設定*/
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}

@media screen and (max-width: 639px) {
  .index .kvScroll span {
    bottom: 64px;
  }
}

.index .kvScroll:before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: -4px;
  /*丸の形状*/
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid #fff;
  /*丸の動き1.6秒かけて透過し、永遠にループ*/
  -webkit-animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
          animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}

@-webkit-keyframes circlemove {
  0% {
    bottom: 59px;
  }
  100% {
    bottom: -5px;
  }
}

@keyframes circlemove {
  0% {
    bottom: 59px;
  }
  100% {
    bottom: -5px;
  }
}

@-webkit-keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}

@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}

.index .kvScroll:after {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: 0;
  /*線の形状*/
  width: 1px;
  height: 64px;
  background: #eee;
}

@media screen and (max-width: 639px) {
  .index .kvScroll:after {
    height: 56px;
  }
}

.index .contents {
  background-color: #fff;
  position: relative;
  padding: 0 10px;
}

@media screen and (min-width: 640px) {
  .index .contents {
    padding: 0;
    border-left: 16px solid #000;
    border-right: 16px solid #545454;
  }
}

.index .business {
  padding-top: 66px;
  padding-bottom: 130px;
}

@media screen and (max-width: 639px) {
  .index .business {
    padding-top: 24px;
    padding-bottom: 32px;
  }
}

@media screen and (min-width: 640px) {
  .index .business {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media screen and (min-width: 1025px) {
  .index .business {
    padding-left: 0;
    padding-right: 0;
  }
}

.index .business .h2-style {
  text-align: left;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.index .business .h2-style small {
  display: block;
}

.index .business .h2-style .Ttl {
  border-left: 1px solid #000;
  padding-left: 40px;
}

@media screen and (max-width: 639px) {
  .index .business .h2-style {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .index .business .h2-style .Ttl {
    padding-left: 20px;
  }
  .index .business .h2-style .lnk {
    margin-top: 24px;
    text-align: right;
  }
}

@media screen and (min-width: 1025px) {
  .index .business .h2-style {
    margin: auto;
    max-width: 1400px;
    padding-left: 8vw;
    padding-right: 8vw;
  }
}

@media screen and (min-width: 640px) {
  .index .business .businessInner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-top: 48px;
  }
}

@media screen and (min-width: 1025px) {
  .index .business .businessInner {
    margin: auto;
    max-width: 1400px;
  }
}

.index .business .businessInner figure {
  margin-bottom: 0;
}

.index .business .businessInner figure span {
  position: relative;
  display: block;
}

.index .business .businessInner figure span:before {
  content: "";
  height: 70px;
  width: 1px;
  background-color: #000;
  position: absolute;
  top: -18px;
  left: 15px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.index .business .businessInner figure img {
  width: 100%;
}

@media screen and (min-width: 640px) {
  .index .business .businessInner figure {
    width: 50%;
  }
}

.index .business .businessInner .desc {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 640px) {
  .index .business .businessInner .desc {
    width: 50%;
  }
}

@media screen and (max-width: 639px) {
  .index .business .businessInner .desc {
    margin-bottom: 24px;
  }
}

.index .business .businessInner .descInner {
  height: 80%;
  background: -webkit-gradient(linear, left top, right top, from(black), to(#545454));
  background: -webkit-linear-gradient(left, black 0%, #545454 100%);
  background: linear-gradient(90deg, black 0%, #545454 100%);
  background-color: #000;
  color: #fff;
  padding: 8px 16px 16px 16px;
}

@media screen and (min-width: 1025px) {
  .index .business .businessInner .descInner {
    padding-left: 48px;
    padding-right: 124px;
    padding-top: 32px;
    padding-bottom: 32px;
  }
}

.index .business .businessInner .descInner p {
  line-height: 2;
  font-size: 14px;
}

@media screen and (min-width: 1025px) {
  .index .business .businessInner .descInner p {
    font-size: 16px;
  }
}

.index .business .businessInner h3 {
  font-size: 20px;
  margin-bottom: 16px;
  border-bottom: 1px solid #fff;
}

.index .business .businessInner h3 span {
  font-family: "Oswald", sans-serif;
  color: #A0A0A0;
  font-size: 32px;
  margin-right: 12px;
}

@media screen and (min-width: 1025px) {
  .index .business .businessInner h3 {
    font-size: 24px;
    line-height: 56px;
    margin-bottom: 24px;
  }
}

@media screen and (max-width: 639px) {
  .index .business .businessInner h3 span {
    font-size: 24px;
  }
}

@media screen and (min-width: 640px) {
  .index .business .businessInner:nth-child(odd) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .index .business .businessInner:nth-child(odd) figure span:before {
    left: auto;
    right: 15px;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}

@media screen and (min-width: 1025px) {
  .index .business .businessInner:nth-child(even) figure {
    padding-left: 8vw;
  }
  .index .business .businessInner:nth-child(odd) figure {
    padding-right: 8vw;
  }
}

.index .recruit {
  color: #FFF;
  background-image: url(/assets/img/index/bg_recruit.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 80px;
  padding-left: 16px;
  padding-right: 16px;
}

@media screen and (max-width: 639px) {
  .index .recruit {
    margin-right: -10px;
    margin-left: -10px;
  }
}

.index .recruit p {
  text-align: center;
  margin-bottom: 48px;
  line-height: 2;
}

.index .recruit .h2-style:before {
  background-color: #fff;
}

.index .bnrArea {
  text-align: center;
  margin-bottom: 120px;
}

.index .access {
  padding-bottom: 80px;
}

@media screen and (max-width: 639px) {
  .index .access {
    padding-bottom: 50px;
  }
}

.index .access .h2-style {
  text-align: center;
}

.index .access iframe {
  display: block;
  margin: auto;
  width: 600px;
  height: 400px;
}

.index .access {
  position: relative;
}

.index .access iframe {
  border: none;
  width: 100%;
  height: 340px;
  margin-top: 30px;
}

.index .access .btn {
  margin-top: 32px;
}

@media screen and (min-width: 640px) {
  .index .access .btn {
    margin-top: -32px;
  }
}

@media screen and (min-width: 1025px) {
  .index .accessInner {
    max-width: calc(1400px - 16vw);
    margin: auto;
  }
  .index .access iframe {
    height: 480px;
  }
  .index .access h2 {
    text-align: left;
  }
}

/*---------------------------------------
lower page
---------------------------------------*/
.pageTtl {
  width: 100%;
  padding: 112px 80px 80px;
  background: #545454;
  color: #fff;
}

.pageTtl h2 {
  font-size: 1.75rem;
  letter-spacing: .12em;
  text-align: center;
  margin-bottom: 16px;
}

.pageTtl h2 span {
  display: block;
  font-size: 14px;
  font-family: "Oswald", sans-serif;
  letter-spacing: .1em;
}

.lower .contents section {
  margin-top: 80px;
  margin-bottom: 80px;
}

.lower .sectionBody {
  width: 100%;
  padding: 0 20px;
  margin: auto;
}

.lower .sectionBody .leadText {
  background-color: #ffffff;
  padding: 40px 64px;
  font-size: 112%;
  line-height: 2;
  width: 80%;
  margin: auto;
}

@media screen and (min-width: 640px) {
  .lower .sectionBody {
    width: 80%;
    padding: 0 40px;
    max-width: 640px;
  }
}

@media screen and (min-width: 1025px) {
  .lower .sectionBody {
    max-width: 960px;
  }
}

.lower .sectionTtl {
  color: #000000;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: .3em;
  text-align: center;
  margin-bottom: 48px;
}

.lower .pd {
  padding: 0 24px;
}

.lower .dpb {
  display: inline-block;
}

.lower .none {
  display: none;
}

.bgGray {
  background-color: #ffffff88;
  padding: 32px 40px;
}

.w80 {
  width: 100%;
  margin: auto;
}

@media screen and (min-width: 1025px) {
  .w80 {
    width: 80%;
  }
}

@media screen and (min-width: 640px) {
  .col2 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .col2 > * {
    width: 50%;
  }
}

/*-------------------------------------------------------------
会社概要
---------------------------------------------------------------*/
.company {
  position: relative;
  /*---------------------------------------
アクセス
---------------------------------------*/
}

.company .access {
  width: 100%;
}

.company .access iframe {
  border: none;
  width: 100%;
  height: 45vh;
}

.company .access .btn {
  margin-top: -32px;
}

/*-------------------------------------------------------------
会社概要
---------------------------------------------------------------*/
.business .h3-style span {
  display: block;
  font-size: 200%;
  font-weight: bold;
}

@media screen and (min-width: 640px) {
  .business .businessTxt {
    margin-bottom: 1.6em;
  }
}

/*---------------------------------------
form / フォーム
---------------------------------------*/
.lower .contact-intro {
  margin-top: 80px;
}

.lower .contact-step__first, .lower .contact-step__second, .lower .contact-step__third {
  background-color: #ffffff;
  font-weight: 700;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 33%;
  position: relative;
}

.lower .contact-step__first:before, .lower .contact-step__second:before, .lower .contact-step__third:before {
  content: "";
  display: block;
  position: absolute;
  width: 18px;
  height: 100%;
  top: 0;
  right: -15px;
  -webkit-clip-path: polygon(0 0, 3px 0, 100% 50%, 3px 100%, 0 100%);
          clip-path: polygon(0 0, 3px 0, 100% 50%, 3px 100%, 0 100%);
  background-color: #ffffff;
  z-index: 2;
}

.lower .contact-step__first:after, .lower .contact-step__second:after, .lower .contact-step__third:after {
  content: "";
  display: block;
  position: absolute;
  width: 18px;
  height: 100%;
  top: 0;
  right: -18px;
  -webkit-clip-path: polygon(0 0, 2px 0, 100% 50%, 2px 100%, 0 100%);
          clip-path: polygon(0 0, 2px 0, 100% 50%, 2px 100%, 0 100%);
  z-index: 1;
  background: #ffffff;
  z-index: 1;
}

.lower .contact-form input, .lower .contact-form textarea {
  border: 2px solid #f0f0f0;
  width: 100%;
  padding: 8px 12px;
  border-radius: 3px;
  margin: 0;
  letter-spacing: .08em;
}

.lower .contact-form__required, .lower .contact-form__optional {
  font-size: 80%;
  padding: 2px 8px;
  border-radius: 2px;
  color: #ffffff;
  line-height: 0;
  font-weight: normal;
  margin-left: 10px;
}

.lower .contact-tel {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2em;
}

@media screen and (min-width: 1025px) {
  .lower .contact-tel {
    width: 50%;
  }
}

.lower .contact-tel__btn {
  background-color: #000000;
  border-radius: 100px;
  color: #ffffff;
  display: block;
  padding: .8em 3em;
  text-align: center;
}

.lower .contact-tel__num {
  display: block;
  font-size: 1.6em;
  font-weight: 700;
}

.lower .contact-tel__open {
  font-size: .8em;
}

.lower .contact-txt {
  margin-bottom: 2em;
  text-align: center;
}

.lower .contact-step {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: .5%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style-type: none;
  width: 100%;
  padding: 0;
  margin: 0 auto 2.4em;
}

@media screen and (min-width: 640px) {
  .lower .contact-step {
    max-width: 640px;
  }
}

@media screen and (min-width: 1025px) {
  .lower .contact-step {
    max-width: 960px;
  }
}

.lower .contact-step__first {
  background-color: #000000;
  border-radius: 8px 0 0 8px;
  color: #ffffff;
  padding: 16px 10px;
}

.lower .contact-step__first:before {
  content: "";
  background-color: #000000;
  z-index: 2;
}

.lower .contact-step__second {
  background-color: #ffffff;
  border-radius: 0;
  color: #000000;
  padding: 16px 10px 16px 25px;
}

.lower .contact-step__second:before {
  content: "";
  background-color: #ffffff;
  z-index: 2;
}

.lower .contact-step__third {
  background-color: #ffffff;
  border-radius: 0 8px 8px 0;
  color: #000000;
  padding: 16px 16px 25px;
}

.lower .contact-step__third:before {
  content: "";
  background-color: #ffffff;
  z-index: 2;
}

.lower .contact-step__third:before {
  display: none;
}

.lower .contact-step__num {
  font-size: 2em;
  line-height: 1;
  margin-top: -0.2em;
}

.lower .contact-form {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 4em;
}

.lower .contact-form__list {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.lower .contact-form__item {
  border-bottom: 2px dotted #f0f0f0;
}

.lower .contact-form__item:last-child {
  border: none;
}

.lower .contact-form__ttl {
  width: 100%;
  letter-spacing: .15em;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}

.lower .contact-form__ttl:last-child {
  margin-top: 0;
}

.lower .contact-form__body {
  width: 100%;
  margin-top: 8px;
  margin-bottom: 1.5em;
}

.lower .contact-form__required {
  background-color: #C72600;
}

.lower .contact-form__optional {
  background-color: #000000;
}

.lower .contact-form__inputL {
  width: 100%;
  padding: .2em;
}

.lower .contact-form input[type="checkbox"] {
  width: auto;
  margin-right: .8em;
  height: 1.1em;
  width: 1.1em;
}

.lower .contact-form input[type="radio"] {
  width: auto;
  margin-right: .8em;
  height: 1.1em;
  width: 1.1em;
}

.lower .contact-form .radio {
  list-style: none;
  padding: 0;
}

.lower .contact-form .radio li {
  margin: .8em 0 0;
}

.lower .contact-form .radio li label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.lower .contact-form .checkbox li {
  margin-bottom: 0.6em;
}

.lower .contact-form .checkbox li label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 1025px) {
  .lower .contact-form .radio li {
    margin-bottom: 0.2em;
  }
  .lower .contact-form .checkbox li {
    margin-bottom: 0.2em;
  }
}

.lower .contact-form__submit {
  text-align: center;
  margin: 2em 0 3em;
}

.lower .contact-form__btn {
  display: block;
  font-size: 1.15em;
  font-weight: normal;
  background-color: #000000;
  border-radius: 8px;
  color: #ffffff;
  cursor: pointer;
  padding: 20px 40px;
  border: none;
  letter-spacing: .15em;
  text-indent: .5em;
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.lower .contact-form__btn:hover {
  background-color: #333333;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}

.lower .contact-form__btn.back {
  background-color: #ddd;
  color: #969696;
  font-size: 0.85em;
  letter-spacing: 0.05em;
  padding: 10px 24px;
  max-width: 240px;
  margin-top: 0.8em;
}

.lower .contact-error {
  color: #C72600;
}

.lower .thanks .contactStep .step .stepContact {
  background-color: #ffffff;
  color: #000000;
  padding: 10px 10px 10px 10px;
}

.lower .thanks .contactStep .step .stepContact:before {
  background-color: #ffffff;
  z-index: 4;
}

.lower .thanks .contactStep .step .stepConfirm {
  background-color: #ffffff;
  color: #000000;
}

.lower .thanks .contactStep .step .stepConfirm:before {
  background-color: #ffffff;
  z-index: 4;
}

.lower .thanks .contactStep .step .stepThanks {
  background-color: #000000;
  color: #FFF;
}

.lower .thanks .contactStep .step .stepThanks:before {
  display: none;
}

.lower .thanks .mainTxt {
  margin-bottom: 2.5em;
}

@media screen and (min-width: 1025px) {
  .lower .thanks .mainTxt {
    text-align: center;
  }
}

.lower .thanks .thanksTel {
  color: #000000;
  font-weight: 700;
  padding-top: 1em;
}

.lower .thanks .thanks-error {
  margin-top: 4em;
  margin-bottom: 4em;
  border-radius: 8px;
}

.lower .thanks .thanks-error p {
  margin-bottom: 0;
}

@media screen and (min-width: 1025px) {
  .lower .thanks .thanksError {
    padding-top: 2em;
  }
  .lower .thanks .thanksError p {
    text-align: center;
    margin-bottom: 1em;
  }
  .lower .thanks .thanksError .thanks-error__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .lower .thanks .thanksError .thanksTel {
    font-size: 1.1rem;
  }
}
/*# sourceMappingURL=pages.css.map */