body{
    font-family: "fot-tsukubrdgothic-std", sans-serif;
    font-weight: 700;
    font-style: normal;
    margin: 0 auto;
    background-color: #f5f5f5;
}


/* ヘッダー */
/*PCメニュー*/
header{
  width: 100%;
  box-sizing: border-box;
  transition: padding .5s, background-color .5s; /* 背景色と高さをじんわり変更 */
  transition: .3s;
  padding: 0 26px;
  align-items: center;
  z-index: 999;
  position: absolute;
  top: 0;
  left: 0;
}
/* ファーストビューを過ぎたあとのヘッダー */
.header.transform {
  background-color: #fff; /* 背景色変更 */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 26px;
}

#header {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
#header h1 {
  margin-right: auto;
  width: 355px;
  margin-top: 0;
  margin-bottom: 0;
}
@media screen and (max-width: 900px) {
  #header h1 {
    width: 255px;
  }

}
@media screen and (max-width: 500px) {
  #header h1 {
    width: 165px;
  }

}
.head-logo img{
    width: 100%;
    margin-top: 15px;
}
#header #navi {
  margin-top: 10px;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  list-style: none;
}
#header #navi li {
  margin: 0 15px;
  line-height: 100%;
  font-size: 1vw;
  letter-spacing: 2px;
  list-style: none;
}
#header #navi li a {
  color: #000;
  text-decoration: none;
}
.square{
  background:#000;
  padding:0.25em;
  padding-left: 1em;
  padding-right: 1em;
  border: solid 1px #000;
  color:white;
}
/*PCメニュー*/
/*SPメニュー*/
@media screen and (max-width: 1050px) {
  /* bager menu */
  #header #navi {
    transition: all 0.6s;
    overflow-y: auto;
    /*padding-top: 40px;
    width: 300px;*/
    height: 100vh;
    z-index: 200;
    top: 0;
    right: -320px;
    background-color: #fff;
    position: fixed;
    flex-direction: column;
    align-items: center;
    padding: 150px 0;
  }
  #header #navi li {
    padding: 20px;
    font-size: 18px;
  }
  #header .nav_btn {
    width: 44px;
    height: 44px;
    z-index: 300;
    top: 15px;
    right: 15px;
    cursor: pointer;
    /*position: absolute;*/
    position: fixed;
  }
  .hamburger_line {
    transition: all 0.6s;
    width: 34px;
    height: 2px;
    left: 5px;
    background-color: #000;
    position: absolute;
  }
  .hamburger_line1 {
    top: 10px;
  }
  .hamburger_line2 {
    top: 21px;
  }
  .hamburger_line3 {
    top: 32px;
  }
  .nav_bg {
    opacity: 0;
    transition: all 0.6s;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    top: 0;
    left: 0;
    visibility: hidden;
    background-color: #000;
    cursor: pointer;
    position: fixed;
  }
  /* 表示された時用のCSS */
  .nav_open #header #navi {
    right: 0;
    width: 100%;
    background-image: url(http://wmspic.weimall.jp/weiwei/weiwei-logo.png);
    background-repeat: no-repeat;
    background-size: 50%;
    background-position: 25px 15px;
  }
  .nav_open .nav_bg {
    opacity: 0.8;
    visibility: visible;
  }
  .nav_open .hamburger_line1 {
    transform: rotate(45deg);
    top: 20px;
  }
  .nav_open .hamburger_line2 {
    width: 0;
    left: 50%;
  }
  .nav_open .hamburger_line3 {
    transform: rotate(-45deg);
    top: 20px;
  }
}

/* 求人情報 見出し */
.main-wrapper{
  width: 100%;
  height: 1000px;
  /* min-height: 780px; */
  background: url(http://wmspic.weimall.jp/weiwei/recruit-top-sample.jpg) 50% 0 no-repeat;
  background-size: cover;
  display: flex;
  flex-flow: wrap;
  justify-content: left;
  align-items: center;
  text-align: left;
  color: #FFF;
  font-size: 42px;
  line-height: 1.3;
}
.inner-txt img{
  width: 80%;
}
.f-inner{
  text-align: center;
  margin: 0 auto;
}
.recruit{
    text-align: center;
}
.recruit h2{
    margin-top: 20%;
    font-size: 30px;
    font-size: 3vw;
    position: relative;
    padding: 1.5rem;
    letter-spacing: 0.2em;
    text-align: center;
    text-shadow: 3px 1px 3px #000000
}
  
.recruit h2 span {
    font-size: 18px;
    font-size: 2vw;
    display: block;
    letter-spacing: 0.2em;
    text-shadow: 3px 1px 3px #000000
  }
  
  .recruit h2:before {
    position: absolute;
    bottom: -10px;
    left: calc(50% - 30px);
    width: 60px;
    height: 5px;
    content: '';
    border-radius: 3px;
    background: #a12626;
  }
  
  .recruiting{
    font-size: 1vh;
    letter-spacing: 0.2em;
    padding-top: 8px;
    text-shadow: 3px 1px 3px #000000
  }

  @media screen and (max-width: 878px) {
    .recruit h2{
      margin-top: 20%;
      font-size: 30px;
      font-size: 5vw;
      position: relative;
      padding: 1.5rem;
      letter-spacing: 0.2em;
      text-align: center;
      text-shadow: 3px 1px 3px #000000
  }
    .recruit h2 span {
      font-size: 3vw;
      letter-spacing: 0.2em;
    }
    .recruiting{
      font-size: 2vw;
    }
  }
  @media screen and (max-width: 548px) {
    .recruit h2{
      margin-top: 20%;
      font-size: 30px;
      font-size: 7vw;
      position: relative;
      padding: 1.5rem;
      letter-spacing: 0.2em;
      text-align: center;
      text-shadow: 3px 1px 3px #000000
  }
    .recruit h2 span {
      font-size: 4vw;
      letter-spacing: 0.2em;
    }
    .recruiting{
      font-size: 3vw;
    }
  }

/* 要素0(採用情報) */
.recruit-wrap{
  width: 80%;
  margin: 0 auto;
}
.job-opt{
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  list-style: none;
  justify-content: space-between;
}
.new-box,
.career-box{
  width: 49%;
}
.new-box a,
.career-box a{
  text-decoration: none;
  color: #fff;
}
.new{
  width: 100%;
  height: 500px;
  background: url(http://wmspic.weimall.jp/weiwei/new-sample.jpg) 50% 0 no-repeat;
  background-size: cover;
  background-color:rgba(75,80,85,0.5);
  background-blend-mode: multiply;
  text-align: center;
  color: #FFF;
  font-size: 42px;
  line-height: 9;
}
.career{
  width: 100%;
  height: 500px;
  background: url(http://wmspic.weimall.jp/weiwei/career-sample.jpg) 50% 0 no-repeat;
  background-size: cover;
  background-color:rgba(75,80,85,0.5);
  background-blend-mode: multiply;
  text-align: center;
  color: #FFF;
  font-size: 42px;
  line-height: 9;
}
.career:hover,
.new:hover{
  opacity:0.8;
	transition:0.3s;
  -webkit-transition: 0.3s; /* Safari用のプレフィックス */
}

.job-txt{
  text-align: center;
  margin: 0 auto;
}

/* 募集ボタン */
.rr-btn,
a.rr-btn,
button.rr-btn {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.5;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}
.btn-posi{
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

@media screen and (max-width: 956px) {
  .rr-btn,
  a.rr-btn,
  button.rr-btn {
    font-size: 1rem;
    line-height: 1.2;
    padding: 1rem 3rem;
  }
}

@media screen and (max-width: 798px) {
  .job-opt{
    flex-direction: column  
  }
  .new-box,
  .career-box{
    width: 100%;
  }
  .new{
    width: 100%;
    height: 450px;
    font-size: 42px;
    line-height: 9;
  }
  .career{
    width: 100%;
    height: 450px;
    font-size: 42px;
    line-height: 9;
    margin: 10px 0;
  }
}

@media screen and (max-width: 450px) {
  .new{
    height: 330px;
    font-size: 30px;
  }
  .career{
    height: 330px;
    font-size: 30px;
    margin: 10px 0;
  }
  .rr-btn,
a.rr-btn,
button.rr-btn {
  font-size: 0.8rem;
}
}

@media screen and (max-width: 368px) {
.rr-btn,
a.rr-btn,
button.rr-btn {
  line-height: 1;
  padding: 1rem 1rem;
}
}

/* 募集していない時のボタンカラー */
.rr-btn-color1,
a.rr-btn-color1 {
  color: #fff;
  background-color: #4e4e4e;
}
.rr-btn-color1:hover,
a.rr-btn-color1:hover {
  color: #fff;
  background: #f56500;
}

/* 募集している時のボタンカラー */
.rr-btn-color2,
a.rr-btn-color2 {
  color: #000;
  background-color: #fff;
}

.rr-btn-color2:hover,
a.rr-btn-color2:hover {
  color: #fff;
  background: #000;
}

a.rr-btn--radius {
  border-radius: 100vh;
}
/* ボタン押せないようにする指定 */
.shinsotu{
  pointer-events:none;
}

/* 要素1(求人情報) */
.recruit-inner{
    text-align: center;
    margin-top: 10%;
}
.recruit-img{
    text-align: center;
    width: 100%;
}
.recruit-img img{
    width: 100%;
}
.rr-btxt{
    font-size: 2.5vw;
    margin-top: 0;
}
.rr-txt{
    font-size: 1.5vw;
}
@media screen and (max-width: 768px) {
  .rr-btxt{
    font-size: 16px;
}
.rr-txt{
    font-size: 10px;
}
}
/* 募集を見るボタン(共通) */
.view{
    margin-top: 4%;
  }
  a.view-btn-border {
    background: #000;
  }
  
  a.view-btn-border:hover {
    background: #424242;
  }
  .view-btn,
  a.view-btn {
  font-size: 2.2vw;
  font-weight: 700;
  line-height: 0.5;
  position: relative;
  display: inline-block;
  padding: 1.5rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #fff;
  }

  /* 募集職種 見出し */
.type-top{
    text-align: left;
    letter-spacing: 0.2em;
    /*font-size-adjust: 0.56;*/
  }
  .type-top h3 {
    display: flex;
    align-items: center;
    font-size: 3vw;
    margin-top: 15%;
    }
    .type-top h3:after {
    border-top: 2px dotted;
    content: "";
    flex-grow: 1;
    }
    .type-top h3:after {
    margin-left: 1rem;
    }
    .type-top h3 span{
    font-size: 1.5vw;
    margin-left: 15px;
  }
  .h3-cp{
    font-size: 2vw;
    margin-top: -5%;
    letter-spacing: 0.2em;
  }
  .h3-txt{
    font-size: 1.5vw;
    line-height: 2.5;
    margin-top: 5%;
    letter-spacing: 0.2em;
    line-height: 4vw;
  }
  @media screen and (max-width: 768px) {
    .type-top h3 {
      font-size: 4vw;
    }
    .type-top h3 span {
      font-size: 10px;
      margin-left: 5px;
    }
  }

/* 募集職種メイン */
 /* アコーディオンメニュー中身 
.type-list{
    width: 100%;
    margin: 0 auto;
  }
  @media screen and (max-width: 540px) {
    .type-list{
      width: 100%;
    }
  }

  .type-inner{
    width: 100%;
    align-items: center;
  }
  .type-inner img{
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 400px;
  }
  .storelogo{
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
  }
 
  .more-content{
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row-reverse;
    justify-content: flex-start;
    align-content: center;
    align-items: flex-start;
    margin-top: 3%;
    padding: 1em 2em;
  }
  .more-img{
    width: 100%;
  }

  .more-txt{
    font-size: 1vw;
      line-height: 250%;
      text-align: left;
      color: #484848;
      padding: 0 25px 0 0px;
  }

  @media screen and (max-width: 978px) {
    .more-content{
      flex-direction: column;
      padding: 1em 0em;
    }
    .more-txt{
      padding: 0;
      letter-spacing: 0.1em;
      line-height: 23px;
      font-size: 1vw;
    }

  }
*/

  
  /* アコーディオンメニュー構築 */
   /* .accordion-003 {
    margin-bottom: 7px;
    border-bottom: 1px solid #ccc;
  }
  
  .accordion-003 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em;
    color: #333;
    font-weight: 600;
    cursor: pointer;
  }
  
  .accordion-003 summary::-webkit-details-marker {
    display: none;
  }
  
  .accordion-003 summary::before,
  .accordion-003 summary::after {
    width: 3px;
    height: .9em;
    border-radius: 5px;
    background-color: #333;
    content: '';
  }
  
  .accordion-003 summary::before {
    position: absolute;
    right: 2em;
    rotate: 90deg;
  }
  
  .accordion-003 summary::after {
    transition: rotate .3s;
  }
  
  .accordion-003[open] summary::after {
    rotate: 90deg;
  }
  
  .accordion-003 p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 2em 1.5em;
    color: #333;
    transition: transform .5s, opacity .5s;
  }
  
  .accordion-003[open] p {
    transform: none;
    opacity: 1;
  }
  @media screen and (max-width: 978px) {
    .accordion-003 summary {
      padding: 1em 0;
    }
    .accordion-003 summary::before {
      right: 0;
    }

  }
  */

  /* 要素7(お問い合わせ) */
  .contact{
    width: 60%;
    text-align: center;
    margin: 0 auto;
    margin-top: 10%;
  }
  .contact-inner{
    font-size: 1.2vw;
    margin-bottom: 15px;
    letter-spacing: 3px;
  }
  @media screen and (max-width: 768px) {
    .contact-inner{
      font-size: 3vw;
    }

  }
  .contact-main{
    font-size: 1.5vw;
    font-weight: 600;
    line-height: 1.5;
    width: 100%;
    margin: 0 auto;
  }
  @media screen and (max-width: 768px) {
    .contact-main{
      font-size: 15px;
      font-weight: 700;
    }
  }
  .ctc-btn,
a.ctc-btn {
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.2em;
  color: #000;
  width: 45%;
}
  a.ctc-btn-border {
    border: 2px solid #000;
    border-radius: 0;
    background: #fff;
  }
  
  a.ctc-btn-border:hover {
    color: #fff;
    background: #000;
  }

  /* フッター */
  .c-footer{
    position: relative;
    margin-top: 10%;
    background-color: #000;
    position: absolute;
    width: 100%;
  }

  .footer-wrap{
    display: flex;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    padding-top: 70px;
    padding-bottom: 80px;
    position: relative;
}
.c-footer h1{
    display: block;
    width: 40%;
}
.foot-logo img{
    width: 50%;
}

.footer-wrap ul{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
}

.footer-wrap ul li{
    display: block;
    font-size: 0.8vw;
    padding-left: 20px;
    letter-spacing: 2px;
    list-style: none;
}
@media screen and (max-width: 768px) {
  .footer-wrap ul li{
    font-size: 12px;
}
.foot-logo img{
  width: 100%;
}

}
.footer-wrap ul li a{
    color: #fff;
    text-decoration: none;
}

.foot-copy{
  width: 90%;
  margin: 0 auto;
}
.copy{
  text-align: center;
  color: #fff;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 2px;
  margin-bottom: 2%;
}

@media screen and (max-width: 950px) {
.circle {
  width: 150px;
  height: 150px;
}
}

@media screen and (max-width: 768px) {
  .company-wrap{
    width: 90%;
  }
  .comp-top h3{
    font-size: 4vw;
  }
  .comp-top h3 span{
    font-size: 10px;
    margin-left: 5px;
  }
  .slogan-more{
    flex-direction: column;
  }
  .circle{
    width: 100px;
    height: 100px;
    font-size: 4vw;
  }

  .hist-inner dt,
  .hist-inner dt{
    font-size: 1vw;
    width: 15%;
  }
  .ov-inner dd,
  .ov-inner dd{
    font-size: 1vw;
    width: 75%;
    margin-left: 15px;
  }
}


@media screen and (max-width: 768px) {
  .footer-wrap{
    flex-direction: column;
  }
  .footer-wrap ul {
    flex-direction: column;
  }
  .footer-wrap ul li {
    padding: 10px;
  }
  .footer-wrap ul li a {
    text-decoration: none;
  }
  .c-footer h1{
    margin: 0 auto;
    text-align: center;
    width: 100%;
  }
  .foot-logo img{
    width: 40%;
  }
}

@media screen and (max-width: 375px) {
  .foot-logo img{
    width: 60%;
  }
}

  /* トップへ戻る */
  #page_top{
    width: 50px;
    height: 50px;
    position: fixed;
    right: 0;
    bottom: 0;
    background: #9c9c9c;
    opacity: 0.6;
  }
  #page_top a{
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    text-decoration: none;
  }
  #page_top a::before{
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f106';
    font-size: 25px;
    color: #fff;
    position: absolute;
    width: 25px;
    height: 25px;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
  }

  /* スクロール時フェードイン */
.fade {
  transition: all 2000ms;
  -webkit-transition: all 2000ms; /* Safari用のプレフィックス */
  opacity: 0;
  visibility: hidden;
  transform: translate(0px, 50px);
}

.fadein {
  opacity: 1;
  visibility: visible;
  transform: translate(0px, 0px);
} 
