@charset "UTF-8";
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 62.5%;
  scroll-padding-top: 100px;
  scroll-behavior: smooth;
}
body {
  background: #28140a;
  color: #333;
  font: 1.4rem/1.6 "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック",
    "MS PGothic", sans-serif;
  -webkit-text-size-adjust: 100%;
}
img {
  vertical-align: top;
}
ul,
li {
  list-style: none;
}
#wrapper {
  position: relative;
  width: 100%;
}
#content {
  opacity: 1;
  overflow-x: hidden;
}
.menu_bg {
  position: relative;
  z-index: 1;
  opacity: 0.5 !important;
}

.inner {
  padding-inline: 15px;
}
.fruid {
  width: 100%;
  height: auto;
}
.c-heading {
  --heading-img-width: 0;
  --heading-img-height: 0;
  --heading-img-bgColor: #fff;
  display: grid;
  place-items: center;
  row-gap: 10px;
  position: relative;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E",
    "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 2.2rem;
  text-align: center;
}
.c-heading::before {
  position: relative;
  z-index: 1;
  width: var(--heading-img-width);
  height: var(--heading-img-height);
  padding-inline: 15px;
  background-color: var(--heading-img-bgColor);
  background-size: var(--heading-img-width) var(--heading-img-height);
  background-repeat: no-repeat;
  background-position: center;
  content: "";
}
.c-heading::after {
  position: absolute;
  top: calc((var(--heading-img-height) / 2));
  left: 0;
  width: 100%;
  border-top: 3px dotted #f8e098;
  content: "";
}
.c-bottom-text {
  position: relative;
  margin-top: 50px;
  padding-block: 80px 60px;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E",
    "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  color: #e5004f;
  font-weight: bold;
  text-align: center;
  text-shadow: 0 0 5px #fff;
}
.c-bottom-text::before {
  position: absolute;
  inset-inline: 0;
  top: -31px;
  aspect-ratio: 1;
  width: 62px;
  margin-inline: auto;
  content: "";
}
@media (min-width: 960px) {
  html {
    scroll-padding-top: 100px;
  }
  body {
    font-size: 1.6rem;
  }
  .inner {
    box-sizing: content-box;
    max-width: 960px;
    margin-inline: auto;
    padding-inline: 40px;
  }
  .c-heading {
    row-gap: 20px;
    font-size: 2.8rem;
  }
  .c-bottom-text {
    margin-top: 120px;
  }
  .c-bottom-text::before {
    top: -62px;
    width: 124px;
  }
}

.header_officialLink {
  background-color: #be7a0d;
}
.header_officialLink a {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 15px;
  height: 50px;
  color: #fff;
  font-size: clamp(1.6rem, 4.3vw, 2.4rem);
  font-weight: bold;
  text-decoration: none;
}
.header_officialLink .arrow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -2px;
}
.header_officialLink .arrow::before,
.header_officialLink .arrow::after {
  transform-origin: 91% center;
  position: absolute;
  width: clamp(10px, 2.7vw, 15px);
  height: 3px;
  content: "";
  background-color: #fedda8;
}
.header_officialLink .arrow::before {
  border-radius: 2px 2px 0;
  rotate: -45deg;
}
.header_officialLink .arrow::after {
  border-radius: 2px 0 2px 2px;
  rotate: 45deg;
}

header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  border-bottom: 1px solid #ccc;
  background: #fffdf6;
}
.header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
  padding-inline: 5px 10px;
}
.h-ttl {
  display: flex;
  align-items: center;
  width: calc(100% - 55px);
  font-size: 0.9rem;
  color: #333;
}
.h-ttl img {
  width: 110px;
  height: 23px;
}
.h-ttl_text {
  display: block;
  padding: 0 5px 0 8px;
  font-weight: normal;
  line-height: 1.5;
}
.h-ttl_new {
  display: flex;
  align-items: center;
  width: calc(100% - 55px);
  font-size: 1rem;
  color: #333;
}
.h-ttl_new img {
  width: 128px;
  height: auto;
}
.menu_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 5px;
  background: #f4a82f;
  width: 70px;
  height: 28px;
  border-radius: 3px;
  font-size: 1rem;
  color: #fff;
  line-height: initial;
  cursor: pointer;
}
.menu_btn:before {
  background-image: url("../images/recruit/menu_icon.png");
  background-size: 10px 9px;
  width: 10px;
  height: 9px;
  content: "";
}
.menu_btn.close:before {
  background-image: url("../images/recruit/menu_icon_close.png");
  background-size: 10px 10px;
  width: 10px;
  height: 10px;
}

@media (min-width: 960px) {
  .header_inner {
    height: 78px;
    padding-inline: 20px;
  }
  .h-ttl {
    height: 78px;
    font-size: 1.8rem;
    color: #333;
    font-weight: normal;
  }
  .h-ttl img {
    width: 220px;
    height: 46px;
    margin-right: 20px;
  }
  .h-ttl_new {
    height: 78px;
    font-size: 1.8rem;
    color: #333;
    font-weight: normal;
  }
  .h-ttl_new img {
    width: 256px;
    margin-right: 20px;
  }
  .menu_btn {
    position: relative;
    width: 110px;
    height: 40px;
    font-size: 1.6rem;
  }
}

.drawer {
  position: fixed;
  top: 100px;
  right: -235px;
  z-index: 1;
  overflow: auto;
  width: 235px;
  height: calc(100% - 100px);
  background: #ffe7c2;
  transition: 0.3s ease-out;
}
.drawer.active {
  right: 0;
}
.drawer li a {
  display: block;
  position: relative;
  padding: 15px 0 15px 30px;
  font-size: 1.2rem;
  color: #000;
  text-decoration: none;
}
.drawer a:before {
  transform: rotate(45deg);
  position: absolute;
  left: 10px;
  top: 18px;
  width: 7px;
  height: 7px;
  border-top: 2px solid #e89819;
  border-right: 2px solid #e89819;
  content: "";
}
.drawer li {
  border-bottom: 1px solid #e1bb9a;
}

@media (min-width: 960px) {
  .drawer {
    top: 128px;
    right: -270px;
    width: 270px;
    height: calc(100% - 128px);
  }
  .drawer li a {
    padding: 24px 26px 24px 40px;
    font-size: 1.3rem;
  }
  .drawer a:before {
    left: 20px;
    top: 29px;
  }
}

.top-img {
  position: relative;
  overflow: hidden;
  max-height: 548px;
  background-image: url("../images/recruit/hero_img_bg.jpg");
  background-repeat: repeat-x;
  background-position: center 0;
  background-size: cover;
}
.top-img .inner {
  display: flex;
  height: 100%;
}
.top-img img {
  max-width: 100%;
  height: auto;
}
.top-img__text {
  display: flex;
  z-index: 2;
  align-items: flex-start;
  justify-content: flex-end;
  width: 60%;
  margin-right: -12%;
  padding-top: 5px;
  padding-bottom: 20px;
}
.top-img .inner::after {
  z-index: 1;
  width: 52%;
  background: url("../images/recruit/top-img.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  content: "";
}

@media (min-width: 768px) {
  .top-img__text {
    padding-top: 10px;
    padding-bottom: 30px;
  }
}

@media (min-width: 960px) {
  .top-img {
    background-size: contain;
  }
}

.about {
  background-image: url("../images/recruit/about_bg.png");
  background-repeat: repeat;
  padding: 20px 10px;
}
.about .inner {
  padding: 50px 20px 40px;
  background: #fff;
  border-radius: 10px;
  text-align: center;
  text-wrap: balance;
}
.about .inner > * + * {
  margin-top: 20px;
}

.about-ttl {
  margin-bottom: 40px;
}
.about-ttl img {
  width: 250px;
  max-width: 100%;
  height: auto;
}
.about-ttl_new {
  margin-bottom: 40px;
}
.about-ttl_new img {
  --aboutHeading-maxW: 249px;
  width: min(100%, var(--aboutHeading-maxW));
  height: auto;
}
.about-bottom-img img {
  max-width: 534px;
}
.about p .em {
  color: #dc1e46;
  font-weight: bold;
}
@media (min-width: 960px) {
  .about {
    padding-block: 80px;
  }
  .about .inner {
    padding-block: 100px 60px;
  }
  .about .inner > * + * {
    margin-top: 40px;
  }
  .about-ttl {
    margin-bottom: 80px;
  }
  .about-ttl img {
    max-width: 500px;
    width: 100%;
  }
  .about-ttl_new {
    margin-bottom: 80px;
  }
  .about-ttl_new img {
    --aboutHeading-maxW: 498px;
  }
}

.why {
  padding-top: 50px;
  background: #fff;
  text-align: center;
  text-wrap: balance;
}
.why .c-heading {
  --heading-img-width: 100px;
  --heading-img-height: 17px;
  margin-bottom: 40px;
  color: #d58c28;
  font-size: 2rem;
}
.why .c-heading::before {
  background-color: #fff;
  background-image: url("../images/recruit/why-heading.png");
}
.why-items {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
.why-item dt {
  margin-bottom: 20px;
  font-weight: bold;
}
.why-item dt::before {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  width: 60px;
  margin-bottom: 15px;
  margin-inline: auto;
  border-radius: 50%;
  background: #26b480;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E",
    "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  color: #fff;
}
.why-item:nth-of-type(1) dt::before {
  content: "理由１";
}
.why-item:nth-of-type(2) dt::before {
  content: "理由２";
}
.why-item:nth-of-type(3) dt::before {
  content: "理由３";
}
.why-bottom {
  background-image: url("../images/recruit/why_last_bg.jpg");
  background-size: cover;
  font-size: 1.8rem;
}
.why-bottom:before {
  background-image: url("../images/recruit/point.png");
  background-size: 62px 62px;
}
@media (min-width: 960px) {
  .why {
    padding-top: 80px;
  }
  .why .c-heading {
    --heading-img-width: 129px;
    --heading-img-height: 22px;
    margin-bottom: 80px;
  }
  .why .c-heading::before {
    background-image: url("../images/recruit/why-heading--pc.png");
  }
  .why .c-heading span::after {
    top: 11px;
  }
  .why-items {
    flex-direction: row;
    column-gap: 40px;
  }
  .why-item {
    flex: 1;
  }
  .why-item dt {
    margin-bottom: 30px;
  }
  .why-item dt::before {
    width: 100px;
    margin-bottom: 20px;
    font-size: 2rem;
  }
  .why-bottom {
    font-size: 3rem;
  }
  .why-bottom:before {
    background-size: 124px 124px;
  }
}

.promise {
  padding-top: 50px;
  background: #fffbeb;
  text-align: center;
  text-wrap: balance;
}
.promise .c-heading {
  --heading-img-width: 126px;
  --heading-img-height: 19px;
  --heading-img-bgColor: #fffbeb;
  margin-bottom: 40px;
  color: #d58c28;
}
.promise .c-heading::before {
  background-image: url("../images/recruit/promise-heading.png");
}
.promise-lead_img img {
  max-width: 276px;
  width: 100%;
  height: auto;
  box-shadow: 3px 3px 7px rgb(0 0 0 / 0.3);
}
.promise-lead_txt p {
  margin-bottom: 20px;
}
.promise-lead_txt .em {
  font-weight: bold;
}
.promise-lead_txt p .em {
  color: #e5004f;
}

.promise-img {
  margin-top: 50px;
}
.promise-img h3 {
  margin-bottom: 40px;
  background-image: url("../images/recruit/promise-img_border.png");
  background-repeat: repeat-x;
  background-size: contain;
  background-position: center;
}
.promise-img h3 img {
  max-width: 450px;
  width: 100%;
  height: auto;
}
.promise-img-items {
  display: grid;
  gap: 20px;
}
.promise-img-items img {
  max-width: 315px;
  box-shadow: 3px 3px 7px rgb(0 0 0 / 0.3);
}
.promise-bottom {
  background-image: url("../images/recruit/promise_last_bg.jpg");
  background-size: cover;
  font-size: 2rem;
}
.promise-bottom:before {
  background-image: url("../images/recruit/but.png");
  background-size: 62px 62px;
}

@media (min-width: 960px) {
  .promise {
    padding-top: 80px;
    background: #fffbeb;
    text-align: center;
  }
  .promise .c-heading {
    margin-bottom: 80px;
  }
  .promise .c-heading::before {
    --heading-img-width: 164px;
    --heading-img-height: 22px;
    background-image: url("../images/recruit/promise-heading--pc.png");
  }
  .promise-lead {
    display: flex;
    width: 826px;
    margin-bottom: 80px;
    margin-inline: auto;
  }
  .promise-lead_txt {
    width: 550px;
    padding-right: 50px;
  }
  .promise-lead_txt p {
    margin-bottom: 40px;
  }
  .promise-lead_txt .em {
    font-size: 2rem;
  }
  .promise-img h3 {
    margin-bottom: 60px;
  }
  .promise-img-items {
    grid-template-columns: 1fr 1fr;
  }
  .promise-img-item img {
    max-width: 630px;
  }
  .promise-bottom {
    font-size: 3rem;
  }
  .promise-bottom:before {
    background-size: 124px 124px;
  }
}

.howmatch {
  padding-block: 50px 40px;
  background: #fff;
  text-align: center;
}
.howmatch .c-heading {
  --heading-img-width: 128px;
  --heading-img-height: 20px;
  margin-bottom: 40px;
  color: #d58c28;
}
.howmatch .c-heading::before {
  background-image: url("../images/recruit/howmatch-heading.png");
}
.graph {
  display: grid;
  place-content: center;
  place-items: center;
  gap: 20px;
  text-align: center;
}
.graph-img {
  max-width: 203px;
}
.graph-text > * + * {
  margin-top: 20px;
}
.graph-text .em {
  color: #e5004f;
  font-weight: bold;
}
.graph-text img {
  max-width: 259px;
  width: 100%;
  height: auto;
}

@media (min-width: 960px) {
  .howmatch {
    padding-block: 80px 60px;
  }
  .howmatch .c-heading {
    --heading-img-width: 166px;
    --heading-img-height: 22px;
    margin-bottom: 80px;
  }
  .howmatch .c-heading::before {
    background-image: url("../images/recruit/howmatch-heading--pc.png");
  }
  .graph {
    grid-template-columns: auto 1fr;
  }
  .graph-img {
    max-width: 406px;
  }
}

.no1 {
  padding-block: 50px 40px;
  background: #fffbeb;
  text-align: center;
}
.no1 .c-heading {
  --heading-img-width: 124px;
  --heading-img-height: 20px;
  --heading-img-bgColor: #fffbeb;
  margin-bottom: 40px;
  color: #d58c28;
}
.no1 .c-heading::before {
  background-image: url("../images/recruit/no1-heading.png");
}
.no1-lead {
  display: grid;
  gap: 20px;
}
.no1-lead-text > * + * {
  margin-top: 20px;
}
.no1-lead-text .em {
  color: #e5004f;
  font-weight: bold;
}
.no1-lead-img img {
  max-width: 198px;
}
.no1-lead-img aside {
  margin-top: 15px;
}

.shoplist {
  margin-top: 50px;
  margin-inline: auto;
  padding: 20px 15px;
  border: 2px solid #f0dcc8;
  background: #fff;
}
.shoplist-heading {
  font-size: 1.6rem;
  font-weight: bold;
}
.shoplist_text {
  margin-bottom: 20px;
}
.shop-items {
  display: grid;
  gap: 15px;
}
.shop-item {
  overflow: hidden;
  width: 100%;
  border-radius: 5px;
  background: #fff;
}
.shop-item_area {
  padding-block: 10px;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
}
.shop-item_inner {
  padding: 20px 15px;
}
#shibuya {
  border: 2px solid #46ce9c;
}
#shibuya .shop-item_area {
  background: #46ce9c;
}
#ueno {
  border: 2px solid #8cbaf3;
}
#ueno .shop-item_area {
  background: #8cbaf3;
}
#ikebukuro {
  border: 1px solid #ff72bb;
}
#ikebukuro .shop-item_area {
  background: #ff72bb;
}
#tachikawa {
  border: 1px solid #f28c6d;
}
#tachikawa .shop-item_area {
  background: #f28c6d;
}
#akiba {
  border: 1px solid #ee77bd;
}
#akiba .shop-item_area {
  background: #ee77bd;
}
#gotanda {
  border: 1px solid #ff548d;
}
#gotanda .shop-item_area {
  background: #ff548d;
}
#shinjuku {
  border: 1px solid #ff6f61;
}
#shinjuku .shop-item_area {
  background: #ff6f61;
}
#hachioji {
  border: 1px solid #326eaa;
}
#hachioji .shop-item_area {
  background: #326eaa;
}

@media (min-width: 960px) {
  .no1 {
    padding-block: 80px 60px;
  }
  .no1 .c-heading {
    --heading-img-width: 162px;
    --heading-img-height: 22px;
    margin-bottom: 80px;
  }
  .no1 .c-heading::before {
    background-image: url("../images/recruit/no1-heading--pc.png");
  }
  .no1-lead {
    grid-template-columns: auto 1fr;
    place-items: center;
  }
  .no1-lead-text .em {
    font-size: 2rem;
  }
  .no1-lead-img {
    box-sizing: content-box;
    width: 396px;
  }
  .no1-lead-img img {
    max-width: 396px;
  }
  .no1-lead-img aside {
    text-align: left;
  }

  .shoplist_heading {
    font-size: 2rem;
  }
  .shoplist_text {
    margin-bottom: 40px;
  }
  .shoplist {
    width: 780px;
    margin-top: 50px;
    padding: 40px 35px 20px;
  }
  .shop-items {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

.adv {
  display: grid;
  gap: 20px;
  margin-top: 50px;
  margin-inline: auto;
  text-wrap: balance;
}
.adv_left > * + * {
  margin-top: 20px;
}
.adv_left .em {
  color: #dc1e46;
  font-size: 1.6rem;
  font-weight: bold;
}
.adv-item {
  position: relative;
  max-width: 380px;
  margin-inline: auto;
  padding: 20px;
  background-color: #fff;
  background-image: url("../images/recruit/c-parts1.gif"), url("../images/recruit/c-parts2.gif"),
    url("../images/recruit/c-parts3.gif"), url("../images/recruit/c-parts4.gif");
  background-repeat: no-repeat;
  background-position: top 10px left 10px, top 10px right 10px, right 10px bottom 10px, bottom 10px left 10px;
  border: 10px solid #fff0c3;
  box-shadow: 0 2px 0 #dfbb4f inset, -2px 0 0 #dfbb4f inset, 0 -2px 0 #dfbb4f inset, 2px 0 0 #dfbb4f inset;
}
.adv-item dt {
  margin-bottom: 20px;
  font-size: 1.8rem;
  font-weight: bold;
}

@media (min-width: 960px) {
  .adv {
    grid-template-columns: 1fr 380px;
  }
  .adv_left .em {
    font-size: 2rem;
  }
}

.conversion {
  padding-block: 50px 40px;
  background-image: url("../images/recruit/conversion_bg.png");
  background-size: 72px 107px;
  border-top: 20px solid #d88a1a;
  text-align: center;
}
.conversion-heading {
  margin-bottom: 20px;
  padding: 20px 5px;
  font-size: 2.2rem;
  border-top: 4px solid #fff;
  border-bottom: 4px solid #fff;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E",
    "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  color: #551618;
  font-weight: bold;
}
.conversion .count {
  color: #551618;
}
.conversion .count span {
  font-weight: bold;
}
.conversion_img {
  margin-top: 20px;
  margin-inline: -15px;
  padding-block: 20px;
  background: #fffcef;
  text-align: left;
}
.conversion_img_inner {
  display: block;
  max-width: 241px;
}
.conversion_img_heading img,
.conversion_img_text img:nth-of-type(1) {
  position: relative;
  z-index: 1;
}
.conversion_img_heading {
  display: flex;
  align-items: center;
  position: relative;
  height: 32px;
  padding-inline: 20px;
  background: #ffc900;
}
.conversion_img_text {
  position: relative;
  max-width: 630px;
  margin-top: 15px;
  margin-inline: auto;
  padding-left: 20px;
}
.conversion_img_img {
  position: absolute;
  top: -80px;
  right: -30px;
}
@media (min-width: 376px) {
  .conversion_img img {
    display: block;
    margin-inline: auto;
  }
}
@media (min-width: 960px) {
  .conversion_img {
    margin-right: -50vw;
    margin-left: -50vw;
    padding: 40px 50%;
  }
  .conversion_img_inner {
    max-width: 450px;
  }
  .conversion_img_heading {
    height: 66px;
  }
  .conversion_img_heading img {
    width: 450px;
    height: 56px;
  }
  .conversion_img_text {
    max-width: 960px;
  }
  .conversion_img_text img:nth-of-type(1) {
    width: 482px;
    height: 276px;
  }
  .conversion_img_text img:nth-of-type(2) {
    top: -150px;
    right: -50px;
    width: 340px;
    height: 500px;
  }
}

.btn_area {
  display: grid;
  row-gap: 20px;
  max-width: 630px;
  margin-top: 20px;
  margin-inline: auto;
}
.btn_area a {
  position: relative;
  display: block;
  padding-block: 20px;
  border-radius: 5px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(227, 227, 224, 1) 100%);
  color: #fff;
  font-size: 1.2rem;
  text-decoration: none;
}
.btn_area .line a {
  color: #53c110;
}
.btn_area .mail a {
  color: #f842ba;
}
.btn_area .tel a {
  color: #60bde8;
}
.btn_area a:after {
  transform: rotate(45deg);
  position: absolute;
  inset-block: 0;
  right: 15px;
  width: 10px;
  height: 10px;
  margin-block: auto;
  border-top: 2px solid #575757;
  border-right: 2px solid #575757;
  content: "";
}
.btn_area a span {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  font-size: 1.6rem;
  font-weight: bold;
}
.btn_area a span::before {
  background-image: url("../images/recruit/application.png");
  background-size: 18px 42px;
  content: "";
}
.btn_area .line a span:before {
  width: 18px;
  height: 13px;
}
.btn_area .mail a span:before {
  width: 17px;
  height: 13px;
  background-position: 0 -13px;
}
.btn_area .tel a span:before {
  width: 14px;
  height: 16px;
  background-position: 0 -26px;
}

.site_link {
  margin-top: 40px;
}
.site_link a {
  display: block;
  position: relative;
  width: 220px;
  height: 50px;
  margin-inline: auto;
  background: linear-gradient(to bottom, #535353 0%, #000 100%);
  border-radius: 5px;
  font-size: 1.4rem;
  color: #fff;
  font-weight: bold;
  line-height: 50px;
  text-decoration: none;
}
.site_link a:after {
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 15px;
  width: 6px;
  height: 6px;
  margin-top: -4px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  content: "";
}

@media (min-width: 960px) {
  .conversion {
    padding-block: 80px 60px;
  }
  .conversion-heading {
    width: 420px;
    margin: 0 auto 40px;
    padding: 20px 0;
    font-size: 3.2rem;
  }
  .conversion .count {
    margin-bottom: 40px;
  }
  .conversion .count span {
    font-weight: bold;
  }

  .conversion_area {
    justify-content: center;
    column-gap: 20px;
    margin-top: 40px;
  }
  .conversion_area dl {
    width: 100%;
    padding: 25px;
    border-radius: 5px;
    background-color: #fff;
    background-image: url("../images/recruit/c-parts1.gif"), url("../images/recruit/c-parts2.gif"),
      url("../images/recruit/c-parts3.gif"), url("../images/recruit/c-parts4.gif");
    background-repeat: no-repeat;
    background-position: 5px 5px, right 5px top 5px, right 5px bottom 5px, left 5px bottom 5px;
  }
  .conversion_area dt {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    height: 36px;
    margin-bottom: 20px;
    border-radius: 20px;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN",
      "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
  }
  .conversion_area dt::before {
    background-image: url("../images/recruit/application--pc.png");
    content: "";
  }
  .conversion_area .line dt::before {
    width: 28px;
    height: 21px;
  }
  .conversion_area .mail dt::before {
    width: 22px;
    height: 16px;
    background-position: 0 -21px;
  }
  .conversion_area .tel dt::before {
    width: 20px;
    height: 22px;
    background-position: 0 -37px;
  }
  .conversion_area .line dt {
    background: #53c110;
  }
  .line_contents {
    display: flex;
    justify-content: space-between;
    column-gap: 15px;
    text-align: left;
  }
  .line_contents span {
    margin-top: 10px;
    color: #e5004f;
    font-weight: bold;
  }
  .conversion_area .mail dt {
    background: #e4498b;
  }
  .conversion_area .mail dd a {
    position: relative;
    display: block;
    height: 70px;
    border: 1px solid #ff90d9;
    border-radius: 10px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(246, 246, 238, 1) 100%);
    line-height: 70px;
    color: #e5004f;
    text-decoration: none;
  }
  .conversion_area .mail dd a::before {
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    right: 15px;
    left: inherit;
    width: 10px;
    height: 10px;
    margin-top: -5px;
    border-top: 2px solid #ff90d9;
    border-right: 2px solid #ff90d9;
    content: "";
  }
  .conversion_area .tel dt {
    background: #40a6c2;
  }
  .conversion_area .tel dd {
    padding-top: 20px;
    color: #e5004f;
    font-size: 2rem;
    font-weight: bold;
  }

  .site_link a {
    width: 300px;
    height: 60px;
    line-height: 60px;
  }
}

.girl {
  padding-top: 50px;
  background-color: #fff;
  text-align: center;
}
.girl .c-heading {
  --heading-img-width: 82px;
  --heading-img-height: 16px;
  margin-bottom: 40px;
  color: #d58c28;
}
.girl .c-heading::before {
  background-image: url("../images/recruit/girls-heading.png");
}
.girl_img img {
  max-width: 470px;
}
.girl_contents dt:not(.reason-heading),
.girl_contents dd:not(.reason-wrap) {
  margin-top: 20px;
}
.girl_contents dt {
  font-size: 1.8rem;
  color: #dc1e46;
  font-weight: bold;
}
.girl_contents dd {
  text-wrap: balance;
}
.reason-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 13px;
  margin-top: 50px;
  margin-inline: -15px;
  background-image: url("../images/recruit/reason_border.png");
  background-repeat: repeat-x;
  background-size: contain;
}
.reason-wrap {
  margin-inline: -15px;
  padding-block: 50px 20px;
  background-image: url("../images/recruit/reason_bg.jpg");
  background-size: cover;
}
.reason {
  display: grid;
  grid-template-columns: repeat(
    var(--grid-repeat, 2),
    minmax(min(((100% - var(--gutter, 10px)) / var(--grid-repeat, 2)), 220px), 220px)
  );
  justify-content: center;
  gap: 10px;
  padding-inline: 15px;
}
.reason-item {
  display: grid;
  place-content: center;
  place-items: center;
  row-gap: clamp(15px, 4vw, 25px);
  overflow: hidden;
  aspect-ratio: 1;
  padding-inline: 8px;
  background-color: #3ec08e;
  border-radius: 50%;
  box-shadow: 3px 3px 7px rgb(0 0 0 / 0.3);
  color: #fff;
}
.reason-item_text {
  height: calc(2em * 1.5);
  font-size: clamp(11px, 2.9vw, 14px);
}
.reason-item_heading {
  overflow: hidden;
  width: 46px;
  height: 18px;
}
.reason-item:nth-of-type(2) .reason-item_heading img {
  margin-top: -18px;
}
.reason-item:nth-of-type(3) .reason-item_heading img {
  margin-top: -36px;
}
.reason-item:nth-of-type(4) .reason-item_heading img {
  margin-top: -54px;
}
.reason-item:nth-of-type(5) .reason-item_heading img {
  margin-top: -72px;
}
.reason-item:nth-of-type(6) .reason-item_heading img {
  margin-top: -90px;
}

@media (min-width: 768px) {
  .girl_img img {
    max-width: 940px;
  }
  .girl_contents dt:not(.reason-heading),
  .girl_contents dd:not(.reason-wrap) {
    margin-top: 40px;
  }
  .girl_contents dt {
    font-size: 2rem;
  }
  .reason {
    --gutter: 20px;
    gap: 20px;
  }
  .reason-item_heading {
    width: 92px;
    height: 36px;
  }
  .reason-item_heading img {
    width: 92px;
    height: 216px;
  }
  .reason-item:nth-of-type(2) .reason-item_heading img {
    margin-top: -36px;
  }
  .reason-item:nth-of-type(3) .reason-item_heading img {
    margin-top: -72px;
  }
  .reason-item:nth-of-type(4) .reason-item_heading img {
    margin-top: -108px;
  }
  .reason-item:nth-of-type(5) .reason-item_heading img {
    margin-top: -144px;
  }
  .reason-item:nth-of-type(6) .reason-item_heading img {
    margin-top: -180px;
  }
}
@media (min-width: 960px) {
  .girl {
    padding-top: 80px;
  }
  .girl .inner {
    max-width: 100%;
    margin-inline: -25px;
  }
  .girl .c-heading {
    --heading-img-width: 106px;
    --heading-img-height: 18px;
    margin-bottom: 80px;
  }
  .girl .c-heading::before {
    background-image: url("../images/recruit/girls-heading--pc.png");
  }
  .girl_contents dt:not(.reason-heading),
  .girl_contents dd:not(.reason-wrap) {
    margin-top: 50px;
  }
  .girl_contents dt {
    font-size: 3.2rem;
  }
  .reason-heading {
    margin-top: 80px;
  }
  .reason-wrap {
    padding-block: 80px 40px;
  }
  .reason {
    --grid-repeat: 3;
  }
}

.kankyo {
  background-image: url("../images/recruit/kankyo_bg.png");
  background-size: 171px 165px;
  background-position: center;
  padding-block: 40px;
  text-align: center;
}
.kankyo .c-heading {
  --heading-img-width: 136px;
  --heading-img-height: 19px;
  --heading-img-bgColor: transparent;
  margin-bottom: 40px;
  color: #4a2600;
}
.kankyo .c-heading::before {
  background-image: url("../images/recruit/environment-heading.png"), url("../images/recruit/kankyo_bg.png");
  background-size: contain, 171px 165px;
  background-position: center, center;
  background-repeat: no-repeat, repeat;
}
.kankyo .txt {
  position: relative;
  padding: 20px 10px;
  margin-bottom: 20px;
  border-radius: 10px;
  filter: drop-shadow(3px 3px 8px rgb(0 0 0 / 0.3));
  background: #fff;
}
.kankyo .txt::before {
  position: absolute;
  top: 100%;
  inset-inline: 0;
  width: fit-content;
  height: 0;
  margin-inline: auto;
  border: 14px solid transparent;
  border-top: 10px solid #fff;
  content: "";
}
.kankyo-items {
  display: grid;
  gap: 20px;
}
.kankyo-item {
  display: grid;
  grid-column: 1/4;
  gap: 15px;
  position: relative;
  overflow: hidden;
  padding: 20px 15px;
  background: #fff;
  box-shadow: 3px 3px 7px rgb(0 0 0 / 0.3);
  color: #333;
  text-align: left;
}
.kankyo-item:not(.-aribai) {
  grid-template-columns: 1fr 43%;
  grid-template-rows: auto 1fr;
}
.kankyo-item.-aribai {
  grid-template-rows: auto auto 1fr;
}
.kankyo-item_title {
  grid-column: 1/2;
  padding-left: 10px;
  border-left: 3px solid;
  color: #dc1e46;
  font-size: 1.6rem;
}
.kankyo-item_text {
  grid-row: 2;
}
.kankyo-item_img {
  grid-column: 2/3;
  grid-row: 1/3;
  margin-block: -20px;
  margin-inline-end: -15px;
}
.kankyo-item_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aribai {
  margin-block-end: -20px;
  margin-inline: -15px;
  padding-block: 20px;
  background: #fffae6;
  text-align: center;
}
.aribai_heading {
  position: relative;
  color: #d58c28;
  font-size: 1.8rem;
  font-weight: bold;
}
.aribai_heading span {
  position: relative;
  padding-inline: 15px;
  background: #fffae6;
}
.aribai_heading::before {
  position: absolute;
  inset-block: 0;
  left: 0;
  width: 100%;
  height: 4px;
  margin-block: auto;
  background: #d58c28;
  content: "";
}
.aribai-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  place-content: center;
  gap: 10px;
  box-sizing: content-box;
  max-width: 590px;
  margin-top: 20px;
  margin-inline: auto;
  padding-inline: 15px;
}
.aribai-item {
  position: relative;
  font-size: 1.2rem;
  color: #fff;
}
.aribai-item img {
  width: 100%;
  height: auto;
}
.aribai-item p {
  height: 28px;
  background: #d58c28;
  font-size: clamp(1rem, 3.1vw, 1.2rem);
  line-height: 28px;
}

@media (min-width: 960px) {
  .kankyo {
    padding-block: 80px 60px;
  }
  .kankyo .c-heading {
    --heading-img-width: 188px;
    --heading-img-height: 22px;
    margin-bottom: 80px;
  }
  .kankyo .c-heading::before {
    background-image: url("../images/recruit/environment-heading--pc.png"), url("../images/recruit/kankyo_bg.png");
  }
  .kankyo .txt {
    margin-bottom: 50px;
  }
  .kankyo .txt::before {
    border: 23px solid transparent;
    border-top: 20px solid #fff;
  }
  .kankyo-items {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .kankyo-item {
    border-radius: 10px;
  }
  .kankyo-item:not(.-aribai) {
    grid-column: auto;
    grid-template-columns: 1fr;
    grid-template-rows: subgrid;
    grid-row: span 3;
  }
  .kankyo-item.-aribai {
    grid-template-columns: auto auto;
    grid-template-rows: auto 1fr;
  }
  .kankyo-item.-aribai .kankyo-item_title {
    grid-row: 1/2;
  }
  .kankyo-item_img {
    grid-column: 1;
    grid-row: 3 / 4;
    margin-block: 0 -20px;
    margin-inline: -15px;
  }
  .aribai {
    grid-column: 2;
    grid-row: 1/3;
    margin-block: -20px;
    margin-inline: 0 -15px;
  }
  .aribai-items {
    padding-inline: 20px;
  }
  .aribai-item p {
    height: 56px;
    font-size: 1.6rem;
    line-height: 56px;
  }
}

.workingTime {
  padding-block: 50px 40px;
  background: #fff;
}
.workingTime .c-heading {
  --heading-img-width: 99px;
  --heading-img-height: 16px;
  margin-bottom: 40px;
  color: #d58c28;
}
.workingTime .c-heading::before {
  background-image: url("../images/recruit/workingTime-heading.png");
}
.workingTime .txt {
  margin-bottom: 20px;
  text-align: center;
}
.workingTime-items {
  display: grid;
  row-gap: 20px;
}
.workingTime-item {
  display: flex;
  column-gap: 20px;
  width: min(100%, 600px);
  margin-inline: auto;
  padding: 20px 15px;
  background: #fff;
  border: 5px double #cbc5ae;
}
.workingTime-item img {
  width: 60px;
  height: 80px;
}
.workingTime-item_text {
  flex: 1;
}
.workingTime-item p + p {
  margin-top: 10px;
}
.workingTime-item p span {
  color: #dc1e46;
  font-size: 1.6rem;
  font-weight: bold;
}
@media (min-width: 960px) {
  .workingTime {
    padding-block: 80px 60px;
  }
  .workingTime .c-heading {
    --heading-img-width: 136px;
    --heading-img-height: 22px;
    margin-bottom: 80px;
  }
  .workingTime .c-heading::before {
    background-image: url("../images/recruit/workingTime-heading--pc.png");
  }
  .workingTime .txt {
    margin-bottom: 50px;
  }
  .workingTime-item {
    padding: 20px;
  }
  .workingTime-item img {
    width: 120px;
    height: 160px;
  }
  .workingTime-item p span {
    font-size: 1.8rem;
  }
}

.campaignInterview {
  padding-block: 50px 40px;
  background: #f9f5e6;
}
.campaignInterview .inner {
  max-width: 960px;
  margin-inline: auto;
  padding-inline: 20px;
  text-align: center;
}
.campaignInterview .c-heading {
  --heading-img-width: 78px;
  --heading-img-height: 17px;
  --heading-img-bgColor: #f9f5e6;
  margin-bottom: 40px;
  color: #d58c28;
}
.campaignInterview .c-heading::before {
  background-image: url("../images/recruit/campaignInterview-heading.png");
}
.p-campaignInterview-text1,
.p-campaignInterview-text2 {
  color: #e5004f;
  font-weight: bold;
}
.p-campaignInterview-text1 {
  font-size: 1.8rem;
}
.p-campaignInterview-text2 {
  font-size: 1.6rem;
}
.p-campaignInterview-text3 {
  margin-top: 10px;
  font-size: 1.2rem;
}
.campaignInterview-box {
  margin-top: 25px;
  padding: 40px 15px;
  border-radius: 15px;
  background: #fff;
  box-shadow: 3px 3px 8px rgb(0 0 0 / 0.3);
}
.campaignInterview-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min((100% - var(--gutter, 0)) / var(--grid-length, 1), 100%), 1fr));
  gap: 20px;
  margin-top: 25px;
}
.campaignInterview-item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 15px;
  font-size: 1.2rem;
}
.campaignInterview-item_img {
  display: grid;
  place-content: center;
}
.campaignInterview-item_text {
  margin-top: 10px;
  font-size: 1.6rem;
  font-weight: bold;
}
.campaignInterview-winner {
  max-width: 285px;
  margin-top: 50px;
  margin-inline: auto;
  padding: 30px 20px 20px;
  background: #eee;
}
.campaignInterview-winner_heading {
  margin: -57px -20px 15px;
  text-align: center;
}
.campaignInterview-winner-li li {
  padding: 10px;
  background: #fff;
}

.campaignInterview-winner-li .slick-prev,
.campaignInterview-winner-li .slick-next {
  z-index: 1;
  width: 59px;
  height: 59px;
  border: 2px solid #fff;
  border-radius: 10px;
  box-shadow: 0 0 3px 0 #ae8699 inset;
  background: #fff;
}
.campaignInterview-winner-li .slick-prev {
  left: -30px;
}
.campaignInterview-winner-li .slick-next {
  right: -30px;
}
.campaignInterview-winner-li .slick-prev:before,
.campaignInterview-winner-li .slick-next:before {
  display: inline-block;
  opacity: 1;
  width: 11px;
  height: 11px;
  border-top: 6px solid #ae8699;
  border-right: 6px solid #ae8699;
  content: "";
}
.campaignInterview-winner-li .slick-prev:before {
  transform: rotate(225deg);
  margin-right: -6px;
}
.campaignInterview-winner-li .slick-next:before {
  transform: rotate(45deg);
  margin-left: -6px;
}

@media (min-width: 768px) {
  .campaignInterview-items {
    --grid-length: 2;
    --gutter: 20px;
    margin-top: 50px;
  }
  .campaignInterview-item {
    gap: 20px;
    padding: 20px;
    font-size: 1.4rem;
  }
  .campaignInterview-winner {
    max-width: 620px;
    padding: 40px;
  }
  .campaignInterview-winner_heading {
    margin: -67px -20px 20px;
    text-align: center;
  }
  .campaignInterview-winner-li {
    padding: 20px;
    background: #fff;
  }
  .campaignInterview-winner-li li {
    min-width: 220px;
    margin: 0 10px;
  }
  .campaignInterview .inner {
    padding-inline: 40px;
  }
  .p-campaignInterview-text2 {
    font-size: 1.8rem;
  }
  .p-campaignInterview-text3 {
    font-size: 1.4rem;
  }
  .campaignInterview-item_text {
    font-size: 1.8rem;
  }
}

@media (min-width: 960px) {
  .campaignInterview {
    padding-block: 80px 60px;
  }
  .campaignInterview .inner {
    padding-inline: 40px;
  }
  .campaignInterview .c-heading {
    --heading-img-width: 100px;
    --heading-img-height: 22px;
    margin-bottom: 80px;
  }
  .campaignInterview .c-heading::before {
    background-image: url("../images/recruit/campaignInterview-heading--pc.png");
  }
  .p-campaignInterview-text1 {
    font-size: 2.4rem;
  }
  .campaignInterview-items {
    --grid-length: 3;
    --gutter: 40px;
  }
  .campaignInterview-winner_heading img {
    width: 290px;
    height: 47px;
  }
}

.conditions {
  background: #fffbe9;
  padding-block: 50px 40px;
}
.conditions .c-heading {
  --heading-img-width: 78px;
  --heading-img-height: 15px;
  --heading-img-bgColor: #fffbe9;
  margin-bottom: 40px;
  color: #551618;
}
.conditions .c-heading::before {
  background-image: url("../images/recruit/conditions-heading.png");
}
.conditions-table {
  width: min(100%, 480px);
  border-collapse: collapse;
  border-spacing: 0;
  border-top: 2px solid #f0d896;
  border-left: 2px solid #f0d896;
  margin-top: 20px;
  margin-inline: auto;
}
.conditions-table th,
.conditions-table td {
  padding-block: 15px;
  border-right: 2px solid #f0d896;
  border-bottom: 2px solid #f0d896;
}
.conditions-table th {
  width: 120px;
  background-color: #e2bb53;
}
.conditions-table td {
  padding-inline: 15px;
  background: #fff;
}
@media (min-width: 960px) {
  .conditions {
    padding-block: 80px 60px;
  }
  .conditions .c-heading {
    --heading-img-width: 108px;
    --heading-img-height: 20px;
    margin-bottom: 80px;
  }
  .conditions .c-heading::before {
    background-image: url("../images/recruit/conditions-heading--pc.png");
  }
  .conditions-table td {
    padding: 20px 20px 20px 40px;
  }
}

footer {
  padding-block: 20px;
  background: #b67b1a;
  font-size: 1rem;
  color: #fff;
  text-align: center;
}
footer .inner {
  position: relative;
}

@media (min-width: 960px) {
  footer {
    color: #fff;
    text-align: center;
  }
  footer .inner {
    position: relative;
    overflow: visible;
  }
  footer br {
    display: none;
  }
}

.page-top {
  position: relative;
}
.page-top a {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  padding-block: 20px;
  background: #fff;
  color: #333;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.5s ease-out;
}
.page-top a:before {
  width: 25px;
  height: 12px;
  background-image: url("../images/recruit/spn_pagetop.png");
  background-size: 25px 12px;
  content: "";
}
.page-top a:hover {
  opacity: 0.8;
}
@media (min-width: 960px) {
  .page-top a {
    flex-direction: column;
    overflow: hidden;
    position: absolute;
    top: -95px;
    right: 20px;
    aspect-ratio: 1;
    width: 80px;
    padding-block: 0;
    border-radius: 50%;
    line-height: 1;
  }
  .page-top span {
    margin-top: 8px;
  }
}

.d-none {
  display: none !important;
}
.d-inline {
  display: inline !important;
}
.d-inline-block {
  display: inline-block !important;
}
.d-block {
  display: block !important;
}
.d-flex {
  display: flex !important;
}
.d-inline-flex {
  display: inline-flex !important;
}
.flex-fill {
  flex: 1 1 auto !important;
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 960px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
}
