@charset "UTF-8";
/* =======================================
 リセットCSS
======================================= */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
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; }

img {
  border: 0;
  vertical-align: bottom;
  }

html {
  -webkit-text-size-adjust: 100%; }

input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  /*-webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;*/ }

* {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit; }

*:before,
*:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit; }

  @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@900&display=swap');

/* =======================================
 base style
======================================= */
body {
  background: #FFF;
  color: #000;
  font-size: 15px;
  font-family: 'Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','Hiragino Sans','ヒラギノ角ゴシック',YuGothic,'Yu Gothic','メイリオ', Meiryo,'ＭＳ Ｐゴシック','MS PGothic',sans-serif;
  line-height: 180%;
  margin: 0 auto;
  -webkit-font-smoothing: antialiased;
}
.title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
}
.copyright {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: bold;
  font-size: 14px;
  text-align: center;
  padding: 40px 20px;
}
.pc-only {
  display: block!important;
}
.sp-only {
  display: none!important;
}
@media (max-width:640px) {
  .pc-only {
    display: none!important;
  }
  .sp-only {
    display: block!important;
  }
  .copyright {
    font-size: 10px;
  }
}
/*----------------------------------------------------
	header
----------------------------------------------------*/
.bt-home {
  position: fixed;
  left: 30px;
  top: 30px;
  z-index: 1000;
  transition: all .2s ease-in-out;
  opacity: 1;
}
.bt-home:hover {
  opacity: .8;
}
.main-area {
  position: relative;
  height: 745px;
  min-width: 1200px;
  margin: 0 auto;
  border-bottom: #000 solid 12px;
  text-align: center;
  overflow: hidden;
}
.logo {
  display: inline-block;
  padding: 30px 0 40px;
}
.logo img {
  width: 145px;
  height: 57px;
}
h1 {
  margin-bottom: 30px;
}
.bg-wrap {
  width: 1200px;
  margin: 0 auto;
}
.main-bg-left,
.main-bg-right {
  display: flex;
  position: absolute;
  top: -144px;
  transform: rotate(20deg);
}
.main-bg-left {
  left: 50%;
  margin-left: -900px;
}
.main-bg-right {
  right: 50%;
  margin-right: -970px;
  border-right: #22AAE1 solid 20px;
}
@keyframes bg-slider01 {
	from { background-position: 0 0; }
    to { background-position: 0 1130px; }
}
@keyframes bg-slider02 {
	from { background-position: 0 0; }
    to { background-position: 0 910px; }
}
@keyframes bg-slider03 {
	from { background-position: 0 0; }
    to { background-position: 0 1230px; }
}
@keyframes bg-slider04 {
	from { background-position: 0 0; }
    to { background-position: 0 920px; }
}
.main-bg-01 {
  width: 220px;
  height: 1010px;
  background: url(/recruit/pubstagirl/img/bg-staff-01.png) repeat-y center top;
  animation: bg-slider01 60s linear infinite;
}
.main-bg-02 {
  width: 220px;
  height: 1010px;
  background: url(/recruit/pubstagirl/img/bg-staff-02.png) repeat-y center top;
  animation: bg-slider02 60s linear infinite;
}
.main-bg-03 {
  width: 220px;
  height: 1010px;
  background: url(/recruit/pubstagirl/img/bg-staff-03.png) repeat-y center top;
  animation: bg-slider03 60s linear infinite;
}
.main-bg-04 {
  width: 220px;
  height: 1010px;
  background: url(/recruit/pubstagirl/img/bg-staff-04.png) repeat-y center top;
  animation: bg-slider04 60s linear infinite;
  border-right: #ED207B solid 50px;
}
.btn-cv img {
  transition: all .2s ease-in-out;
  transform: scale(1);
}
.btn-cv:hover img {
  transform: scale(1.05);
}
.bt-scroll {
  cursor: pointer;
  transition: all .2s ease-in-out;
  position: absolute;
  left: 50%;
  bottom: -6px;
  margin-left: 265px;
  z-index: 10;
}
.bt-scroll:hover {
  bottom: -8px;
}
@media (max-width:640px) {
  .bt-home {
    left: 10px;
    top: 10px;
  }
  .bt-home img {
    width: auto;
    height: 40px;
  }
  .main-area {
    padding: 0 20px 60px;
    min-width: 320px;
    box-sizing: border-box;
    height: auto;
  }
  .logo {
    display: inline-block;
    padding: 30px 0 40px;
  }
  .logo img {
    width: 138px;
    height: 55px;
  }
  h1 {
    margin-bottom: 30px;
  }
  h1 img {
    max-width: 360px;
    width: 100%;
  }
  .bg-wrap {
    width: auto;
    margin: 0 auto;
    position: absolute;
    top: -180px;
    right: -46px;
    height: 100%;
  }
  .main-bg {
    position: relative;
    transform: rotate(20deg);
    z-index: -1;
  }
  .main-bg-sp {
    border-right: #22AAE1 solid 10px;
  }
  @keyframes bg-slider {
    from { background-position: 0 0; }
      to { background-position: 0 2285px; }
  }
  .main-bg-inner {
    width: 150px;
    height: 1010px;
    background: url(/recruit/pubstagirl/img/bg-staff-04.png) repeat-y center top / 120px;
    animation: bg-slider04 60s linear infinite;
    border-right: #ED207B solid 30px;
    box-sizing: border-box;
  }
  .btn-cv img {
    max-width: 100%;
  }
  .bt-scroll {
    left: 50%;
    bottom: -6px;
    margin-left: -45px;
    z-index: 10;
  }
}
.section-title {
  position: relative;
  font-size: 46px;
  line-height: 50px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 110px;
  z-index: 2;
}
.section-title span {
  display: inline-block;
  position: absolute;
  z-index: -1;
}
.section-title::after {
  position: absolute;
  bottom: -30px;
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  background-color: #ED207B;
  border-bottom: #22AAE1 solid 3px;
}
.section {
  padding: 130px 0;
  min-width: 1200px;
}
@media (max-width:640px) {
  .section {
    padding: 60px 15px;
    min-width: auto;
  }
  .section-title {
    font-size: 26px;
    line-height: 32px;
    height: 60px;
    margin-bottom: 60px;
  }
  .section-title span img {
    width: auto;
    height: 53px;
  }
  .section-title::after {
    position: absolute;
    bottom: -16px;
    content: "";
    display: block;
    width: 100px;
    height: 3px;
    background-color: #ED207B;
    border-bottom: #22AAE1 solid 3px;
  }
}
.about-inner {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: space-between;
}
.about-inner .about-inner-left {
  width: 43%;
}
.about-inner-left strong {
  display: block;
  margin: 20px 0;
  padding: 30px 20px;
  font-size: 26px;
  position: relative;
}
.about-inner-left span {
  position: relative;
  z-index: 2;
}
.about-inner-left strong::before {
  position: absolute;
  content: "“";
  font-size: 70px;
  color: #EEEFF8;
  z-index: 0;
  left: -10px;
}
.about-inner-left strong::after {
  position: absolute;
  content: "”";
  font-size: 70px;
  color: #EEEFF8;
  z-index: 0;
  right: 10px;
  bottom: 0px;
}
.about-inner-left .text {
  font-size: 13px;
  line-height: 250%;
}
.about-inner .about-inner-right {
  width: 53%;
}
.about-inner-list {
  display: flex;
}
.about-inner-list > li {
  width: 47%;
}
.about-inner-list > li:last-of-type {
  margin-left: 7%;
}
.about-inner-list > li:last-of-type {
  margin-top: 50px;
}
.about-inner-list > li > img {
  max-width: 100%;
  margin-left: -17.5px;
  margin-bottom: 35px;
  box-shadow: 20px 20px 0px #22aae1;
}
.about-inner-list > li h3 {
  margin-top: 15px;
  text-align: center;
  font-size: 20px;
}
@media (max-width:640px) {
  .about-inner .about-inner-left {
    width: auto;
  }
  .about-inner-list {
    margin-top: 30px;
    display: flex!important;
    justify-content: space-around;
  }
  .about-inner-list > li {
    width: 46%;
  }
  .about-inner-list > li:last-of-type {
    margin-left: 0;
  }
  .about-inner-list > li:last-of-type {
    margin-top: 0;
  }
  .about-inner-list > li > img {
    max-width: 100%;
    margin-left: -2%;
    margin-bottom: 5px;
    box-shadow: 10px 10px 0px #22aae1;
  }
  .about-inner-list > li h3 {
    font-size: 13px;
    line-height: 20px;
  }
  .about-inner-left strong {
    display: flex;
    margin: 0;
    padding: 20px 10px;
    font-size: 18px;
    justify-content: center;
  }
  .about-inner-left .text {
    font-size: 11px;
  }
}

.section-merit {
  background: url(/recruit/pubstagirl/img/bg-merit.jpg) no-repeat center center /cover;
  background-attachment: fixed;
}
.merit-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 46px;
  line-height: 50px;
  color: #ffffff;
  margin-top: -40px;
  margin-bottom: 60px;
}
.merit-inner-list {
  display: flex;
  justify-content: space-around;
  max-width: 1200px;
  margin: 0 auto;
}
.merit-inner-list > li {
  width: 21.9%;
  color: #ffffff;
}
.merit-inner-list > li > img {
  max-width: 100%;
  margin-left: -12.5px;
  margin-bottom: 25px;
  box-shadow: 15px 15px 0px #22aae1;
}
.merit-inner-list > li > h3 {
  text-align: center;
  margin-bottom: 10px;
  font-size: 19px;
}
.merit-inner-list > li > h3 > span {
  text-align: left;
  display: inline-block;
}
.merit-inner-list > li > h3 span > span {
  font-size: 13px;
  display: inline-block;
}
.section-merit .interview-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 930px;
  margin: 60px auto 0;
  background-color: rgba(0, 0, 0, 0.4);
}
.section-merit .interview-area .text-area {
  padding: 20px 0 20px 60px;
  color: #ffffff;
}
.section-merit .interview-area .text-area h3 {
  margin-top: 15px;
  font-size: 30px;
  line-height: 44px;
  margin-bottom: 20px;
}
.section-merit .interview-area .mv-interview {
  width: 370px;
  position: relative;
  padding-top: 277px;
}
.section-merit .interview-area .mv-interview iframe,
.section-merit .interview-area .mv-interview a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.section-merit .interview-area .mv-interview .bt-mv {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 94px;
  height: 94px;
  transform: translate(-50%,-50%);
}
.section-merit .interview-area .mv-interview .bt-load {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 165px;
  height: 52px;
  transform: translate(-50%,-50%);
}
@media (max-width:640px) {
  .merit-title {
    font-size: 26px;
    line-height: 50px;
    color: #ffffff;
    margin-top: -40px;
    margin-bottom: 40px;
  }
  .merit-title span img {
    width: auto;
    height: 60px;
  }
  .merit-inner-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: auto;
    margin: 0 auto;
  }
  .merit-inner-list > li {
    width: 46%;
    color: #ffffff;
    margin-bottom: 20px;
  }
  .merit-inner-list > li p {
    font-size: 11px;
    line-height: 20px;
  }
  .merit-inner-list > li > img {
    max-width: 100%;
    margin-left: -3%;
    margin-bottom: 25px;
    box-shadow: 10px 10px 0px #22aae1;
  }
  .merit-inner-list > li > h3 {
    text-align: center;
    margin-bottom: 10px;
    font-size: 14px;
  }
  .merit-inner-list > li > h3 > span {
    text-align: left;
    display: inline-block;
  }
  .merit-inner-list > li > h3 span > span {
    font-size: 10px;
    display: inline;
  }
  .merit-inner-list > li > h3 br {
    display: none;
  }
  .section-merit .interview-area {
    display: block;
    text-align: center;
    width: auto;
    margin: 60px auto 0;
  }
  .section-merit .interview-area .text-area {
    padding: 30px 20px 20px;
    font-size: 11px;
    font-weight: bold;
  }
  .section-merit .interview-area span img {
    width: 140px;
  }
  .section-merit .interview-area .text-area h3 {
    margin-top: 15px;
    font-size: 22px;
    line-height: 34px;
    margin-bottom: 5px;
  }
  .section-merit .interview-area .mv-interview {
    width: 100%;
    position: relative;
    padding-top: 75.3%;
    margin: 0 auto;
  }
  .section-merit .interview-area .mv-interview iframe,
  .section-merit .interview-area .mv-interview a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .section-merit .interview-area .mv-interview .bt-mv {
    display: none;
  }
  .section-merit .interview-area .mv-interview .bt-load {
    display: block;
    margin-top: 10px;
  }
  
}

.section-work {
  background: #F7E602 url(/recruit/pubstagirl/img/bg-work.png) repeat center center;
  background-attachment: fixed;
}
.section-work .section-title::after {
  position: absolute;
  bottom: -30px;
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  background-color: #000000;
  border-bottom: #ffffff solid 3px;
}
.work-inner-list {
  display: flex;
  justify-content: space-around;
  max-width: 1200px;
  margin: 0 auto;
}
.work-inner-list > li {
  width: 30%;
}
.work-inner-list > li > p > img {
  max-width: 100%;
  margin-left: -17.5px;
  margin-bottom: 35px;
  box-shadow: 20px 20px 0px #4c4c4c;
}
.work-inner-list > li > div > h3 {
  margin-bottom: 10px;
  font-size: 21px;
  text-align: center;
}
.section-work-detail {
  padding: 30px;
  border-radius: 40px;
  max-width: 1200px;
  margin: 40px auto 0;
  border: solid 10px #000000;
  box-sizing: border-box;
  background-color: #ffffff;
}
.section-work-detail h3 {
  text-align: center;
  font-size: 33px;
  margin-bottom: 40px;
}
.section-work-detail h3 span {
  display: block;
  font-size: 20px;
  margin-bottom: 15px;
}
.work-detail-list {
  display: flex;
  justify-content: center;
  margin-bottom: -100px;
}
.work-detail-list > li {
  padding: 20px;
  width: 40%;
  border-radius: 20px;
  border: solid 10px #ED207B;
  background-color: #ffffff;
  font-size: 13px;
  margin: 0 2%;
}
.work-detail-list > li .bnr-pg-area {
  position: relative;
  bottom: -30px;
  margin-bottom: -30px;
}
.bnr-pg-area img {
  transition: all .2s ease-in-out;
  transform: scale(1);
}
.bnr-pg-area:hover img {
  transform: scale(1.04);
}
.work-detail-list > li h4 {
  font-size: 19px;
  margin-bottom: 13px;
}
.work-detail-list > li h4 span {
  color: #20D4ED;
}
@media (max-width:640px) {
  .work-inner-list {
    display: block;
    justify-content: space-around;
    margin: 0 auto;
  }
  .work-inner-list > li {
    width: 100%;
    display: flex;
    margin-bottom: 20px;
  }
  .work-inner-list > li > p {
    width: 42%;
    margin-right: 20px;
  }
  .work-inner-list > li > p > img {
    max-width: 100%;
    margin-left: -2%;
    margin-bottom: 17px;
    box-shadow: 10px 10px 0px #4c4c4c;
  }
  .work-inner-list > li > div > h3 {
    margin-bottom: 3px;
    font-size: 16px;
    text-align: left;
  }
  .work-inner-list > li > div {
    width: 47%;
  }
  .work-inner-list > li > div > p {
    font-size: 11px;
    line-height: 20px;
  }
  .section-work-detail {
    padding: 20px;
    margin: 20px auto 0;
  }
  .section-work-detail h3 {
    text-align: center;
    font-size: 25px;
    margin-bottom: 40px;
  }
  .section-work-detail h3 span {
    display: block;
    font-size: 15px;
    margin-bottom: 10px;
  }
  .work-detail-list {
    display: block;
    justify-content: space-between;
    margin-bottom: -60px;
  }
  .work-detail-list > li {
    padding: 20px;
    font-size: 13px;
    width: calc(100% + 80px);
    margin: 0 -40px 20px;
  }
  .work-detail-list > li:last-of-type {
    padding: 20px;
    width: auto;
  }
  .work-detail-list > li .bnr-pg-area {
    position: relative;
    bottom: -30px;
    margin-bottom: -30px;
  }
  .bnr-pg-area img {
    transition: all .2s ease-in-out;
    transform: scale(1);
  }
  .bnr-pg-area:hover img {
    transform: scale(1.04);
  }
  .work-detail-list > li h4 {
    font-size: 19px;
    margin-bottom: 13px;
  }
  .work-detail-list > li h4 span {
    color: #20D4ED;
  }
}

.section-wanted table {
  width: 1200px;
  margin: 0 auto 30px;

}
.section-wanted table th {
  padding: 30px 10px;
  width: 300px;
  font-size: 18px;
  border-bottom: solid 2px #000000;
  font-weight: 900;
  font-family: 'Noto Sans JP', sans-serif;
  vertical-align: middle;
}
.section-wanted table td {
  padding: 30px;
  font-size: 15px;
  border-bottom: solid 2px #dddddd;
}
@media (max-width:640px) {
  .section-wanted table {
    width: 100%;
    margin: 0 auto 30px;
  }
  .section-wanted table th {
    display: block;
    padding: 10px;
    width: auto;
    font-size: 15px;
    text-align: left;
  }
  .section-wanted table td {
    display: block;
    padding: 10px 0 20px;
    font-size: 13px;
    border-bottom: none;
  }
}

.section-shops {
  background-color: #EEEFF8;
}
.shops-inner-list {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}
.shops-inner-list > li {
  width: 23%;
  margin-right: 2.6%;
  margin-bottom: 30px;
}
.shops-inner-list > li a {
  transition: all .2s ease-in-out;
  display: block;
  color: #000;
  text-decoration: none;
  transform: scale(1);
}
.shops-inner-list > li a:hover {
  transform: scale(1.02);
}
.shops-inner-list > li:nth-child(4n) {
  margin-right: 0%;
}
.shops-inner-list > li img {
  margin-left: -12.5px;
  width: 100%;
  margin-bottom: 25px;
  box-shadow: 15px 15px 0px #22aae1;
}
.shops-inner-list > li h3 {
  margin-bottom: 10px;
  font-size: 16px;
}
.shops-inner-list > li p {
  font-size: 12px;
  line-height: 18px;
}
@media (max-width:640px) {
  .shops-inner-list {
    display: block;
    max-width: auto;
    margin: 0 auto;
  }
  .shops-inner-list > li {
    width: auto;
    margin-right: 0;
    margin-bottom: 30px;
  }
  .shops-inner-list > li a {
    display: flex;
  }
  .shops-inner-list > li a > p {
    width: 45%;
    margin-right: 15px;
  }
  .shops-inner-list > li a > div {
    width: 65%;
  }
  .shops-inner-list > li img {
    margin-left:0;
    width: 100%;
    margin-bottom: 0;
    box-shadow: 5px 5px 0px #22aae1;
  }
  .shops-inner-list > li h3 {
    margin-bottom: 5px;
    font-size: 12px;
    line-height: 18px;
  }
  .shops-inner-list > li p {
    font-size: 10px;
    line-height: 15px;
  }
}

.mb15 {
  margin-bottom: 15px;
}
.tac {
  text-align: center;
}