@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@100;300;400;500;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #000;
}

li {
  list-style: none;
}

img {
  display: inline-block;
  max-width: 100%;
}

p {
  line-height: 2;
  margin-bottom: 1em;
}
p:last-child {
  margin-bottom: 0;
}

body {
  font-family: "M PLUS Rounded 1c", sans-serif;
  line-height: 1.6;
  color: #000;
}

header.pc {
  background-image: url("../img/common/header/bg.png");
  background-size: 1000px;
  padding: 20px 20px 10px;
}
@media screen and (max-width: 600px) {
  header.pc {
    display: none;
  }
}
header.pc nav.sub_nav {
  max-width: 1000px;
  margin: 0 auto;
}
header.pc nav.sub_nav ul {
  display: flex;
  justify-content: flex-end;
  gap: 13px;
}
header.pc nav.sub_nav ul li a {
  font-size: 14px;
  color: #645447;
  transition: 0.3s;
}
header.pc nav.sub_nav ul li a:hover {
  opacity: 0.6;
}
header.pc nav.g_nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
}
header.pc nav.g_nav .logo {
  width: 280px;
}
header.pc nav.g_nav .logo a {
  display: block;
  padding: 0 30px;
}
header.pc nav.g_nav .logo a img {
  width: 100%;
}
header.pc nav.g_nav ul {
  flex: 1;
  display: flex;
}
header.pc nav.g_nav ul li {
  flex: 1;
  border-left: dashed 1px #707070;
}
header.pc nav.g_nav ul li:last-child {
  border-right: dashed 1px #707070;
}
header.pc nav.g_nav ul li a {
  display: block;
  color: #645447;
  text-align: center;
  padding: 0 1em;
  padding: 1em;
  font-size: 14px;
  transition: 0.3s;
}
header.pc nav.g_nav ul li a:hover {
  background: rgba(255, 255, 255, 0.8);
}

header.sp {
  width: 100vw;
  display: none;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 101;
  height: 60px;
  background-image: url("../img/common/header/bg.png");
  background-size: 1000px;
}
@media screen and (max-width: 600px) {
  header.sp {
    display: flex;
  }
}
header.sp .logo {
  padding-left: 10px;
}
header.sp .logo a img {
  height: 50px;
}
header.sp .drawer_btn {
  font-size: 45px;
  width: 1em;
  height: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
header.sp .drawer_btn span,
header.sp .drawer_btn span:after,
header.sp .drawer_btn span:before {
  content: "";
  display: block;
  width: 0.6em;
  height: 3px;
  background: #645447;
  position: absolute;
  transition: 0.3s;
}
header.sp .drawer_btn span:before {
  bottom: 0.2em;
  transition: 0.3s 0.3s, transform 0.3s;
}
header.sp .drawer_btn span:after {
  top: 0.2em;
  transition: 0.3s 0.3s, transform 0.3s;
}
header.sp .drawer_btn span.active {
  background: rgba(100, 84, 71, 0);
}
header.sp .drawer_btn span.active:before {
  bottom: 0;
  transform: rotate(-45deg);
  transition: 0.3s, transform 0.3s 0.3s;
}
header.sp .drawer_btn span.active:after {
  top: 0;
  transform: rotate(45deg);
  transition: 0.3s, transform 0.3s 0.3s;
}
header.sp .drawer_content {
  width: 100vw;
  height: 100vh;
  background-image: url("../img/common/header/bg.png");
  background-size: 1000px;
  padding: 20px 20px;
  overflow: scroll;
  position: fixed;
  top: 45px;
  right: -100%;
  opacity: 0;
  z-index: 100;
  transition: 0.3s;
}
header.sp .drawer_content.active {
  opacity: 1;
  right: 0;
}
header.sp .drawer_content ul li a {
  display: block;
  padding: 0.5em;
  margin-bottom: 1em;
  position: relative;
  font-size: 17px;
  background-image: linear-gradient(to right, #707070 4px, transparent 4px);
  background-size: 7px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
header.sp .drawer_content ul li a:hover span.arrow {
  right: 1em;
}
header.sp .drawer_content ul li a span.txt {
  color: #707070;
  line-height: 1;
  font-weight: 500;
}
header.sp .drawer_content ul li a span.arrow {
  width: 0.6em;
  height: 0.6em;
  margin: 0 auto;
  position: absolute;
  transform: rotate(45deg);
  right: 1.2em;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: 0.3s;
}
header.sp .drawer_content ul li a span.arrow::before, header.sp .drawer_content ul li a span.arrow::after {
  content: "";
  display: block;
  background: #e79c50;
  border-radius: 10em;
  position: absolute;
}
header.sp .drawer_content ul li a span.arrow::before {
  width: 100%;
  height: 3px;
  top: 0;
  left: 0;
}
header.sp .drawer_content ul li a span.arrow::after {
  width: 3px;
  height: 100%;
  bottom: 0;
  right: 0;
}

.contact {
  background: #f8f8e3;
  padding: 40px 50px 40px 10px;
}
@media screen and (max-width: 600px) {
  .contact {
    padding: 40px 10px;
  }
}
.contact .inner {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 10px;
  background: #fff;
  padding: 30px 15px 40px;
}
.contact .inner h2 {
  text-align: center;
  color: #645447;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 0.2em;
}
.contact .inner p {
  text-align: center;
  color: #645447;
  font-size: 14px;
  line-height: 1.8;
}
@media screen and (max-width: 500px) {
  .contact .inner p {
    text-align: left;
  }
  .contact .inner p br {
    display: none;
  }
}
.contact .inner .item {
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: center;
  max-width: 720px;
  margin: 0 auto;
  padding-top: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 800px) {
  .contact .inner .item {
    flex-direction: column;
    gap: 20px;
  }
}
.contact .inner .item .tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.contact .inner .item .tel .icon {
  line-height: 0;
}
.contact .inner .item .tel .icon img {
  width: 60px;
}
@media screen and (max-width: 500px) {
  .contact .inner .item .tel .icon img {
    width: 50px;
  }
}
.contact .inner .item .tel .txt {
  line-height: 1.2;
  text-align: center;
}
.contact .inner .item .tel .txt span {
  font-size: 12px;
  color: #e79c50;
  font-weight: 500;
}
.contact .inner .item .tel .txt a {
  display: block;
  font-size: 40px;
  font-weight: 700;
  color: #e79c50;
}
@media screen and (max-width: 500px) {
  .contact .inner .item .tel .txt a {
    font-size: 32px;
  }
}
.contact .inner .item .mail {
  flex: 1;
}
.contact .inner .item .mail a {
  display: flex;
  background: #e79c50;
  padding: 1em 3em 1em 2em;
  align-items: center;
  border-radius: 10px;
  position: relative;
  gap: 20px;
}
.contact .inner .item .mail a img {
  width: 30px;
}
.contact .inner .item .mail a span {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}
.contact .inner .item .mail a .arrow {
  width: 0.6em;
  height: 0.6em;
  margin: 0 auto;
  position: absolute;
  transform: rotate(45deg);
  right: 1.2em;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: 0.3s;
}
.contact .inner .item .mail a .arrow::before, .contact .inner .item .mail a .arrow::after {
  content: "";
  display: block;
  background: #fff;
  border-radius: 10em;
  position: absolute;
}
.contact .inner .item .mail a .arrow::before {
  width: 100%;
  height: 3px;
  top: 0;
  left: 0;
}
.contact .inner .item .mail a .arrow::after {
  width: 3px;
  height: 100%;
  bottom: 0;
  right: 0;
}
.contact .inner .btn_link a {
  border: solid 1px #e79c50;
}

footer {
  background-image: url("../img/common/footer/bg.png");
  background-size: 1000px;
  padding: 60px 50px 20px 20px;
}
@media screen and (max-width: 600px) {
  footer {
    padding: 60px 20px 80px;
  }
}
footer .inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media screen and (max-width: 600px) {
  footer .inner {
    flex-direction: column;
    gap: 40px;
  }
}
footer .inner .info .logo {
  margin-bottom: 10px;
}
footer .inner .info .logo img {
  width: 250px;
}
footer .inner .info .address {
  color: #645447;
  font-size: 14px;
}
@media screen and (max-width: 600px) {
  footer .inner .info .address {
    text-align: center;
  }
}
footer .inner .info .address a {
  color: #645447;
  text-decoration: underline;
}
footer .inner nav {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 600px) {
  footer .inner nav {
    flex-direction: column;
    gap: 0;
    text-align: center;
  }
}
footer .inner nav ul li a {
  font-size: 14px;
  display: block;
  padding: 0.3em;
  color: #645447;
}
footer .inner nav ul li a:hover {
  text-decoration: underline;
  opacity: 0.6;
}
footer .inner nav ul li a img {
  width: 1.3em;
  margin-bottom: -0.4em;
}
footer .copyright {
  text-align: center;
  font-size: 12px;
  color: #645447;
}

.bubble {
  position: absolute;
  top: 0;
  width: 200px;
}
@media screen and (max-width: 800px) {
  .bubble {
    display: none;
  }
}
.bubble.left {
  left: -40px;
}
.bubble.right {
  right: -40px;
}
.bubble span {
  display: block;
  border-radius: 10em;
  transition: 1s 0.5s, transform 0.5s ease-out;
  opacity: 0;
  position: absolute;
}
.bubble span.is-animated {
  opacity: 0.4;
}
.bubble span.green {
  background: #a3e7b7;
  width: 180px;
  height: 180px;
  left: 20px;
  top: 60px;
}
.bubble span.yellow {
  background: #edae6d;
  width: 140px;
  height: 140px;
}
.bubble span.pink {
  background: #f5cee8;
  width: 200px;
  height: 200px;
  left: 40px;
}

.heading_page h1 {
  text-align: center;
  padding: 1.5em;
  background: #197334;
  color: #fff;
  letter-spacing: 0.1em;
  font-weight: 400;
  font-size: clamp(20px, 2.5vw, 33px);
}

.heading_section {
  margin-bottom: 40px;
}
.heading_section span {
  display: block;
  font-size: clamp(14px, 1.5vw, 17px);
  text-align: center;
  font-weight: 500;
  color: #707070;
  letter-spacing: 0.08em;
  margin-bottom: 0.2em;
}
.heading_section h2 {
  font-size: clamp(20px, 2.2vw, 24px);
  text-align: center;
  font-weight: 600;
  color: #645447;
  letter-spacing: 0.05em;
  margin-bottom: 0.4em;
  line-height: 1.5;
}
@media screen and (min-width: 600px) {
  .heading_section h2 br {
    display: none;
  }
}
.heading_section .arrow {
  width: 18px;
  height: 18px;
  margin: 0 auto;
  position: relative;
  transform: rotate(45deg);
}
.heading_section .arrow::before, .heading_section .arrow::after {
  content: "";
  display: block;
  background: #e79c50;
  border-radius: 10em;
  position: absolute;
}
.heading_section .arrow::before {
  width: 100%;
  height: 4px;
  bottom: 0;
  left: 0;
}
.heading_section .arrow::after {
  width: 4px;
  height: 100%;
  top: 0;
  right: 0;
}
.heading_section.white span,
.heading_section.white h2 {
  color: #fff;
}

.btn_link {
  text-align: center;
  padding: 20px;
}
.btn_link a {
  display: inline-flex;
  background: #fff;
  border-radius: 10em;
  padding: 1em 3em;
  position: relative;
  font-size: 17px;
}
.btn_link a:hover span.arrow {
  right: 1em;
}
.btn_link a span.txt {
  color: #707070;
  line-height: 1;
  font-weight: 500;
}
.btn_link a span.arrow {
  width: 0.6em;
  height: 0.6em;
  margin: 0 auto;
  position: absolute;
  transform: rotate(45deg);
  right: 1.2em;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: 0.3s;
}
.btn_link a span.arrow::before, .btn_link a span.arrow::after {
  content: "";
  display: block;
  background: #e79c50;
  border-radius: 10em;
  position: absolute;
}
.btn_link a span.arrow::before {
  width: 100%;
  height: 3px;
  top: 0;
  left: 0;
}
.btn_link a span.arrow::after {
  width: 3px;
  height: 100%;
  bottom: 0;
  right: 0;
}

.cta_pc {
  position: fixed;
  right: 0;
  bottom: 5vh;
  margin: auto;
  z-index: 10;
}
.cta_pc ul {
  display: flex;
  flex-direction: column;
  align-items: end;
}
@media screen and (max-width: 600px) {
  .cta_pc ul {
    display: none;
  }
}
.cta_pc ul li {
  margin-bottom: 10px;
  animation: cta_pc 1s both;
}
@keyframes cta_pc {
  0% {
    transform: translateX(100px);
  }
  100% {
    transform: translateX(0px);
  }
}
.cta_pc ul li:nth-child(1) {
  animation-delay: 0.1s;
}
.cta_pc ul li:nth-child(2) {
  animation-delay: 0.3s;
}
.cta_pc ul li:nth-child(3) {
  animation-delay: 0.4s;
}
.cta_pc ul li.mail a {
  background: #fed45f;
  border: solid 3px #fed45f;
  border-right: none;
  color: #fff;
}
.cta_pc ul li.line a {
  background-color: #fff;
  border: solid 3px #22c755;
  border-right: none;
  color: #22c755;
}
.cta_pc ul li.faq a {
  background: #e79c50;
  border: solid 3px #e79c50;
  border-right: none;
  color: #fff;
}
.cta_pc ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #aaa;
  padding: 0.5em 0.2em 0.8em 0.2em;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
}
.cta_pc ul li a:hover {
  padding-right: 1.2em;
}
.cta_pc ul li a img {
  width: 2.4em;
}
.cta_pc ul li a span {
  writing-mode: vertical-rl;
}

.cta_sp {
  width: 100vw;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 1;
  display: none;
}
@media screen and (max-width: 600px) {
  .cta_sp {
    display: block;
  }
}
.cta_sp ul {
  display: flex;
  background: #fff;
  padding: 10px;
  gap: 10px;
}
.cta_sp ul li {
  flex: 1;
}
.cta_sp ul li.tel a {
  background: #edae6d;
}
.cta_sp ul li.mail a {
  background: #fed45f;
}
.cta_sp ul li a {
  display: flex;
  background: #aaa;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  padding: 0.5em;
  gap: 0.2em;
  font-size: 14px;
}
.cta_sp ul li a img {
  width: 2em;
}
.cta_sp ul li a span {
  color: #fff;
}

.page_top {
  overflow: hidden;
}
.page_top section {
  position: relative;
}
.page_top section.mainvisual {
  line-height: 0;
  position: relative;
  overflow: hidden;
}
.page_top section.mainvisual img {
  display: block;
  width: 100%;
  animation: mv_img 5s 0.3s both;
}
@keyframes mv_img {
  0% {
    filter: blur(10px);
    transform: scale(1.1);
  }
  30% {
    filter: blur(0px);
  }
  100% {
    transform: scale(1);
  }
}
@media screen and (max-width: 800px) {
  .page_top section.mainvisual img.pc {
    display: none;
  }
}
@media screen and (min-width: 800px) {
  .page_top section.mainvisual img.sp {
    display: none;
  }
}
.page_top section.mainvisual .copy {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 5px;
  top: 0;
  padding-left: 15vw;
}
@media screen and (max-width: 800px) {
  .page_top section.mainvisual .copy {
    padding-left: 3vw;
    padding-bottom: 5vw;
    justify-content: flex-end;
  }
}
.page_top section.mainvisual .copy div {
  display: inline-block;
  font-size: clamp(26px, 3.4vw, 40px);
  background: #fff;
  color: #645447;
  font-weight: 500;
  padding: 1em 0.6em;
  margin-bottom: 10px;
  animation: copy 1s both;
  box-shadow: 10px 10px 30px -20px rgba(0, 0, 0, 0.2);
}
@keyframes copy {
  0% {
    transform: translateX(20px);
    opacity: 0;
    filter: blur(10px);
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
    filter: blur(0px);
  }
}
.page_top section.mainvisual .copy div:nth-child(1) {
  animation-delay: 0.1s;
}
.page_top section.mainvisual .copy div:nth-child(2) {
  animation-delay: 0.3s;
}
.page_top section.mainvisual .copy div:nth-child(3) {
  animation-delay: 0.6s;
}
.page_top section.mainvisual .copy div span.green {
  color: #197334;
}
.page_top section.mainvisual .copy div span.orange {
  color: #e79c50;
}
.page_top section.mainvisual .copy div span.pink {
  color: #efcfd3;
}
.page_top section#vision {
  padding: clamp(60px, 8vw, 100px) 20px clamp(80px, 10vw, 160px);
  background-image: url("../img/common/header/bg.png");
  background-size: 1000px;
  position: relative;
}
.page_top section#vision img.shape {
  position: absolute;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
}
.page_top section#vision .inner {
  position: relative;
}
.page_top section#vision .inner ul {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 600px) {
  .page_top section#vision .inner ul {
    grid-template-columns: repeat(1, 1fr);
  }
}
.page_top section#vision .inner ul li {
  background: #fff;
  padding: 1em;
  border-radius: 10em;
  text-align: center;
}
.page_top section#vision .inner .txt {
  max-width: 740px;
  margin: 0 auto;
  line-height: 2.2;
  font-size: clamp(15px, 1.5vw, 16px);
}
.page_top section.flow {
  position: relative;
  background: #e6efe2;
}
.page_top section.flow .inner {
  padding: clamp(40px, 5vw, 60px) 20px 120px;
  position: relative;
}
.page_top section.flow .inner ol {
  display: flex;
  max-width: 1000px;
  margin: 0 auto;
  gap: 20px;
}
@media screen and (max-width: 750px) {
  .page_top section.flow .inner ol {
    flex-direction: column;
  }
}
.page_top section.flow .inner ol li {
  flex: 1;
  background: #fff;
  border-radius: 10px;
  padding: 20px 20px 30px;
}
.page_top section.flow .inner ol li .number {
  font-size: clamp(24px, 2.6vw, 30px);
  color: #197334;
  text-align: center;
  padding-bottom: 10px;
  margin-bottom: 15px;
  background-image: linear-gradient(to right, #707070 4px, transparent 4px);
  background-size: 7px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
.page_top section.flow .inner ol li .txt {
  text-align: center;
  font-size: clamp(16px, 1.7vw, 18px);
}
.page_top section.nursing {
  background: #aec975;
  position: relative;
}
.page_top section.nursing .inner {
  padding: 100px 20px 100px;
}
.page_top section.nursing .inner .txt {
  max-width: 780px;
  margin: 0 auto;
}
.page_top section.nursing .inner .txt p {
  line-height: 2.2;
  color: #fff;
  font-size: clamp(15px, 1.5vw, 16px);
}

.page_flow .bubble.right {
  top: 600px;
}
.page_flow .bubble.left {
  top: 1200px;
}
.page_flow .inner {
  position: relative;
  padding: 100px 50px 100px 20px;
}
@media screen and (max-width: 600px) {
  .page_flow .inner {
    padding: 100px 20px;
  }
}
.page_flow .inner .flow {
  max-width: 1000px;
  margin: 0 auto 100px;
}
.page_flow .inner .flow ol li {
  display: flex;
  align-items: center;
  border: solid 3px #e79c50;
  padding: 30px 20px;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 40px;
  position: relative;
}
@media screen and (max-width: 800px) {
  .page_flow .inner .flow ol li {
    flex-direction: column;
  }
}
.page_flow .inner .flow ol li:nth-child(4) {
  background: #e79c50;
}
.page_flow .inner .flow ol li:nth-child(4) h2 {
  color: #fff;
}
.page_flow .inner .flow ol li:nth-child(4) .txt {
  border-left: solid 1px #fff;
}
@media screen and (max-width: 800px) {
  .page_flow .inner .flow ol li:nth-child(4) .txt {
    border-left: none;
    border-top: solid 1px #fff;
  }
}
.page_flow .inner .flow ol li:nth-child(4) .txt p {
  color: #fff;
}
.page_flow .inner .flow ol li:last-child::before {
  display: none;
}
.page_flow .inner .flow ol li::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background: #e79c50;
  position: absolute;
  bottom: -15px;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(45deg);
  z-index: -1;
}
.page_flow .inner .flow ol li h2 {
  width: 200px;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  color: #645447;
}
@media screen and (max-width: 800px) {
  .page_flow .inner .flow ol li h2 {
    margin-bottom: 15px;
    width: 100%;
  }
  .page_flow .inner .flow ol li h2 br {
    display: none;
  }
}
.page_flow .inner .flow ol li .txt {
  flex: 1;
  border-left: solid 1px #707070;
  padding: 20px;
}
@media screen and (max-width: 800px) {
  .page_flow .inner .flow ol li .txt {
    padding-left: 10px;
    border-left: none;
    border-top: solid 1px #707070;
    padding-top: 15px;
  }
}
.page_flow .inner .flow ol li .txt h3 {
  font-size: 15px;
  font-weight: 400;
  color: #e79c50;
}
.page_flow .inner .flow ol li .txt p {
  font-size: 14px;
  color: #645447;
}
.page_flow .inner .diagram {
  max-width: 600px;
  margin: 0 auto;
}
.page_flow .inner .diagram .txt {
  text-align: center;
  color: #645447;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.page_flow .inner .diagram img {
  margin-bottom: 40px;
}
@media screen and (max-width: 800px) {
  .page_flow .inner .diagram img.pc {
    display: none;
  }
}
.page_flow .inner .diagram img.sp {
  display: none;
}
@media screen and (max-width: 800px) {
  .page_flow .inner .diagram img.sp {
    display: block;
  }
}
.page_flow .inner .diagram .comment {
  border: solid 3px #efcfd3;
  border-radius: 10px;
  padding: 30px;
}
.page_flow .inner .diagram .comment h3 {
  color: #645447;
  text-align: center;
  font-weight: 400;
  margin-bottom: 0.5em;
}
.page_flow .inner .diagram .comment ul {
  padding-left: 1em;
}
.page_flow .inner .diagram .comment ul li {
  color: #645447;
  list-style: disc;
  margin-bottom: 0.5em;
}
.page_flow .inner .diagram .comment ul li:last-child {
  margin-bottom: 0;
}

.page_service section {
  position: relative;
}
.page_service section .inner {
  padding: 100px 20px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 100px 50px 100px 20px;
  position: relative;
}
@media screen and (max-width: 600px) {
  .page_service section .inner {
    padding: 100px 20px;
  }
}
.page_service section.service {
  background: #fbfaf3;
  position: relative;
}
.page_service section.service .bubble.left {
  top: 800px;
}
.page_service section.service .inner {
  position: relative;
}
.page_service section.service .inner .introduction {
  margin-bottom: 20px;
}
.page_service section.service .inner .introduction p {
  font-size: 14px;
  color: #645447;
}
.page_service section.service .inner .clm {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 60px;
}
@media screen and (max-width: 700px) {
  .page_service section.service .inner .clm {
    flex-direction: column;
  }
}
.page_service section.service .inner .clm .img_box {
  width: 380px;
}
@media screen and (max-width: 700px) {
  .page_service section.service .inner .clm .img_box {
    width: 100%;
  }
}
.page_service section.service .inner .clm .txt_box {
  flex: 1;
}
.page_service section.service .inner .clm .txt_box h3 {
  border-bottom: solid 3px #e79c50;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
  font-weight: 400;
  color: #645447;
}
.page_service section.service .inner .clm .txt_box p {
  color: #645447;
  font-size: 14px;
}
.page_service section.service .inner ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media screen and (max-width: 700px) {
  .page_service section.service .inner ul {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 500px) {
  .page_service section.service .inner ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
.page_service section.service .inner ul .thumbnail {
  aspect-ratio: 4/3;
}
.page_service section.service .inner ul .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page_service section.service .inner ul span {
  display: block;
  text-align: center;
  font-size: clamp(14px, 1.5vw, 16px);
  color: #645447;
}
.page_service section.price .bubble.right {
  top: 300px;
}
.page_service section.price .inner ol {
  display: flex;
  max-width: 1000px;
  margin: 0 auto 60px;
  gap: 20px;
}
@media screen and (max-width: 800px) {
  .page_service section.price .inner ol {
    flex-direction: column;
  }
}
.page_service section.price .inner ol li {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 10px;
  padding: 20px 10px;
  border: solid 3px #e79c50;
}
.page_service section.price .inner ol li h3 {
  font-size: 14px;
  font-weight: 400;
  color: #645447;
  text-align: center;
  padding-bottom: 10px;
  margin-bottom: 15px;
  background-image: linear-gradient(to right, #707070 4px, transparent 4px);
  background-size: 7px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
.page_service section.price .inner ol li .txt {
  font-size: 18px;
  color: #5b8457;
  text-align: center;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page_service section.price .inner .comment {
  text-align: center;
  border-top: solid 1px #707070;
  border-bottom: solid 1px #707070;
  padding: 50px 10px;
}
@media screen and (max-width: 700px) {
  .page_service section.price .inner .comment {
    text-align: left;
  }
  .page_service section.price .inner .comment br {
    display: none;
  }
}
.page_service section.price .inner .comment p {
  margin-bottom: 0;
  color: #645447;
  line-height: 2.4;
}
.page_service section.price .inner .comment p b {
  font-weight: 400;
  color: #e79c50;
}
.page_service section.price .inner article h3 {
  font-size: 16px;
  font-weight: 400;
  color: #e79c50;
  padding: 2em 0 0.5em;
}
.page_service section.price .inner article p {
  font-size: 14px;
  color: #645447;
}
.page_service section#faq {
  padding-top: 60px;
}
.page_service section#faq .bubble.left {
  top: 1000px;
}
.page_service section#faq .inner ul li {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: solid 1px #aaa;
}
.page_service section#faq .inner ul li .Q {
  position: relative;
  padding-left: 2em;
  font-size: 16px;
  color: #645447;
  margin-bottom: 0.5em;
}
.page_service section#faq .inner ul li .Q::before {
  content: "Q";
  display: block;
  width: 1em;
  font-size: 22px;
  color: #e79c50;
  line-height: 1;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
}
.page_service section#faq .inner ul li .A {
  position: relative;
  padding-left: 2em;
}
.page_service section#faq .inner ul li .A::before {
  content: "A";
  display: block;
  width: 1em;
  font-size: 22px;
  color: #5b8457;
  line-height: 1;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
}
.page_service section#faq .inner ul li .A p {
  font-size: 14px;
  color: #645447;
}
.page_service section#faq .inner ul li .A p small {
  display: inline-block;
  line-height: 1.8;
}
.page_service section#faq .inner ul li .A table tr th,
.page_service section#faq .inner ul li .A table tr td {
  font-size: 14px;
  color: #645447;
  font-weight: 400;
  vertical-align: top;
  padding-bottom: 0.5em;
}
.page_service section#faq .inner ul li .A table tr td {
  padding-left: 0.2em;
}
.page_service section#faq .inner ul li .A table tr th {
  white-space: nowrap;
  position: relative;
  padding-right: 1em;
}
.page_service section#faq .inner ul li .A table tr th::after {
  content: ":";
  position: absolute;
  right: 0;
  top: 0;
}

.page_recruit .heading {
  position: relative;
  line-height: 0;
}
.page_recruit .heading img {
  width: 100%;
}
.page_recruit .heading h1 {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  color: #5b8457;
  position: absolute;
  top: 0;
  left: 0;
}
.page_recruit section {
  position: relative;
}
.page_recruit section .inenr {
  position: relative;
}
.page_recruit section.message {
  background: #fbfaf3;
}
.page_recruit section.message .bubble.right {
  top: 700px;
}
.page_recruit section.message .bubble.left {
  top: 200px;
}
.page_recruit section.message .inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 100px 50px 0 20px;
}
@media screen and (max-width: 600px) {
  .page_recruit section.message .inner {
    padding: 100px 20px 0;
  }
}
@media screen and (max-width: 500px) {
  .page_recruit section.message .inner h3 {
    margin-bottom: 20px;
  }
}
.page_recruit section.message .inner .clm {
  display: flex;
  align-items: flex-end;
  gap: 20px;
}
@media screen and (max-width: 500px) {
  .page_recruit section.message .inner .clm {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 0;
  }
}
.page_recruit section.message .inner .clm .representative {
  width: 260px;
  line-height: 0;
}
@media screen and (max-width: 600px) {
  .page_recruit section.message .inner .clm .representative {
    width: 200px;
  }
}
@media screen and (max-width: 500px) {
  .page_recruit section.message .inner .clm .representative {
    width: 200px;
    height: 280px;
    overflow: hidden;
  }
}
.page_recruit section.message .inner .clm .txt {
  flex: 1;
  margin-bottom: 40px;
}
@media screen and (max-width: 500px) {
  .page_recruit section.message .inner .clm .txt {
    margin-bottom: -50px;
  }
}
.page_recruit section.message .inner .clm .txt p {
  font-size: 14px;
  color: #645447;
}
.page_recruit section.message .inner .clm .txt .name {
  display: flex;
  align-items: center;
  justify-content: end;
  font-size: 15px;
  color: #645447;
  letter-spacing: 0.8em;
}
.page_recruit section.message .inner .clm .txt .name img {
  width: 100px;
}
.page_recruit section.recruit .bubble.left {
  top: 600px;
}
.page_recruit section.recruit .inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 100px 50px 100px 20px;
}
@media screen and (max-width: 600px) {
  .page_recruit section.recruit .inner {
    padding: 100px 20px 60px;
  }
}
.page_recruit section.recruit .inner ul {
  border: solid 3px #e79c50;
  margin-bottom: 20px;
}
.page_recruit section.recruit .inner ul li {
  padding: 15px 0;
  border-bottom: solid 3px #e79c50;
  display: flex;
}
@media screen and (max-width: 600px) {
  .page_recruit section.recruit .inner ul li {
    flex-direction: column;
    padding: 15px 10px;
  }
}
.page_recruit section.recruit .inner ul li:last-child {
  border-bottom: 0;
}
.page_recruit section.recruit .inner ul li h3 {
  width: 200px;
  text-align: center;
  border-right: solid 2px #707070;
  font-weight: 400;
  font-size: 15px;
  color: #645447;
}
@media screen and (max-width: 600px) {
  .page_recruit section.recruit .inner ul li h3 {
    text-align: left;
    padding: 0 5px;
    width: auto;
    font-weight: 600;
    border-right: none;
  }
}
.page_recruit section.recruit .inner ul li .txt {
  flex: 1;
  padding: 0 40px;
  font-weight: 400;
  font-size: 15px;
  color: #645447;
}
@media screen and (max-width: 600px) {
  .page_recruit section.recruit .inner ul li .txt {
    padding: 0 5px;
  }
}
.page_recruit section.recruit .inner .not_message {
  width: 90%;
  background: #e79c50;
  color: #fff;
  margin: 0 auto;
  text-align: center;
  border-radius: 10em;
  padding: 1em;
}

.page_nursing {
  background: #fbfaf3;
}
.page_nursing .bubble.right {
  top: 500px;
}
.page_nursing .bubble.left {
  top: 800px;
}
.page_nursing .inner {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 100px 50px 100px 20px;
}
@media screen and (max-width: 600px) {
  .page_nursing .inner {
    padding: 100px 20px;
  }
}
.page_nursing .inner h2 {
  font-weight: 500;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.8;
  color: #645447;
  text-align: center;
  margin-bottom: 1em;
}
@media screen and (max-width: 600px) {
  .page_nursing .inner h2 {
    text-align: left;
  }
  .page_nursing .inner h2 br {
    display: none;
  }
}
.page_nursing .inner p {
  color: #645447;
}/*# sourceMappingURL=style.css.map */