@charset "UTF-8";
/*
----------
work.css
----------
*/
/* mainvisual
------------- */
.mainvisual {
  position: relative;
  width: 100%;
  height: 55vh;
  background-color: #000;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
}
.mainvisual:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
.mainvisual__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.mainvisual h1 {
  color: white;
  text-align: center;
  font-size: 34px;
  letter-spacing: 2px;
}
.mainvisual h2 {
  color: #c98d36;
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
}

/* ホールスタッフ募集の背景画像 */
.mainvisual.mv_hall {
  background-image: url(../img/work/kv_bg_hall.jpg);
  background-position: center center;
}

/* キッチンタッフ募集の背景画像 */
.mainvisual.mv_kitchen {
  background-image: url(../img/work/kv_bg_kitchen.jpg);
  background-position: center center;
}

@media screen and (max-width: 750px) {
  .mainvisual {
    height: 26vh;
  }
  .mainvisual__text {
    width: 96%;
  }
  .mainvisual h1 {
    font-size: 1.3rem;
    letter-spacing: 2px;
  }
  .mainvisual h2 {
    font-size: 1rem;
  }
}
/* intro
------------- */
.intro {
  position: relative;
  width: 100%;
  background-color: black;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../img/work/intro-bg.jpg);
  background-position: center center;
  background-attachment: fixed;
  padding: 8rem 0;
}
.intro__inner {
  max-width: 700px;
  margin: 0 auto;
}
.intro__inner h2,
.intro__inner p {
  color: white;
  text-align: center;
}
.intro__inner h2 {
  font-size: 1.5rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  margin: 0 auto 2rem auto;
}
.intro__inner p {
  font-weight: 500;
  margin: 0 auto;
  line-height: 1.8;
}
.intro__inner h4 {
  text-align: center;
  margin-top: 2rem;
}

@media screen and (max-width: 750px) {
  .intro {
    padding: 3rem 0;
    background-size: 150% auto;
  }
  .intro__inner h2 {
    width: 90%;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0 auto 1rem auto;
  }
  .intro__inner p {
    width: 75%;
    font-size: 1rem;
    line-height: 1.7;
  }
  .intro__inner h4 {
    margin-top: 2rem;
    max-width: 60%;
  }
}
/* interview
------------- */
.interview__container {
  max-width: 1000px;
  margin: 0 auto;
}
.interview__wrap {
  width: 88%;
  margin: 1rem auto 1rem auto;
  padding: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.interview__photo {
  flex-basis: 380px;
}
.interview figure {
  width: 380px;
  height: 449px;
  position: relative;
}
.interview figure img {
  position: relative;
  z-index: 1;
}
.interview__line {
  border: 1px solid #94622a;
  position: absolute;
  right: -15px;
  bottom: -15px;
  width: 380px;
  height: 449px;
}
.interview__text {
  flex-basis: calc(100% - 380px - 50px);
}
.interview__text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 1rem auto 1rem auto;
}

@media screen and (max-width: 999px) {
  .interview__photo {
    flex-basis: 40%;
  }
  .interview figure {
    width: 100%;
  }
  .interview__line {
    border: 0 solid #94622a;
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    top: 0;
    width: auto;
    height: auto;
  }
  .interview__text {
    flex-basis: calc(60% - 30px);
  }
}
@media screen and (max-width: 750px) {
  .interview {
    padding-bottom: 2rem;
  }
  .interview__wrap {
    flex-direction: column;
    margin: 0 auto;
  }
  .interview__photo {
    flex-basis: 40%;
  }
  .interview figure {
    width: 70%;
    height: auto;
    margin: 0 auto;
  }
  .interview__line {
    border: 0 !important;
  }
  .interview__text {
    flex-basis: 100%;
    padding: 0 2rem;
  }
  .interview__text h3 {
    margin: 1rem auto 0.25rem auto;
  }
  .interview p {
    font-size: 0.9rem;
  }
  .interview__text h3 {
    font-size: 1.3rem;
  }
}
/* swiperの設定 */
.interview .swiper-horizontal > .interview .swiper-pagination-bullets,
.interview .swiper-pagination-bullets.swiper-pagination-horizontal,
.interview .swiper-pagination-custom,
.interview .swiper-pagination-fraction {
  bottom: 0;
  left: 0;
  width: 100%;
}

.interview .swiper-button-prev,
.interview .swiper-button-next {
  --swiper-theme-color: v.$col_gold;
  color: #c98d36;
}

.interview .swiper-button-prev:after,
.interview .swiper-button-next:after {
  font-size: 2rem;
}

/* advantage
------------- */
.advantage__flow {
  position: relative;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../img/work/carrer_kitchen_bg.jpg);
  background-position: center center;
}
.advantage__flow__inner {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 94%;
  margin: 0 auto 1rem auto;
  max-width: 1000px;
}
.advantage__flow__inner dl {
  background-color: #ebe7e4;
  padding: 1.5rem;
  width: 32.5%;
  border-radius: 2.5%;
}
.advantage__flow__inner dt {
  width: 100%;
  height: 100px;
  text-align: center;
  display: flex;
  align-items: flex-end;
}
.advantage__flow__inner dt img {
  margin: 0 auto;
}
.advantage__flow__inner dl:nth-of-type(1) dt img {
  height: 65px;
}
.advantage__flow__inner dl:nth-of-type(2) dt img {
  height: 75px;
}
.advantage__flow__inner dl:nth-of-type(3) dt img {
  height: 100px;
}
.advantage__flow__inner dd {
  width: 100%;
}
.advantage__flow__inner h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0.75rem auto 0.25rem auto;
  color: #c98d36;
  text-align: center;
}
.advantage__flow__inner h3 span {
  padding: 1px 14px 1px 5px;
  position: relative;
  z-index: 1;
  text-align: center;
  margin: 0 auto;
  color: white;
  font-size: 0.9rem;
  line-height: 1.3;
  font-weight: 500;
}
.advantage__flow__inner h3 span:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  transform: skewX(-20deg);
  margin-right: 10px;
  background-color: #c98d36;
}
.advantage__flow__inner p {
  font-weight: 500;
  margin: 0 auto;
  font-size: 1rem;
}

@media screen and (max-width: 750px) {
  .advantage__flow__inner {
    width: 94%;
    margin: 0 auto 1rem auto;
    flex-direction: column;
  }
  .advantage__flow__inner dl {
    padding: 1.75rem 1.25rem;
    margin-bottom: 10px;
    width: 100%;
  }
  .advantage__flow__inner dt {
    height: auto;
  }
  .advantage__flow__inner h3 {
    font-size: 1.3rem;
    text-align: left;
  }
  .advantage__flow__inner h3 span {
    font-size: 0.9rem;
  }
  .advantage__flow__inner p {
    margin-bottom: 10px;
    font-weight: inherit;
    line-height: 1.6;
  }
}
/* ホールスタッフ */
.advantage__hall {
  background-image: url(../img/work/carrer_hall_bg.jpg);
}

.advantage__kitchen {
  background-image: url(../img/work/carrer_kitchen_bg.jpg);
}

/* ボタン
------------- */
.recruit_button_list {
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../img/work/recruit_buttons_bg.jpg);
  background-position: center center;
  background-attachment: fixed;
  background-color: black;
  position: relative;
  padding: 6rem 0;
}
.recruit_button_list:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
.recruit_button_list ul {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.recruit_button_list ul li {
  color: white;
  width: 33%;
}
.recruit_button_list ul .btn__recruit {
  padding: 1.5rem 0.5rem;
  letter-spacing: 2px;
  font-weight: 500;
  font-size: 1.1rem;
}

@media screen and (max-width: 750px) {
  .recruit_button_list {
    padding: 3rem 0;
  }
  .recruit_button_list ul {
    width: 100%;
    flex-direction: column;
  }
  .recruit_button_list ul li {
    width: 100%;
    margin-bottom: 10px;
  }
  .recruit_button_list ul .btn__recruit {
    font-size: 1rem;
  }
}
/* リクルート詳細
------------- */
.recruit_details {
  background-color: #ebe7e4;
}
.recruit_details dl {
  width: 94%;
  max-width: 1000px;
  margin: 10px auto 10px auto;
  padding: 1.5rem;
  background-color: white;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.recruit_details dl dt {
  width: 340px;
}
.recruit_details dl dd {
  background-color: white;
  width: calc(100% - 340px - 40px);
}
.recruit_details dl h3 {
  color: #c98d36;
  font-size: 1.4rem;
  font-weight: 500;
  margin: 1rem;
}
.recruit_details dl p {
  padding: 0 2rem 1rem 1rem;
}
.recruit_details a {
  text-decoration: underline;
  color: black;
}
.recruit_details a:hover {
  text-decoration: none;
  color: #7d4411;
}

@media screen and (max-width: 750px) {
  .recruit_details {
    background-color: #ebe7e4;
  }
  .recruit_details dl {
    padding: 1rem;
  }
  .recruit_details dl dt {
    width: 100%;
  }
  .recruit_details dl dd {
    width: 100%;
  }
  .recruit_details dl h3 {
    font-size: 1.2rem;
  }
  .recruit_details dl p {
    padding: 0 1rem 0 1rem;
  }
}

h4 {
    margin-bottom: 0.25em;
}
.swiper-button-next, .swiper-button-prev {
    top: var(--swiper-navigation-top-offset,30%)!important;
}