@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@100;300;400;500;700;800;900&display=swap");
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "M PLUS Rounded 1c", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2;
  color: #333333;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.8;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.youtube {
  width: 100%;
  aspect-ratio: 16/9;
}

.youtube iframe {
  width: 100%;
  height: 100%;
}

.wrap {
  width: 100%;
  margin: 0 auto;
  padding: 0 4%;
}
@media screen and (min-width: 768px) {
  .wrap {
    max-width: 1000px;
  }
}

.section-title {
  text-align: center;
  font-size: clamp(3.2rem, 5vw, 8rem);
  font-weight: 900;
  margin-bottom: 5rem;
}
.section-title img {
  margin: 0 auto;
  max-width: 860px;
}

.btn-job {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 500px;
  margin: 3rem auto;
  padding: 0.8rem 2em;
  border: none;
  border-bottom: 10px solid;
  border-radius: 60px;
  color: #ffffff;
  font-weight: 600;
  font-size: 2rem;
  transition: transform 0.3s ease, border-bottom-width 0.3s ease;
  cursor: pointer;
}
@media screen and (min-width: 480px) {
  .btn-job span {
    font-size: 2.8rem;
  }
}
.btn-job::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}
.btn-job:hover {
  transform: translateY(3px);
  border-bottom-width: 2px;
}

.btn-about {
  position: relative;
  display: inline-block;
  padding: 0.5rem 5rem 0.5rem 2rem;
  margin-bottom: 1rem;
  color: #ffffff;
  border-radius: 4px;
  transition: all 0.3s;
}
.btn-about::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2rem;
  width: 6px;
  height: 6px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  transition: right 0.3s;
}
.btn-about:hover::after {
  right: 1.4rem;
}

header {
  position: relative;
  background-color: #ffffff;
}
header .header__logo-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  padding: 0 4%;
  background-color: #fff;
  width: 100%;
}

#mainVisual {
  position: relative;
  width: 100%;
  background-image: linear-gradient(0deg, rgba(127, 221, 255, 0.3215686275), #00bbff);
  text-align: center;
  padding-top: 60px;
}
#mainVisual img {
  width: 100%;
  max-width: 690px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: top center;
     object-position: top center;
}
#mainVisual .wave {
  position: absolute;
  bottom: -1px;
  width: 100%;
  height: 125px;
  background: url(../images/wave.svg) no-repeat center bottom/cover;
}

.openbtn {
  position: fixed;
  z-index: 9999;
  top: 10px;
  right: 10px;
  width: 50px;
  height: 50px;
  background: #0e3192;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.openbtn span {
  position: absolute;
  left: 14px;
  height: 3px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.4s;
  width: 45%;
}
.openbtn span:nth-of-type(1) {
  top: 15px;
}
.openbtn span:nth-of-type(2) {
  top: 23px;
}
.openbtn span:nth-of-type(3) {
  top: 31px;
}
.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: rotate(-45deg);
  width: 30%;
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: rotate(45deg);
  width: 30%;
}

#g-nav {
  position: fixed;
  z-index: -1;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(to bottom, #22d3ee, #22c5f0);
  transition: all 0.3s;
  visibility: hidden;
}
#g-nav.panelactive {
  opacity: 1;
  z-index: 999;
  visibility: visible;
}
#g-nav #g-nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  overflow-y: auto;
}
#g-nav ul {
  list-style: none;
}
#g-nav ul li {
  margin-bottom: 1rem;
  padding-left: 1rem;
}
#g-nav ul a {
  display: block;
  color: #e6e6e6;
  font-weight: bold;
  font-size: 2rem;
}
#g-nav ul ul li {
  padding: 0.5rem 0.5rem 0.5rem 2rem;
}
#g-nav ul ul a {
  font-size: 1.6rem;
  line-height: 1;
}

.section-job {
  position: relative;
  padding-bottom: 15rem;
}
.section-job .wave_blue {
  position: absolute;
  bottom: -1px;
  width: 100%;
  height: 125px;
  background: url(../images/wave_blue.svg) no-repeat center bottom/cover;
  z-index: 1;
}

.section-about {
  background-color: #d8effc;
}
.section-about .job__block {
  background-color: #ffffff;
  margin-bottom: 6rem;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.section-about .job__block_text {
  padding: 3rem;
}
.section-about .job__block_text h3 img {
  margin-top: 3rem;
  margin-bottom: 3rem;
  height: 80px;
  width: auto;
}
.section-about .job__block_text p {
  margin-bottom: 3rem;
}
.section-about .job__block_img {
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .section-about .job__block {
    display: flex;
    align-items: center;
    background: none;
  }
  .section-about .job__block_text {
    width: 70%;
    background-color: #ffffff;
    padding: 4rem 10rem;
    border-radius: 50% 50% 50% 70%/50% 85% 124% 58%;
    z-index: 2;
  }
  .section-about .job__block_img {
    position: absolute;
    top: auto;
    bottom: 0;
    right: 0;
    width: 40%;
    z-index: 3;
  }
  .section-about .job__block:nth-child(even) {
    flex-direction: row-reverse;
  }
  .section-about .job__block:nth-child(even) .job__block_text {
    border-radius: 40% 40% 50% 40%/30% 50% 50% 50%;
    margin-left: auto;
  }
  .section-about .job__block:nth-child(even) .job__block_img {
    left: 0;
    right: auto;
  }
}
.section-about .job__block[data-type=hv-nurse] .btn-about {
  background-color: #7258a3;
  border: 1px solid #7258a3;
}
.section-about .job__block[data-type=hv-nurse] .btn-about:hover {
  background: #ffffff;
  color: #7258a3;
}
.section-about .job__block[data-type=nurse] .btn-about[href="#job-4"] {
  background-color: #7258a3;
  border-color: #7258a3;
}
.section-about .job__block[data-type=nurse] .btn-about[href="#job-4"]:hover {
  color: #7258a3;
  background: #ffffff;
}
.section-about .job__block[data-type=nurse] .btn-about {
  background-color: #4f64ae;
  border: 1px solid #4f64ae;
}
.section-about .job__block[data-type=nurse] .btn-about:hover {
  background: #ffffff;
  color: #4f64ae;
}
.section-about .job__block[data-type=nurse] .btn-about[href="#job-4"] {
  background-color: #7258a3;
  border-color: #7258a3;
}
.section-about .job__block[data-type=nurse] .btn-about[href="#job-4"]:hover {
  color: #7258a3;
  background: #ffffff;
}
.section-about .job__block[data-type=midwife] .btn-about {
  background-color: #ec6d81;
  border: 1px solid #ec6d81;
}
.section-about .job__block[data-type=midwife] .btn-about:hover {
  background: #ffffff;
  color: #ec6d81;
}
.section-about .job__block[data-type=nurse] .btn-about[href="#job-4"] {
  background-color: #7258a3;
  border-color: #7258a3;
}
.section-about .job__block[data-type=nurse] .btn-about[href="#job-4"]:hover {
  color: #7258a3;
  background: #ffffff;
}
.section-about .job__block[data-type=phn] .btn-about {
  background-color: #3eb370;
  border: 1px solid #3eb370;
}
.section-about .job__block[data-type=phn] .btn-about:hover {
  background: #ffffff;
  color: #3eb370;
}
.section-about .job__block[data-type=nurse] .btn-about[href="#job-4"] {
  background-color: #7258a3;
  border-color: #7258a3;
}
.section-about .job__block[data-type=nurse] .btn-about[href="#job-4"]:hover {
  color: #7258a3;
  background: #ffffff;
}

.about__info {
  display: grid;
  gap: 6rem;
}
.about__info picture img,
.about__info .about__block_wrap img {
  margin: 0 auto;
  max-width: 330px;
}
@media screen and (min-width: 768px) {
  .about__info picture img,
  .about__info .about__block_wrap img {
    max-width: 100%;
    height: auto;
  }
}
.about__info .about__block {
  text-align: center;
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .about__info .about__block {
    margin-bottom: 6rem;
  }
  .about__info .about__block:last-child {
    margin-bottom: 10rem;
  }
}
.about__info .about__block h3 {
  margin-bottom: 2rem;
  text-align: left;
}
.about__info .about__block h3 img {
  height: 60px;
  width: auto;
}
.about__info .about__block_wrap {
  display: grid;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .about__info .about__block_wrap {
    grid-template-columns: repeat(3, 1fr);
  }
}
.about__info .note,
.about__info .source {
  display: block;
  text-align: left;
  font-size: 1.2rem;
  margin-top: 1rem;
  line-height: 1.5;
}

#hv-nurse,
#nurse,
#midwife,
#phn,
#information {
  margin-bottom: 6rem;
}
@media screen and (min-width: 768px) {
  #hv-nurse,
  #nurse,
  #midwife,
  #phn,
  #information {
    margin-bottom: 20rem;
  }
}

.job-detail h2 img {
  width: 100%;
  height: 210px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .job-detail h2 img {
    height: 440px;
  }
}
@media screen and (min-width: 1120px) {
  .job-detail h2 img {
    height: 640px;
  }
}
.job-detail .schedule-sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .job-detail .schedule-sp {
    display: none;
  }
}
.job-detail .profile {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-top: 6rem;
}
.job-detail .profile .schedule {
  display: none;
}
@media screen and (min-width: 768px) {
  .job-detail .profile {
    flex-direction: row;
    justify-content: space-between;
  }
  .job-detail .profile .faq {
    width: 70%;
  }
  .job-detail .profile .schedule {
    display: block;
    width: 25%;
  }
}
.job-detail .profile .faq p {
  margin-bottom: 3rem;
}
.job-detail .profile .faq dl {
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 50px;
  margin-bottom: 3rem;
}
.job-detail .profile .faq dl dt {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 1rem;
  padding-left: 3rem;
}
.job-detail .spec {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 3rem;
  padding: 3rem;
  border-radius: 30px;
}
@media screen and (min-width: 768px) {
  .job-detail .spec {
    flex-direction: row;
    justify-content: space-between;
  }
  .job-detail .spec .chart {
    width: 35%;
  }
  .job-detail .spec .benefits {
    width: 54%;
  }
}
.job-detail .spec .benefits {
  border: 3px solid;
  border-radius: 15px;
  padding: 0 2rem 1rem 2rem;
  background-color: #fff;
}
.job-detail .spec .benefits h3 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: bold;
  text-align: center;
}
.job-detail .spec .benefits ul {
  list-style: none;
  padding: 0;
}
.job-detail .spec .benefits ul li {
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  line-height: 1.5;
}
.job-detail .spec .benefits ul li .label {
  font-weight: bold;
  margin-right: 0.5em;
}
.job-detail[data-theme=hv-nurse] h2 {
  color: #7258a3;
}
.job-detail[data-theme=hv-nurse] .faq dl {
  background-image: url("../images/job-4-q.svg");
}
.job-detail[data-theme=hv-nurse] .faq dl dt {
  color: #7258a3;
}
.job-detail[data-theme=hv-nurse] .spec {
  background-color: #f0eef5;
}
.job-detail[data-theme=hv-nurse] .benefits {
  border-color: #7258a3;
}
.job-detail[data-theme=hv-nurse] .benefits h3 {
  border-bottom: 3px dotted #7258a3;
}
.job-detail[data-theme=hv-nurse] .benefits h3,
.job-detail[data-theme=hv-nurse] .benefits .label {
  color: #7258a3;
}
.job-detail[data-theme=hv-nurse] .btn-job {
  background-color: #7258a3;
  border-bottom-color: #2d1d4b;
}
.job-detail[data-theme=nurse] h2 {
  color: #4f64ae;
}
.job-detail[data-theme=nurse] .faq dl {
  background-image: url("../images/job-1-q.svg");
}
.job-detail[data-theme=nurse] .faq dl dt {
  color: #4f64ae;
}
.job-detail[data-theme=nurse] .spec {
  background-color: #edeff6;
}
.job-detail[data-theme=nurse] .benefits {
  border-color: #4f64ae;
}
.job-detail[data-theme=nurse] .benefits h3 {
  border-bottom: 3px dotted #4f64ae;
}
.job-detail[data-theme=nurse] .benefits h3,
.job-detail[data-theme=nurse] .benefits .label {
  color: #4f64ae;
}
.job-detail[data-theme=nurse] .btn-job {
  background-color: #4f64ae;
  border-bottom-color: #2e3c67;
}
.job-detail[data-theme=midwife] h2 {
  color: #ec6d81;
}
.job-detail[data-theme=midwife] .faq dl {
  background-image: url("../images/job-2-q.svg");
}
.job-detail[data-theme=midwife] .faq dl dt {
  color: #ec6d81;
}
.job-detail[data-theme=midwife] .spec {
  background-color: #fdf0f2;
}
.job-detail[data-theme=midwife] .benefits {
  border-color: #ec6d81;
}
.job-detail[data-theme=midwife] .benefits h3 {
  border-bottom: 3px dotted #ec6d81;
}
.job-detail[data-theme=midwife] .benefits h3,
.job-detail[data-theme=midwife] .benefits .label {
  color: #ec6d81;
}
.job-detail[data-theme=midwife] .btn-job {
  background-color: #ec6d81;
  border-bottom-color: #ad4e64;
}
.job-detail[data-theme=phn] h2 {
  color: #3eb370;
}
.job-detail[data-theme=phn] .faq dl {
  background-image: url("../images/job-3-q.svg");
}
.job-detail[data-theme=phn] .faq dl dt {
  color: #3eb370;
}
.job-detail[data-theme=phn] .spec {
  background-color: #ebf7f0;
}
.job-detail[data-theme=phn] .benefits {
  border-color: #3eb370;
}
.job-detail[data-theme=phn] .benefits h3 {
  border-bottom: 3px dotted #3eb370;
}
.job-detail[data-theme=phn] .benefits h3,
.job-detail[data-theme=phn] .benefits .label {
  color: #3eb370;
}
.job-detail[data-theme=phn] .btn-job {
  background-color: #3eb370;
  border-bottom-color: #2a7c4e;
}

@media screen and (min-width: 768px) {
  .btn-area {
    display: flex;
    justify-content: center;
  }
}

.btn-info {
  position: relative;
  display: inline-block;
  padding: 0.5rem 5rem 0.5rem 2rem;
  margin: 1rem;
  color: #ffffff;
  border-radius: 4px;
  transition: all 0.3s;
  background-color: #ec6d81;
}
.btn-info::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2rem;
  width: 6px;
  height: 6px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  transition: right 0.3s;
}
.btn-info:hover {
  background-color: #cc1732;
}
.btn-info:hover::after {
  right: 1.4rem;
}

#information {
  padding-top: 3rem;
  padding-bottom: 3rem;
  border: 3px solid #00bbff;
}

footer {
  background: linear-gradient(to bottom, #22d3ee, rgba(34, 197, 240, 0.3));
  padding: 3rem 0;
}
footer .copy {
  text-align: center;
  font-size: 1.6rem;
  color: #ffffff;
  font-weight: bold;
}

.hide-area {
  display: none;
}

.slider {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.slider .slick-img img {
  opacity: 0.4;
  transform: scale(0.7);
  transition: all 0.5s;
  margin: 0 auto;
}
.slider .slick-center img {
  opacity: 1;
  transform: scale(1);
}

.arrow_box {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  pointer-events: none;
}
.arrow_box .prev-arrow,
.arrow_box .next-arrow {
  pointer-events: auto;
  width: 50px;
  height: 50px;
  border-top: 2px solid #333333;
  border-right: 2px solid #333333;
  cursor: pointer;
  position: absolute;
}
.arrow_box .prev-arrow {
  left: 10%;
  transform: rotate(-135deg);
}
.arrow_box .next-arrow {
  right: 10%;
  transform: rotate(45deg);
}/*# sourceMappingURL=style.css.map */