@charset "UTF-8";

/* ==========================================
   Base
========================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
  color: #555;
}

main {
  overflow: hidden;
}

img,
picture {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  transition: opacity .3s;
}

a:hover {
  opacity: .8;
}

.txt-pink {
  color: #ff4080;
  font-weight: 700;
}

.u-br-pc { display: inline; }
.u-br-sp { display: none; }

.sp-only { display: none; }
.pc-only { display: block; }
.sp-only__inline { display: none; }
.pc-only__inline { display: inline; }


/* ==========================================
   Header
========================================== */

header {
  position: sticky;
  top: 0;
  z-index: 9999;
  width: 100%;
  background: #fff;
  padding: 10px 0;
}

header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(90%, 1200px);
  margin: 0 auto;
}

header .header-inner > img {
  width: 250px;
}

header .header-inner > a {
  display: block;
  width: 220px;
}

header .header-inner > a img {
  width: 100%;
}


/* ==========================================
   FV
========================================== */

.fv {
  display: block;
}

.fv picture,
.fv picture img {
  width: 100%;
}
.fv .l-button__outer {
  background: #ff8fab;
  padding: 5px;
}

.fv .btnbox {
  display: flex;
  justify-content: space-between;
  gap: 2%;
  width: min(90%, 1200px);
  margin: 0 auto;
}

.fv .btnbox a {
  display: block;
}

.fv .btnbox a picture,
.fv .btnbox a picture img {
  width: 100%;
}

.fv .btnbox a.btn_double1 {
  width: 49%;
}

.fv .btnbox a.btn_double2 {
  width: 49%;
}


/* ==========================================
   About
========================================== */

.about {
  background: #fff;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.about img,
.about picture,
.about picture img {
  width: 100%;
}

.about-photo-note {
  color: #aaa;
  font-size: 11px;
  line-height: 1.4;
}

@media screen and (min-width: 768px) {
  .about-inner {
    display: grid;
    grid-template-columns: 40% 60%;
    align-items: center;
    width: min(90%, 1200px);
    padding: 50px 20px;
    column-gap: 4%;
    row-gap: 15px;
  }

  .about-left-box {
    position: relative;
    grid-column: 1;
    grid-row: 1 / 6;
  }

  .about-photo-note {
    position: absolute;
    bottom: 8px;
    left: 8px;
    margin: 0;
  }

  .about-heading {
    grid-column: 2;
    grid-row: 1;
    width: 80%;
    margin: auto;
  }

  .highlight-wrapper {
    grid-column: 2;
    grid-row: 2;
    text-align: center;
  }

  .catch-text-wrapper {
    grid-column: 2;
    grid-row: 3;
    text-align: center;
  }

  .nolmal-text-wrapper {
    grid-column: 2;
    grid-row: 4;
    text-align: center;
  }

  .about-bottom {
    grid-column: 2;
    grid-row: 5;
    width: 80%;
    margin: auto;
  }

  .highlight-line {
    margin: 0 auto 8px;
    padding: 5px 12px;
    background: #fff9b0;
    font-weight: 700;
  }

  .highlight-text {
    font-size: 20px;
    font-weight: 700;
    line-height: 2.4;
  }

  .catch-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.6;
  }

  .nolmal-text,
  .nolmal-text2 {
    font-size: 16px;
    line-height: 2;
  }

  .nolmal-text2 {
    margin-top: 25px;
  }
}

@media screen and (max-width: 767px) {
  .about-inner {
    display: grid;
    grid-template-columns: 45% 45%;
    justify-content: center;
    padding: 30px 0;
    column-gap: 3%;
  }

  .about-left-box {
    display: contents;
  }

  .about-left-box picture {
    grid-column: 2;
    grid-row: 2;
    align-self: end;
  }

  .about-photo-note {
    grid-column: 1 / -1;
    grid-row: 3;
    margin: 6px 0 20px;
  }

  .about-heading {
    grid-column: 1 / -1;
    grid-row: 1;
  }
  .about-heading picture {
    width: 75%;
    margin: 0 auto;
  }

  .highlight-wrapper {
    grid-column: 1;
    grid-row: 2;
    align-self: center;
  }

  .catch-text-wrapper {
    grid-column: 1 / -1;
    grid-row: 4;
    margin-bottom: 16px;
    text-align: center;
  }

  .nolmal-text-wrapper {
    grid-column: 1 / -1;
    grid-row: 5;
  }

  .about-bottom {
    grid-column: 1 / -1;
    grid-row: 6;
    margin-top: 20px;
  }

  .highlight-line {
    display: block;
    width: fit-content;
    margin-bottom: 3px;
    padding: 2px 8px;
    background: #fff9b0;
    font-weight: 700;
  }

  .highlight-text {
    font-size: 17px;
    line-height: 1.6;
  }

  .catch-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.8;
  }

  .nolmal-text,
  .nolmal-text2 {
    font-size: 14px;
    line-height: 2;
  }

  .nolmal-text2 {
    /* margin-top: 16px; */
  }

  .u-br-pc { display: none; }
  .u-br-sp { display: inline; }
}


/* ==========================================
   Ready Career 4つのポイント
========================================== */

.rc-points {
  background: #fff4f6;
  padding: 80px 20px 100px;
}

.rc-points__inner {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

.rc-points__heading {
  width: min(650px, 100%);
  margin: 0 auto 70px;
}

.rc-points img {
  width: 100%;
}

.rc-point {
  margin-bottom: 60px;
  padding: 60px 70px;
  border-radius: 30px;
  background: #fff;
  text-align: center;
}

.rc-point:last-child {
  margin-bottom: 0;
}

.rc-point__title {
  width: min(620px, 100%);
  margin: 0 auto 35px;
}

.rc-point__text {
  max-width: 760px;
  margin: 0 auto;
  color: #555;
  font-size: 16px;
  font-weight: 500;
  line-height: 2.1;
}

.rc-point__text span {
  color: #ff4c8a;
  font-weight: 700;
}

.rc-point__image {
  margin-top: 40px;
}

.rc-point__image img {
  width: 100%;
}


/* POINT01 Accordion */

.rc-point01__accordion {
  margin-top: 40px;
}

.rc-point01__toggle {
  display: block;
  width: min(360px, 100%);
  margin: 0 auto;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}

.rc-point01__toggle picture,
.rc-point01__toggle img {
  width: 100%;
  height: auto;
}

.rc-point01__toggle picture,
.rc-point01__toggle img {
  display: block;
}

.rc-point01__toggle .rc-point01__btn-open {
  display: block !important;
}

.rc-point01__toggle .rc-point01__btn-close {
  display: none !important;
}

.rc-point01__accordion.is-open .rc-point01__toggle .rc-point01__btn-open {
  display: none !important;
}

.rc-point01__accordion.is-open .rc-point01__toggle .rc-point01__btn-close {
  display: block !important;
}

.rc-point01__content {
  display: none;
  margin-top: 35px;
}

.rc-point01__accordion.is-open .rc-point01__content {
  display: block;
}

.rc-point01__image {
  margin: 0 auto 40px;
}

.rc-point01__image picture,
.rc-point01__image img {
  display: block;
  width: 100%;
  height: auto;
}

.rc-point01__license-lead {
  margin-top: 45px;
}

.rc-point01__license-text {
  margin: 35px auto;
}

.rc-point01__toggle--bottom {
  margin-top: 35px;
}

@media screen and (max-width: 767px) {
  .rc-points {
    padding: 50px 15px 70px;
  }

  .rc-points__inner {
    width: 100%;
  }

  .rc-points__heading {
    width: 100%;
    margin-bottom: 35px;
  }
  .rc-points__heading picture {
    width: 75%;
    margin: 0 auto 25px;
  }

  .rc-point {
    margin-bottom: 35px;
    padding: 35px 18px;
    border-radius: 20px;
  }

  .rc-point__title {
    width: 100%;
    margin-bottom: 25px;
  }
  .rc-point__title picture {
    width: 60%;
    margin: 0 auto;
  }
  .rc-point  .rc-point__title .rc-point__big--sp {
    width: 100% !important;
  }
  .rc-point__mid--sp {
    width: 90% !important;
  }

  .rc-point__text {
    font-size: 16px;
    line-height: 1.9;
    font-weight: 400;
    text-align: left;
  }

  .rc-point01__accordion {
    margin-top: 30px;
  }

  .rc-point01__content {
    margin-top: 25px;
  }

  .rc-point01__image {
    margin-bottom: 25px;
  }

  .rc-point01__license-lead {
    margin-top: 35px;
  }

  .rc-point01__license-text {
    margin: 25px auto;
  }

  .rc-point01__toggle--bottom {
    margin-top: 25px;
  }

  .rc-point__image {
    margin-top: 30px;
  }
}


/* ==========================================
   Job
========================================== */

.rc-job {
  background: #fff;
  padding: 90px 20px 100px;
}

.rc-job__inner {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  text-align: center;
}

.rc-job img,
.rc-job picture {
  width: 100%;
}

.rc-job__title {
  width: min(520px, 100%);
  margin: 0 auto 30px;
}

.rc-job__lead {
  margin-bottom: 50px;
  color: #555;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}

.rc-job__table {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .rc-job {
    padding: 50px 16px 60px;
  }

  .rc-job__inner {
    width: 100%;
  }

  .rc-job__title {
    width: 100%;
    margin-bottom: 20px;
  }
  .rc-job__title picture {
    width: 75%;
    margin: 0 auto;
  }

  .rc-job__lead {
    margin-bottom: 25px;
    font-size: 13px;
    line-height: 1.8;
  }

  .rc-job__table {
    width: 100%;
  }
}


/* ==========================================
   Work Style
========================================== */

.rc-workstyle {
  overflow: visible;
  background: #f48faf;
  padding: 80px 20px 70px;
}

.rc-workstyle__inner {
  width: min(90%, 1200px);
  margin: 0 auto;
  text-align: center;
}

.rc-workstyle img,
.rc-workstyle picture {
  width: 100%;
}

.rc-workstyle__title {
  width: min(430px, 100%);
  margin: 0 auto 45px;
}

.rc-workstyle__lead {
  margin-bottom: 35px;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: .05em;
}

.rc-workstyle__image {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .rc-workstyle {
    margin-bottom: 55px;
    padding: 35px 12px 0;
  }

  .rc-workstyle__inner {
    width: 100%;
  }

  .rc-workstyle__title {
    width: 100%;
    margin-bottom: 18px;
  }
  .rc-workstyle__title picture {
    width: 75%;
    margin: 0 auto;
  }

  .rc-workstyle__lead {
    margin-bottom: 15px;
    font-size: 26px;
    font-weight: 500;
    letter-spacing: 2px;
  }

  .rc-workstyle__image {
    position: relative;
    z-index: 2;
    width: 100%;
    margin-bottom: -55px;
  }
  #rc-workstyle__m--b {
    margin-bottom: -80px;
  }
}


/* ==========================================
   Voice
========================================== */

#voice {
  overflow: hidden;
  background: #ffe2e4;
}

#voice .voice-title picture,
#voice .voice-title img {
  width: 100%;
  max-width: 270px;
  margin: auto;
}

#voice .sample-slick {
  position: static;
  transform: none;
  width: min(90%, 1200px);
  margin: 0 auto;
}

#voice .slick-list {
  overflow: visible;
}

#voice .voiceimage {
  width: 100%;
}

#voice .slick-prev,
#voice .slick-next {
  z-index: 5;
}
.slick-slider {
  width: 60%;
  margin: 0 auto;
}

#voice .slick-prev::before,
#voice .slick-next::before {
  content: '';
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
}

#voice .slick-prev::before {
  background-image: url(../../images/hpdesign/new-voiceprev.png);
}

#voice .slick-next::before {
  background-image: url(../../images/hpdesign/new-voicenext.png);
}

@media screen and (min-width: 768px) {
  #voice {
    padding: 70px 0 80px;
  }

  #voice .voice-title {
    width: 520px;
    margin: 0 auto 55px;
  }

  #voice .slick-slide {
    margin: 0 35px;
  }

  #voice .slick-prev,
  #voice .slick-next {
    width: 40px;
    height: 40px;
  }

  #voice .slick-prev {
    left: 15%;
  }

  #voice .slick-next {
    right: 15%;
  }

  #voice .slick-prev::before,
  #voice .slick-next::before {
    width: 40px;
    height: 40px;
  }
}

@media screen and (max-width: 767px) {
  #voice {
    padding: 45px 0 55px;
  }

  #voice .voice-title {
    width: 88%;
    margin: 0 auto 30px;
  }

  #voice .sample-slick {
    width: 95%;
    margin: 0 auto;
  }

  #voice .slick-slide {
    margin: 0 12px;
  }

  #voice .slick-prev,
  #voice .slick-next {
    width: 30px;
    height: 30px;
  }

  #voice .slick-prev {
    left: 5px;
  }

  #voice .slick-next {
    right: 5px;
  }

  #voice .slick-prev::before,
  #voice .slick-next::before {
    width: 30px;
    height: 30px;
  }

  .slick-slider {
    width: 90%;
    margin: 0 auto;
  }
}


/* ==========================================
   Recruit
========================================== */

@media screen and (min-width: 768px) {
  #recruit {
    background: #fff;
    padding: 75px 20px 90px;
  }

  #recruit h2 {
    margin: 0 auto 45px;
    text-align: center;
  }

  #recruit .recruittitle {
    width: 320px;
    margin: 0 auto;
  }

  #recruit h2 img {
    display: block;
    width: 100%;
  }

  #recruit .recruitbox {
    width: min(90%, 1200px);
    margin: 0 auto;
  }

  #recruit .recruitpart {
    display: grid;
    grid-template-columns: 200px 1fr;
    padding: 22px 0;
    border-bottom: 1px solid #ffd6df;
    font-family: 'Noto Sans JP', sans-serif;
  }

  #recruit .recruitpart.last {
    border-bottom: none;
  }

  #recruit .recruitpart .midashi {
    color: #ff4080;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.8;
  }

  #recruit .recruitpart .desc {
    color: #555;
    font-size: 13px;
    line-height: 1.9;
    letter-spacing: .03em;
  }
}

@media screen and (max-width: 767px) {
  #recruit {
    background: #fff;
    padding: 5% 1% 1%;
  }

  #recruit h2 img {
    display: block;
    width: 63%;
    margin: auto;
  }

  #recruit .recruitbox {
    margin: 20px auto;
    width: 90%;
  }

  #recruit .recruitpart {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #fba9bbea;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 20px;
    line-height: 1.7;
  }

  #recruit .recruitpart .midashi {
    width: 20%;
    color: #ff4080;
    font-weight: 700;
  }

  #recruit .recruitpart .desc {
    width: 78%;
    font-size: 15px;
  }

  #recruit .recruitpart.last {
    border-bottom: none;
  }
  .recruittitle picture {
    width: 65%;
    margin: 20px auto;
  }
}


/* ==========================================
   FAQ
========================================== */

.rc-faq {
  background: #f48faf;
  padding: 80px 20px;
}

.rc-faq__inner {
  width: min(90%, 1200px);
  margin: 0 auto;
}

.rc-faq__title {
  width: min(420px, 100%);
  margin: 0 auto 55px;
}

.rc-faq__title picture,
.rc-faq__title img {
  width: 100%;
}

.rc-faq__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.rc-faq__item {
  overflow: hidden;
  border: 2px solid #fff;
  border-radius: 12px;
}

.rc-faq__item summary {
  position: relative;
  display: block;
  padding: 18px 60px 18px 22px;
  background: #fff;
  color: #ff4b87;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  cursor: pointer;
  list-style: none;
}

.rc-faq__item summary::-webkit-details-marker {
  display: none;
}

.rc-faq__item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  color: #ff4b87;
  font-size: 28px;
  font-weight: 400;
  transition: .3s;
}

.rc-faq__item[open] summary::after {
  content: "－";
}

.rc-faq__item p {
  margin: 0;
  padding: 20px 22px;
  background: #f48faf;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .rc-faq {
    padding: 50px 15px 70px;
  }

  .rc-faq__inner {
    width: 100%;
  }

  .rc-faq__title {
    width: 180px;
    margin-bottom: 30px;
  }

  .rc-faq__list {
    gap: 14px;
  }

  .rc-faq__item {
    border-radius: 16px;
  }

  .rc-faq__item summary {
    padding: 16px 46px 16px 16px;
    font-size: 20px;
    line-height: 1.6;
    font-weight: 500;
  }

  .rc-faq__item summary::after {
    right: 16px;
    font-size: 24px;
  }

  .rc-faq__item p {
    padding: 16px;
    font-size: 13px;
    line-height: 1.9;
  }
}


/* ==========================================
   Form
========================================== */

#form {
  background: #fef1f1;
}

#form h2 img {
  display: block;
  margin: auto;
}

#form form {
  background: #fff;
}

#form label {
  display: block;
}

#form form .form-item {
  margin-bottom: 28px;
}

#form form .form-item legend,
#form form label {
  display: block;
  margin-bottom: 8px;
  color: #555;
  font-weight: 700;
}

#form form .form-item .required {
  color: #f23a3c;
}

#form form .form-item .form-control-lg,
#form form input[type="text"],
#form form input[type="email"],
#form form input[type="tel"],
#form form select,
#form form textarea {
  width: 100%;
  border: 1px solid #7e7e7e;
  border-radius: 8px;
  box-sizing: border-box;
}

#form form textarea {
  min-height: 160px;
}

#form .form-check {
  text-align: center;
  font-weight: 700;
}

#form .form-check input {
  position: relative;
}

#form .wpcf7-list-item {
  display: block;
}

#form form .terms_of_service .contents {
  overflow-y: scroll;
  max-height: 250px;
  border: 1px solid #707070;
}

#form form .terms_of_service .contents h3 {
  font-weight: 700;
}

#form input[type="submit"] {
  display: block;
  margin: auto;
  border: none;
  background-color: transparent;
  background-image: url(../../images/hpdesign/new-submitbtn.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  color: transparent;
  cursor: pointer;
}

#form form .btn:hover {
  opacity: .6;
}

@media screen and (min-width: 768px) {
  #form {
    padding: 90px 20px 100px;
  }

  #form h2 {
    margin: 0 auto 45px;
    text-align: center;
  }

  #form h2 img {
    width: 320px;
  }

  #form form {
    width: min(90%, 1200px);
    margin: 0 auto;
    padding: 55px 70px;
    border-radius: 30px;
  }

  #form form .form-item legend,
  #form form label {
    font-size: 16px;
  }

  #form form .form-item .form-control-lg,
  #form form input[type="text"],
  #form form input[type="email"],
  #form form input[type="tel"],
  #form form select,
  #form form textarea {
    padding: 14px 16px;
    font-size: 16px;
  }

  #form form .terms_of_service .contents {
    margin-bottom: 35px;
    padding: 25px;
    border-radius: 8px;
  }

  #form form .terms_of_service .contents h3 {
    font-size: 14px;
  }

  #form form .terms_of_service .contents p {
    margin-bottom: 12px;
    font-size: 13px;
    line-height: 1.8;
  }

  #form .form-check {
    font-size: 15px;
  }

  #form .form-check input {
    bottom: -3px;
    width: 18px;
    height: 18px;
  }

  #form input[type="submit"] {
    width: 320px;
    height: 70px;
    margin-top: 40px;
  }
}

@media screen and (max-width: 767px) {
  #form {
    padding: 50px 3%;
    background: #fef1f1;
  }

  #form h2 img {
    width: 45%;
  }

  #form form {
    width: 95%;
    margin: 30px auto 0;
    padding: 30px 20px;
    border-radius: 20px;
  }

  #form form .form-item {
    margin-bottom: 20px;
  }

  #form form .form-item .form-control-lg,
  #form form input[type="text"],
  #form form input[type="email"],
  #form form input[type="tel"],
  #form form select,
  #form form textarea {
    padding: 8px 12px;
    font-size: 12px;
  }

  #form form .form-item legend {
    margin-bottom: 4px;
  }

  #form form .form-item .row {
    display: block;
  }

  #form .form-check {
    font-size: 14px;
  }

  #form .form-check input {
    bottom: -2px;
    width: 15px;
    height: 15px;
  }

  #form form .terms_of_service .contents {
    margin-bottom: 30px;
    padding: 20px 10px;
    border-radius: 5px;
  }

  #form form .terms_of_service .contents h3 {
    font-size: 12px;
  }

  #form form .terms_of_service .contents p {
    margin-bottom: 10px;
    font-size: 10px;
  }

  #form input[type="submit"] {
    width: 250px;
    height: 50px;
  }
}


/* ==========================================
   Footer
========================================== */

@media screen and (max-width: 767px) {
  footer#footer1 {
    max-width: 500px;
    min-width: 0;
    margin: auto;
    padding: 0 0 69px;
    background: transparent;
  }

  footer#footer2 {
    position: fixed;
    bottom: 0;
    left: 50%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 500px;
    min-width: 0;
    height: 70px;
    padding: 1%;
    transform: translateX(-50%);
    background: #fff;
  }
}


/* ==========================================
   Responsive Utility
========================================== */

@media screen and (max-width: 767px) {
  .sp-only { display: block; }
  .pc-only { display: none; }
  .sp-only__inline { display: inline; }
  .pc-only__inline { display: none; }

  header .header-inner {
    align-items: end;
  }

  header .header-inner > img {
    width: min(46vw, 130px);
  }

  header .header-inner > a {
    width: min(60vw, 180px);
  }

  .fv .btnbox {
    justify-content: space-between;
    flex-direction: column;
    gap: 5px;
    padding: 10px 0;
  }

  .fv .btnbox a.btn_double1 {
    width: 100%;
  }

  .fv .btnbox a.btn_double2 {
    width: 100%;
  }
  .txt-pink__big {
    font-size: 16px;
  }
}

.copyright {
  background-color: #f45786;
  color: #fff;
  padding: 10px 0;
}
.copyright p {
  text-align: center;
  font-size: 18px;
}