@charset "UTF-8";

:root {
  --p-wid: 720px;
}

main {
  padding-bottom: 50px;

  .content_block {
    padding: 1em 0;
    &.image {
      margin: 0 10vw;
      img {
        max-width: 100%;
        max-height: 70vh;
        object-fit: contain;
        object-position: center;
        width: auto;
        height: auto;
        margin: auto;
        display: block;
      }
    }
    &.text {
      margin: 0 10vw;
      p {
        max-width: var(--p-wid);
        margin: 1.5em auto;
        line-height: 1.5;
        font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
      }
    }
    &.image_text {
      margin: 1.5em 30px;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 30px;
      &.r {
        flex-direction: row-reverse;
      }
      h2, h3, h4, h5, h6 {
        margin-bottom: 1em;
      }
      p {
        line-height: 1.5;
        font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
      }
    }
    &.link {
      text-align: center;
      a {
        display: inline-block;
        background: #e72f6e;
        color: white;
        border-radius: 5px;
        font-weight: bold;
        text-decoration: none;
        padding: 0.7em 3em;
        letter-spacing: 0.06em;
        font-size: 18px;
      }
    }
    &.headline {
      text-align: center;
    }
    &.headline:has(h2, h4, h5, h6) {
      padding: 2rem 10vw 1rem;
      h2, h4, h5, h6 {
        max-width: var(--p-wid);
        margin-right: auto;
        margin-left: auto;
      }
    }
    &.hl {
      height: 0; 
      width: var(--p-wid);
      margin: 1.5em auto;
      padding: 0;
      border-bottom: 1px solid #dddddd;
    }
  }

  h2 {
    font-size: 30px;
    position: relative;
    padding: 2rem 0;
    font-weight: bold;
    font-size: 26px;
    background: linear-gradient(90deg, #e72f6e 0% 100%);
    background-repeat: no-repeat;
    background-size: 6rem 0.4rem;
    background-position: bottom;
    color: #353535;
    border: none;
    font-family: serif;
    color: #ea4477;
  }

  h3 {
    background: #e72f6e;
    color: #fff;
    font-size: 24px;
    padding: 15px 0;
    font-weight: bold;
    margin-bottom: 0;
  }

  h4 {
    font-family: serif;
    font-size: 26px;
  }

  h5 {
    font-size: 22px;
    line-height: 29px;
    font-weight: bold;
    font-family: "Inter";
  }

  h6 {
    color: #ea4477;
    font-weight: bold;
    font-size: 18px;
  }
}

.icon {
  position: relative;
  padding: 0.3em 0.3em 0.3em 1.3em;
}
.icon.type-1::after {
  position: absolute;
  content: "";
  top: 0.6em;
  left: 0.4em;
  width: 12px;
  height: 12px;
  background-color: #da3c3c;
  transform: rotate(45deg);
}

@media (min-width: 768px) {
  main {
    .content_block {
      &.image_text {
        img {
          max-width: 80%;
        }
        .inner-text {
          max-width: 50%;
        }
      }
    }
  }
}

@media (max-width: 767.98px) {
  main {
    .content_block {
      width: auto;
      &.image {
        margin: 0 20px;
        padding: 0;
      }
      &.text {
        margin: 0 20px;
        padding: 0;
      }
      &.image_text {
        margin: 0 20px;
        display: block;
        .inner-text {
          margin: 1.5em 0;
        }
      }
      &.hl {
        margin: 1.5em 20px 3em;
        width: auto;
      }
      &.headline:has(h2, h3, h4, h5, h6) {
        margin-left: 0;
        margin-right: 0;
        &:has(h3) {
          margin-top: 4rem;
        }
        &:has(h2, h4) {
          padding: 20px;
        }
      }
    }
    .content_block img {
      width: 100%;
    }
  }
}

.key_visual-wrapper {
  height: 555px;
  background-repeat: repeat-x;
  background-size: cover;
  background-position: center;
  position: relative;
  h1 {
    font-size: 32px;
    line-height: 1.5;
  }
}
@media (max-width: 767.98px) {
  .key_visual-wrapper {
    height: 230px;
    h1 {
      font-size: 22px;
    }
  }
}

.key_visual-bottom {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 110px;
  background-color: rgba(231, 135, 166, 0.7);
}
@media (max-width: 767.98px) {
  .key_visual-bottom {
    height: auto;
    position: relative;
    background-color: rgba(231, 135, 166, 0.7);
  }
}
.key_visual-bottom-inner {
  margin: 0 auto;
  padding-top: 5px;
  gap: 20px;
  padding-left: 230px;
}
@media (max-width: 767.98px) {
  .key_visual-bottom-inner {
    gap: 15px;
    width: 100%;
    padding: 10px;
  }
}
.key_visual-bottom-inner .key_visual-bottom-label_title {
  color: #fff;
  margin-top: -60px;
}
@media (max-width: 767.98px) {
  .key_visual-bottom-inner .key_visual-bottom-label_title {
    margin-top: 10px;
  }
  .key_visual-bottom-inner .key_visual-bottom-label_title img {
    width: 80px;
  }
}
.key_visual-bottom-inner .key_visual-bottom-label_job {
  font-size: 44px;
  line-height: 1.1;
  color: #ffffff;
  font-family: serif;
}
@media (max-width: 767.98px) {
  .key_visual-bottom-inner .key_visual-bottom-label_job {
    line-height: 1.4;
    font-size: 22px;
  }
}
.key_visual-bottom-inner .key_visual-bottom-label_job span {
  font-size: 26px;
}
@media (max-width: 767.98px) {
  .key_visual-bottom-inner .key_visual-bottom-label_job span {
    font-size: 18px;
  }
}
.key_visual-bottom-right {
  flex-grow: 1;
  margin-right: 30px;
  font-size: 20px;
}
@media (max-width: 767.98px) {
  .key_visual-bottom-right {
    width: 100%;
    padding: 0 30px;
  }
}
.key_visual-bottom-right .btn-base {
  background-color: #e72f6e;
}
.key_visual-bottom-right .btn-base:after, .key_visual-bottom-right .btn-base:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}
.key_visual-bottom-right .btn-base:after {
  right: 27px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #e72f6e;
  border-right: 1px solid #e72f6e;
  transform: rotate(45deg);
  z-index: 2;
}
.key_visual-bottom-right .btn-base:before {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ffffff;
  z-index: 1;
  right: 20px;
}
.key_visual-bottom-right .btn-base a {
  color: #ffffff !important;
}

.content-merit {
  background: #f7f7f7;
  gap: 30px;
  padding: 0 10px;
}
.content-merit-box {
  margin-bottom: 35px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}
.content-merit-box h4 span {
  font-size: 16px;
  font-weight: normal;
}
.content-merit-box p {
  font-size: 16px;
}
.content-merit-box p.type1 {
  padding: 0 30px;
}
@media (max-width: 767.98px) {
  .content-merit-box p.type1 {
    padding: 0px;
  }
}
.content-merit-box p.type2 {
  padding: 0 100px;
}
@media (max-width: 767.98px) {
  .content-merit-box p.type2 {
    padding: 0px;
  }
}
.content-merit-box p.type3 {
  padding: 0 180px;
}
@media (max-width: 767.98px) {
  .content-merit-box p.type3 {
    padding: 0px;
  }
}
.content-merit-box p.style1 {
  color: #ea4477;
  font-weight: bold;
  font-size: 18px;
}
.content-merit-box a {
  color: #e72f6e;
}
.content-merit-inner {
  padding: 50px 30px;
}
@media (max-width: 767.98px) {
  .content-merit-inner {
    padding: 50px 20px 20px;
  }
}
.content-merit-inner.type1 {
  padding: 50px 90px 50px 110px;
}
@media (max-width: 767.98px) {
  .content-merit-inner.type1 {
    padding: 50px 20px 20px;
  }
}
.content-merit-inner.type2 {
  padding: 50px 90px 50px 130px;
}
@media (max-width: 767.98px) {
  .content-merit-inner.type2 {
    padding: 50px 20px 20px;
  }
}
.content-merit-inner.type3 {
  padding: 50px 90px 50px 150px;
}
@media (max-width: 767.98px) {
  .content-merit-inner.type3 {
    padding: 50px 20px 20px;
  }
}
.content-merit-inner .d-flex {
  gap: 30px;
}
@media (max-width: 767.98px) {
  .content-merit {
    padding: 0;
  }
}
.content-merit li {
  text-align: left;
}
.content-merit-item {
  background-color: #fff;
  font-family: serif;
}

.content-about {
  gap: 30px;
  padding-left: 25px;
}
@media (max-width: 767.98px) {
  .content-about {
    padding: 0;
    margin: 0 20px;
  }
}
.content-about .arrow-1 {
  display: inline-block;
  width: auto;
  padding: 0 50px 0 20px;
}

.content-job_list {
  background: #f7f7f7;
}
.content-job_list .content-job_list-item {
  background-color: #ffffff;
  margin: 0 60px;
}
@media (max-width: 767.98px) {
  .content-job_list .content-job_list-item {
    margin: 0;
  }
}
.content-job_list .job-list-box-header {
  border-bottom: 1px #e4e4e4 solid;
  margin-bottom: 20px;
  padding: 20px;
}
.content-job_list .job-list-box-header .job-list-box-header-upper .job-list-box-header-upper-label {
  font-size: 12px;
  gap: 5px;
}
.content-job_list .job-list-box-header .job-list-box-header-upper .job-list-box-header-upper-label li {
  padding: 0 5px;
}
.content-job_list .job-list-box-header .job-list-box-header-upper .job-list-box-header-upper-label .back-primary-label {
  background-color: #e72f6e;
  color: #ffffff;
  border: #e72f6e 1px solid;
  width: 90px;
  text-align: center;
}
.content-job_list .job-list-box-header .job-list-box-header-upper .job-list-box-header-upper-label .back-light-label {
  background-color: #ffffff;
  color: #e72f6e;
  border: #e72f6e 1px solid;
}
.content-job_list .job-list-box-header .job-list-box-header-upper .job-list-box-header-upper-date {
  font-size: 12px;
  color: #939393;
}
.content-job_list .job-list-box-content {
  padding: 0 20px 20px 20px;
  gap: 30px;
}
.content-job_list .job-list-box-content figure {
  width: 230px;
}
@media (max-width: 767.98px) {
  .content-job_list .job-list-box-content figure {
    width: auto;
  }
}
.content-job_list .job-list-box-content figure img {
  width: 100%;
}
.content-job_list .job-list-box-content .job-list-box-content-inner {
  width: 670px;
}
@media (max-width: 767.98px) {
  .content-job_list .job-list-box-content .job-list-box-content-inner {
    width: auto;
  }
}
.content-job_list .job-list-box-content .job-list-box-content-inner .job-list-box-content-inner-item {
  gap: 10px;
}
.content-job_list .job-list-box-content .job-list-box-content-inner .job-list-box-content-inner-item dt {
  background-color: #f7f7f7;
  color: #e72f6e;
  font-weight: bold;
  text-align: center;
  position: relative;
  padding: 5px 10px 5px 20px;
  font-size: 13px;
}
@media (max-width: 767.98px) {
  .content-job_list .job-list-box-content .job-list-box-content-inner .job-list-box-content-inner-item dt {
    width: 30%;
  }
}
.content-job_list .job-list-box-content .job-list-box-content-inner .job-list-box-content-inner-item dt:before {
  content: "";
  display: block;
  position: absolute;
  width: 16px;
  left: 4px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.content-job_list .job-list-box-content .job-list-box-content-inner .job-list-box-content-inner-item dd {
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .content-job_list .job-list-box-content .job-list-box-content-inner .job-list-box-content-inner-item dd {
    flex: 1;
  }
}
.content-job_list .job-list-box-content .job-list-box-content-inner .job-list-box-content-inner-item .job-list-box-content-inner-item-facility:before {
  background: url(/images/common/icon_facility.png) no-repeat center center;
  background-size: contain;
}
.content-job_list .job-list-box-content .job-list-box-content-inner .job-list-box-content-inner-item .job-list-box-content-inner-item-map:before {
  background: url(/images/common/icon_map.png) no-repeat center center;
  background-size: contain;
}
.content-job_list .job-list-box-content .job-list-box-content-inner .job-list-box-content-inner-item .job-list-box-content-inner-item-salary:before {
  background: url(/images/common/icon_salary.png) no-repeat center center;
  background-size: contain;
}
.content-job_list .job-list-box-content .job-list-box-content-inner .job-list-box-content-inner-item .job-list-box-content-inner-item-job + dd {
  font-size: 12px;
}
.content-job_list .job-list-box-content .job-list-box-content-inner .job-list-box-content-inner-item .job-list-box-content-inner-item-job:before {
  background: url(/images/common/icon_job.png) no-repeat center center;
  background-size: contain;
}
@media (max-width: 767.98px) {
  .content-job_list .job-list-box-content figure {
    text-align: center;
  }
}
.content-job_list .job-list-box-footer {
  padding: 20px;
  background-color: #fef0f0;
}
.content-job_list .job-list-box-footer .d-flex {
  gap: 35px;
}
.content-job_list .job-list-box-footer a {
  width: 295px;
  position: relative;
  font-size: 18px;
}
@media (max-width: 767.98px) {
  .content-job_list .job-list-box-footer a {
    width: 100%;
  }
}
.content-job_list .job-list-box-footer .job-list-box-footer-item {
  position: relative;
}
.content-job_list .job-list-box-footer .job-list-box-footer-item:after, .content-job_list .job-list-box-footer .job-list-box-footer-item:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}
.content-job_list .job-list-box-footer .job-list-box-footer-item:after {
  right: 27px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #e72f6e;
  border-right: 1px solid #e72f6e;
  transform: rotate(45deg);
  z-index: 2;
}
.content-job_list .job-list-box-footer .job-list-box-footer-item:before {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ffffff;
  z-index: 1;
  right: 20px;
}
.content-job_list .job-list-box-footer .job-list-box-footer-item.item-left:before {
  background-color: #fbd2e0;
}
.content-job_list .job-list-box-footer .job-list-box-footer-item .job-list-box-footer-item-detail {
  border: #e72f6e 1px solid;
  color: #e72f6e;
  background-color: #ffffff;
  padding: 10px 0;
  font-weight: bold;
}
.content-job_list .job-list-box-footer .job-list-box-footer-item .job-list-box-footer-item-entry {
  font-weight: bold;
  border: #e72f6e 1px solid;
  color: #ffffff;
  background-color: #e72f6e;
  padding: 10px 0;
}
.content-job_list .job-list-box-footer .job-list-box-footer-item .job-list-box-footer-item-entry:before {
  position: absolute;
  width: 37px;
  content: "無料";
  top: 23%;
  height: 25px;
  background: #ffffff;
  z-index: 2;
  left: 10%;
  border: 1px solid #e72f6e;
  color: #e72f6e;
  font-weight: bold;
  border-radius: 5px;
  line-height: 1.9;
  font-size: 12px;
}
.content-job_list .job-list-box-footer .job-list-box-footer-item .job-list-box-footer-item-staff {
  color: #ffffff;
  background-color: #ca9035;
  padding: 10px 0;
}

.content-flow {
  margin-bottom: 50px;
}
.content-flow ul {
  gap: 30px;
  margin: 0 70px;
}
@media (max-width: 767.98px) {
  .content-flow ul {
    flex-wrap: wrap;
    column-gap: 10%;
    row-gap: 20px;
    margin: 0 20px;
  }
}
.content-flow ul li {
  position: relative;
}
@media (max-width: 767.98px) {
  .content-flow ul li {
    width: 40%;
    padding: 0;
  }
}
@media (max-width: 767.98px) {
  .content-flow ul li:nth-child(3) {
    margin-left: 10%;
  }
}
.content-flow ul li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -37px;
  transform: translateY(-50%);
  border: 15px solid transparent;
  border-left: 15px solid #e72f6e;
}
@media (max-width: 767.98px) {
  .content-flow ul li:not(:last-child)::after {
    right: -40px;
  }
}

.btn-base {
  border-radius: 5px;
  position: relative;
  width: 100%;
  border: 2px solid #e72f6e;
  text-align: center;
}
.btn-base.arrow-1 a {
  display: block;
  color: #e72f6e;
  padding: 10px 0;
}
.btn-base.arrow-1 a:after, .btn-base .arrow-1 a:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}
.btn-base.arrow-1 a:after {
  right: 27px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #e72f6e;
  border-right: 1px solid #e72f6e;
  transform: rotate(45deg);
  z-index: 2;
}
.btn-base.arrow-1 a:before {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ffffff;
  z-index: 1;
  right: 20px;
}

.fs-size-1 {
  font-size: 0.9em;
}

.fs-size-2 {
  font-size: 0.8em;
}

.border-bottom-solid {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #dddddd;
}

#footer_floating_links {
  z-index: 400;
  position: fixed;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  transition: 0.5s;
  transform: translateY(100%);
  visibility: hidden;
  opacity: 0;
}

#footer_floating_links.active {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}

#footer_floating_links > .links {
  padding: 0.5rem;
  max-width: 600px;
  margin: auto;
  display: flex;
  justify-content: space-between;
}

#footer_floating_links > .links > .link {
  display: flex;
  width: 49.25%;
  width: calc(50% - 0.25rem);
  background-color: black;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 0;
  text-decoration: none;
  color: #fff;
}

#footer_floating_links > .links > .link:before {
  display: inline-block;
  content: "";
  width: 2rem;
  height: 2rem;
  margin-right: 0.5rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

#to_top_btn {
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  visibility: hidden;
  opacity: 0;
  display: inline-block;
  position: fixed;
  bottom: 75px;
  right: 80px;
  padding: 1rem;
  line-height: 1;
  background-color: #e72f6e;
  border-radius: 50%;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
  transition: 0.3s;
  z-index: 500;
}

#to_top_btn:after {
  display: block;
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background-image: url(/images/common/chevron-top.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 40%;
}

#to_top_btn:hover {
  cursor: pointer;
  text-decoration: none;
  transform: scale(1.2);
}

#to_top_btn.active {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 768px) {
  #to_top_btn {
    bottom: 5.5rem;
    right: 1rem;
    padding: 0.8rem;
  }
  #to_top_btn:after {
    width: 1rem;
    height: 1rem;
  }
}
#footer_floating_links > .links > .link:hover {
  opacity: 0.85;
}

#footer_floating_links > .links > .link.tel {
  background-color: #4471c2;
}

#footer_floating_links > .links > .link.tel:before {
  background-image: url(/images/common/tel_icon.png);
}

#footer_floating_links > .links > .link.web {
  background-color: #d14f74;
}

#footer_floating_links > .links > .link.web:before {
  background-image: url(/images/common/memo_icon.png);
}

@media (max-width: 768px) {
  #footer_floating_links > .links {
    font-size: 120%;
  }
  #footer_floating_links > .links > .link {
    padding: 1rem 0;
  }
}
