@charset "utf-8";
body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-size: 16px;
  font-size: clamp(0.875rem, 0.816rem + 0.29vw, 1rem);
  font-family: "Noto Sans JP", system-ui;
  font-weight: var(--font-weight-Medium);
  line-height: 1.8;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

/*共通の設定
------------------------------------------------------------------------------*/
:root {
  --font-weight-Regular: 400;
  --font-weight-Medium: 500;
  --font-weight-Bold: 700;
  --font-weight-Black: 900;
  --text-color: #333;
  --primary-color: #ff6e82;
  --color-white: #fff;
  --color-black: #000;
  --bg-color: #fffaf0;
}

/*inner*/
.inner {
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 30px;
  padding-left: 30px;
  box-sizing: content-box;
}
.inner-960 {
  max-width: 960px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 30px;
  padding-left: 30px;
  box-sizing: content-box;
}
.inner-990 {
  max-width: 990px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 30px;
  padding-left: 30px;
  box-sizing: content-box;
}
/*背景*/
.bg-white {
  background-color: var(--color-white);
}
.bg-pink {
  background-color: var(--primary-color);
}

/*角丸*/
.box-rounded-md {
  border-radius: 10px;
}
.box-rounded-lg {
  border-radius: 20px;
}

/*ボタン*/
.btn-link {
  display: inline-block;
  height: 50px;
  max-width: 264px;
  width: 100%;
  margin: 0 auto;
}
.btn-link > a,
.btn-link > span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  padding: 0.8em 2em;
  border-radius: 82px;
  border: 3px solid var(--primary-color);
  background-color: var(--color-white);
  font-size: 13px;
  font-weight: var(--font-weight-Bold);
  color: var(--primary-color);
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
}
.btn-link-wrap {
  position: absolute;
  right: 1.5em;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
}
.arrow-right {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 2px;
  margin: 8.5px 0;
  border-radius: 9999px;
  background-color: #ff6e82;
}
.arrow-right::before,
.arrow-right::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 10px;
  height: 2px;
  border-radius: 9999px;
  background-color: #ff6e82;
  transform-origin: calc(100% - 1px) 50%;
}
.arrow-right::before {
  transform: rotate(45deg);
}
.arrow-right::after {
  transform: rotate(-45deg);
}
.btn-link > a:hover,
.btn-link > span:hover {
  cursor: pointer;
  background-color: var(--primary-color);
  color: var(--color-white);
}
.btn-link > a:hover .arrow-right,
.btn-link > span:hover .arrow-right {
  background-color: #fff;
}
.btn-link > a:hover .arrow-right::before,
.btn-link > a:hover .arrow-right::after,
.btn-link > span:hover .arrow-right::before,
.btn-link > span:hover .arrow-right::after {
  background-color: #fff;
}

.btn-contact {
  height: 60px;
  max-width: 360px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.btn-contact .contact-message {
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: var(--font-weight-Black);
  color: var(--color-white);
}
.bg-white .btn-contact .contact-message {
  color: var(--text-color);
}
.btn-contact .contact-message::before,
.btn-contact .contact-message::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 1em;
  background-color: var(--color-white);
  border-radius: 6px;
  vertical-align: -5px;
}
.bg-white .btn-contact .contact-message::before,
.bg-white .btn-contact .contact-message::after {
  background-color: var(--text-color);
}
.btn-contact .contact-message::before {
  margin-right: 1em;
  transform: rotate(-45deg);
}
.btn-contact .contact-message::after {
  margin-left: 1em;
  transform: rotate(45deg);
}
.btn-contact a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  padding: 0.8em 1em;
  border: 2px solid var(--color-black);
  border-radius: 100px;
  background-color: var(--color-black);
  font-size: 20px;
  font-weight: var(--font-weight-Black);
  color: var(--color-white);
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
}
.btn-contact .arrow-right {
  width: 20px;
  background-color: var(--color-white);
}
.btn-contact .arrow-right::before,
.btn-contact .arrow-right::after {
  width: 10px;
  background-color: var(--color-white);
}
.btn-contact a:hover {
  border: 2px solid var(--color-white);
  background-color: var(--primary-color);
}
/*Modal*/
.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 50%);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  box-sizing: border-box;
  z-index: 9999;
}
.modal-container:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
.modal-container.active {
  opacity: 1;
  visibility: visible;
}
.modal-body {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 948px;
  width: 90%;
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  font-size: 50px;
  line-height: 1;
  color: var(--color-black);
  cursor: pointer;
  text-align: center;
}
.modal-close span {
  display: block;
  font-size: 14px;
}
.modal-content {
  background: #fffaf0;
  text-align: left;
  padding: 70px;
  border-radius: 20px;
  box-shadow: 0px 12px 5.8px 3px rgba(0, 0, 0, 0.25);
}
.modal-intro {
  font-size: 18px;
  text-align: center;
  line-height: 1.4;
}
.modal-title {
  color: var(--primary-color);
  font-size: 30px;
  text-align: center;
  margin-bottom: 0.5em;
}
.modal-description {
  padding: 25px;
  background-color: var(--color-white);
  border-radius: 15px;
  font-size: 16px;
  font-weight: var(--font-weight-Regular);
}

/*Bold*/
.bold {
  font-weight: var(--font-weight-Bold);
}
/*List*/
li {
  list-style: none;
}
/*LINK*/
a {
  text-decoration: none;
}
/*TEXT*/
.center {
  text-align: center;
}
.text-pink {
  color: var(--primary-color);
}
/*PC・SP切替え*/
.pc {
  display: block;
}
.sp {
  display: none;
}

/*HEADER
------------------------------------------------------------------------------*/
.header {
  margin-top: 26px;
}
.header-logo {
  max-width: 150px;
}
.main-visual {
  max-width: 1209px;
  margin: -25px auto 0;
  padding-right: 30px;
  padding-left: 30px;
  box-sizing: content-box;
}
.main-visual img {
  max-width: 100%;
}

/*MAIN
------------------------------------------------------------------------------*/
/*介護離職への危機*/
.care-issues {
  padding-top: 25px;
  padding-bottom: 80px;
  text-align: center;
}
.care-issues h2 strong {
  display: inline-block;
  padding: 0 2px 8px;
  background-color: var(--primary-color);
  color: var(--color-white);
  font-size: 50px;
  line-height: 1;
}
.care-issues h2 small {
  font-size: 34px;
}
.care-issues h2 span {
  font-size: 40px;
}
.care-subtitle {
  margin-bottom: 56px;
  color: var(--primary-color);
  font-size: 25px;
}
.care-issues-title {
  display: inline-block;
  margin-bottom: 60px;
  padding-right: 1em;
  padding-left: 1em;
  border-bottom: 4px solid var(--primary-color);
  font-size: 25px;
}
.care-issues-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3%;
  max-width: 960px;
  margin: 0 auto 60px;
  padding: 0;
}
.care-issue-item {
  display: grid;
  grid-row: span 3;
  grid-template-rows: subgrid;
  gap: 10px;
  padding: 18px 18px 28px;
  border: 3px solid var(--primary-color);
  border-radius: 13px;
}
.care-issue-item figure {
  display: flex;
  align-items: center;
  justify-content: center;
}
.care-issue-item figure.sp {
  display: none !important;
}
.issue-title {
  color: var(--primary-color);
  font-size: 25px;
}
.issue-description {
  font-size: 16px;
  text-align: left;
}
.care-spiral {
  margin-bottom: 70px;
  font-size: 24px;
}
.care-spiral strong {
  color: var(--primary-color);
  font-size: 30px;
}

.care-spiral-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  padding: 0;
}
.spiral-step {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 146px;
  height: 146px;
  padding: 0.5em;
  border-radius: 10px;
  border: 2px solid var(--primary-color);
  font-size: 18px;
  text-align: left;
  line-height: 1.4;
  position: relative;
}
.spiral-step:nth-child(5),
.spiral-step:nth-child(6) {
  background-color: var(--primary-color);
  color: var(--color-white);
  font-size: 20px;
}
.spiral-step::after {
  content: "";
  display: inline-block;
  width: 23px;
  height: 43px;
  background: url(/images/issues_arrow.png) no-repeat center;
  background-size: contain;
  position: absolute;
  right: -28px;
}
.spiral-step:last-child::after {
  background: none;
}
.arrow-below {
  display: flex;
  justify-content: center;
  padding: 26px 0 36px;
}
.solution-bar {
  display: flex;
  padding: 40px 0 30px;
  color: var(--color-white);
}
.solution-text {
  text-align: center;
}
.solution-logo {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.5em;
  font-size: 40px;
}
.solution-message {
  font-size: 56px;
}
.solution-message sup {
  font-size: 40%;
  vertical-align: top;
}
.content-section {
  background: url(/images/bg_map.png) no-repeat 50% 50%;
  padding-top: 90px;
  text-align: center;
}
.content-logo {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 35px;
  color: var(--primary-color);
  font-size: 26px;
}
.content-logo img {
  width: 100%;
  max-width: 247px;
}
.content-text01 {
  margin-bottom: 1em;
  font-size: 25px;
}
.content-text01 strong {
  color: var(--primary-color);
}
.content-text02 {
  margin-bottom: 2em;
  font-size: 18px;
  line-height: 2;
}
.content-link {
  display: block;
  margin-bottom: 45px;
}
.content-image {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-top: -18%;
  margin-right: -2%;
}
.content-section .btn-link {
  position: relative;
  z-index: 2;
}
/*導入のメリット*/
.section-merit {
  padding-top: 50px;
  padding-bottom: 110px;
}
.merit-title {
  display: block;
  color: var(--color-white);
  font-size: 40px;
  margin-bottom: 30px;
  text-align: center;
}
.merit-logo {
  width: 100%;
  max-width: 150px;
  margin: 0 auto;
}
.merit-benefits {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3%;
}
.merit-benefit {
  position: relative;
  width: 48.5%;
  margin-bottom: 50px;
  padding: 24px 24px 70px;
  border-radius: 6px;
  text-align: center;
}
.benefit-title {
  display: inline-block;
  margin: 0 auto 0.5em;
  padding: 0 0.5em 2px;
  border-bottom: 4px solid var(--primary-color);
  text-align: center;
  font-size: 40px;
  line-height: 1;
}
.benefit-list {
  display: inline-block;
  margin: 0;
  padding: 0;
  text-align: left;
}
.benefit-item {
  display: flex;
  align-items: baseline;
  font-size: 18px;
}
.benefit-item span.number {
  display: inline-block;
  width: 1.5em;
  font-size: 30px;
  font-family: "Agdasima", sans-serif;
  font-weight: 700;
  color: rgba(255, 110, 130, 0.5);
}
.benefit-item strong {
  font-size: 25px;
}
.benefit-image {
  position: absolute;
  bottom: 0;
}
.merit-benefit-company .benefit-image {
  right: 0;
  transform: translate(50%, 0);
}
.merit-benefit-employee .benefit-image {
  left: 0;
  transform: translate(-50%, 0);
}
/*法人サービスについて*/
.section-service {
  padding-top: 50px;
  padding-bottom: 100px;
}
.service-title {
  margin-bottom: 40px;
  text-align: center;
}
.service-title .service-text {
  display: block;
  margin-bottom: 15px;
  font-size: 28px;
  color: var(--primary-color);
}
.service-title .service-text02 {
  font-size: 40px;
}
.service-title .shoulder {
  display: block;
  font-size: 20px;
  font-weight: var(--font-weight-Medium);
  line-height: 1;
  margin-top: 2em;
}
.service-title .service-text02 .bold {
  line-height: 1;
}
.service-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}
.service-logo img {
  width: 100%;
  max-width: 247px;
}
.service-main-image {
  display: flex;
  justify-content: center;
  margin-bottom: 130px;
  padding-right: 30px;
  padding-left: 30px;
  box-sizing: border-box;
}
.service-options-title {
  margin-bottom: 4em;
  font-size: 40px;
  font-weight: var(--font-weight-Bold);
  text-align: center;
}
.service-options-title img {
  margin: 0 auto;
}
.service-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(470px, 1fr));
  gap: 5%;
  margin-bottom: 120px;
}
.service-option {
  display: grid;
  grid-row: span 5;
  grid-template-rows: subgrid;
  gap: 12px;
  padding: 0 25px 30px;
  border-radius: 9px;
}
.option-number {
  margin: -0.5em auto 0;
  font-family: "Satisfy", cursive;
  font-size: 109px;
  color: var(--primary-color);
  line-height: 1;
}
.option-title {
  font-size: 30px;
  text-align: center;
}
.option-description {
  margin-bottom: 3em;
  line-height: 2;
}
.option-image {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.care-assistance {
  margin-bottom: 113px;
  padding-bottom: 115px;
}
.buddy-service {
  padding-bottom: 90px;
}
#care-assistance,
#buddy-service {
  margin-top: -80px;
  padding-top: 80px;
}
.assistance-detail,
.buddy-detail {
  display: inline-block;
  width: 100%;
}
.assistance-number,
.service-number {
  margin: -0.5em auto 0;
  font-family: "Satisfy", cursive;
  font-size: 109px;
  color: var(--primary-color);
  line-height: 1;
  text-align: center;
}
.assistance-title {
  margin-bottom: 1em;
  font-size: 40px;
  text-align: center;
}
.assistance-description,
.buddy-description {
  max-width: 500px;
  margin: 0 auto 50px;
  font-size: 16px;
  font-weight: var(--font-weight-Regular);
  text-align: left;
  line-height: 2;
}
.care-coordinator-list {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin: 0 auto 75px;
  padding: 0;
}
.coordinator-item {
  position: relative;
}
.coordinator-item p {
  position: absolute;
  bottom: -1em;
  right: 0;
  color: #727272;
  font-size: 14px;
  line-height: 1.4;
}
.assistance-support {
  display: flex;
  justify-content: center;
  gap: 7%;
  margin-bottom: 60px;
}
.support-detail {
  width: 46.5%;
}
.support-title {
  margin-bottom: 1em;
  font-size: 21px;
  text-align: center;
}
.support-title strong {
  font-size: 26px;
}
.support-title::before,
.support-title::after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 1.5em;
  background-color: var(--primary-color);
  border-radius: 6px;
  vertical-align: -5px;
}
.support-title::before {
  margin-right: 1em;
  transform: rotate(-45deg);
}
.support-title::after {
  margin-left: 1em;
  transform: rotate(45deg);
}
.support-image {
  display: flex;
  justify-content: center;
  margin-bottom: 35px;
}
.support-description {
  padding: 1em 2em;
  background-color: #f1f3f4;
  border-radius: 6px;
  font-size: 16px;
}
.buddy-title {
  margin-bottom: 1em;
  text-align: center;
}
.buddy-title span {
  display: block;
  font-size: 32px;
}
.buddy-title strong {
  font-size: 35px;
}
.buddy-image {
  margin: 0 auto 100px;
}
.buddy-image02 {
  margin: 0 auto 70px;
}
.service-description {
  margin: 40px auto;
  font-size: 26px;
  font-weight: var(--font-weight-Bold);
  text-align: center;
}
.service-description span {
  font-size: 40px;
}
.service-description span sup {
  font-size: 16px;
  vertical-align: top;
}
.service-description small {
  display: block;
  font-size: 12px;
}
/*会社紹介*/
.section-project {
  padding-top: 75px;
  padding-bottom: 120px;
  color: var(--color-white);
  text-align: center;
}
.project-title {
  margin-bottom: 0.5em;
}
.project-logo {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5em;
  font-size: 35px;
  font-weight: var(--font-weight-Medium);
}
.project-logo img {
  width: 100%;
  max-width: 206px;
}
.project-title-text {
  font-size: 35px;
  font-weight: var(--font-weight-Medium);
}
.project-title-text strong {
  font-size: 40px;
}
.project-title-text span {
  padding-right: 0.1em;
  padding-left: 0.1em;
}
.project-title-note {
  margin-bottom: 3em;
  font-size: 14px;
}
.project-partners {
  display: flex;
  gap: 5%;
  color: var(--text-color);
}
.partner-card {
  width: 47.5%;
  padding-right: 30px;
  padding-bottom: 50px;
  padding-left: 30px;
  border-radius: 15px;
}
.partner-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 296px;
}
.partner-name {
  padding-bottom: 10px;
  font-size: 20px;
}
.partner-info {
  padding: 1em 1.5em 0;
  border-top: 2px solid #f1f3f4;
  border-bottom: 2px solid #f1f3f4;
  font-size: 16px;
  line-height: 1.6;
  text-align: left;
}
.partner-info th {
  width: 6em;
  vertical-align: top;
}
.partner-info th,
.partner-info td {
  padding-bottom: 1em;
}
.partner-link {
  margin: 0;
  padding: 1em 1.5em 0;
  text-align: left;
}
.partner-link a {
  font-size: 14px;
  font-weight: var(--font-weight-Regular);
  color: var(--text-color);
  text-decoration: underline;
}

/*お問い合わせ*/
.section-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 60px 0;
  background: url(/images/contact_bg-pc.png) no-repeat 0 0;
  background-size: cover;
  aspect-ratio: 1439 / 338;
}
.section-contact .inner {
  width: 100%;
}
.section-contact .btn a {
  display: block;
}
.section-contact .btn {
  position: relative;
}
.section-contact .btn img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 717px;
  height: auto;
  display: block;
  transition: 0.7s;
}
.section-contact .btn:hover img:nth-of-type(2) {
  cursor: pointer;
  opacity: 0;
}

/*FOOTER
------------------------------------------------------------------------------*/
.footer {
  padding: 40px 0 45px;
  background-color: var(--primary-color);
  text-align: center;
}
.footer-logo {
  display: block;
  max-width: 149px;
  margin: 0 auto 30px;
}
.copyright {
  color: #fff;
  font-size: 14px;
  text-align: center;
}
.fixed-banner {
  display: none;
  position: fixed;
  bottom: 0;
  z-index: 999;
  width: 100%;
  padding: 15px 30px;
  background-color: var(--primary-color);
}
.fixed-banner .btn-contact {
  height: auto;
  max-width: 360px;
}
.fixed-banner .btn-contact a {
  padding: 0.2em 1em;
  line-height: 1.4;
}
.fixed-banner .btn-contact a .small {
  font-size: 60%;
}
.fixed-banner.visible {
  display: block;
}
/*支援になる制度とは*/
.system-contents {
  padding-top: 50px;
}
.system-title {
  position: relative;
  display: inline-block;
  margin-bottom: 60px;
  padding: 0.5em 1.5em;
  background-color: var(--primary-color);
  color: var(--color-white);
  font-size: 28px;
  font-weight: var(--font-weight-Bold);
  text-align: center;
  line-height: 1;
}
.system-title:before {
  content: "";
  position: absolute;
  top: -16px;
  left: 15%;
  transform: translateX(-50%);
  width: 22px;
  height: 17px;
  background-color: var(--primary-color);
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  border-radius: 2px;
}
.system-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3%;
  max-width: 960px;
  margin: 0 auto 90px;
  padding: 0;
}
.system-list-item {
  display: grid;
  grid-row: span 3;
  grid-template-rows: subgrid;
  gap: 30px;
  justify-content: center;
  padding: 50px 0 20px;
  border: 3px solid var(--primary-color);
  border-radius: 13px;
}
.system-list-item figure {
  margin: 0 auto;
}
.system-description strong {
  font-size: 24px;
  font-weight: var(--font-weight-Bold);
}

@media screen and (max-width: 1230px) {
  .merit-title {
    margin-bottom: 105px;
  }
  .benefit-image {
    position: absolute;
    bottom: auto;
    top: 0;
    transform: translate(-50%, -50%);
  }
  .merit-benefit-company .benefit-image {
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
  }
  .merit-benefit-employee .benefit-image {
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .merit-benefit {
    padding: 115px 24px 70px;
  }
}
@media screen and (max-width: 768px) {
  /*PC・SP切替え*/
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  /*inner*/
  .inner,
  .inner-960,
  .inner-990 {
    padding-right: 15px;
    padding-left: 15px;
  }
  /*ボタン*/
  .btn-link {
    height: 70px;
    max-width: 316px;
  }
  .btn-link > a,
  .btn-link > span {
    font-size: 18px;
  }
  .btn-link-wrap {
    right: 1em;
  }
  .btn-contact {
    height: 76px;
    max-width: 350px;
  }
  /*Modal*/
  .modal-container {
    padding: 40px 0;
  }
  .modal-container:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
  }
  .modal-container.active {
    opacity: 1;
    visibility: visible;
  }
  .modal-body {
    width: calc(100% - 30px);
  }
  .modal-close {
    position: absolute;
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: 60px;
    height: 60px;
    font-size: 30px;
  }
  .modal-close span {
    display: block;
    font-size: 14px;
  }
  .modal-content {
    padding: 30px 20px 70px;
  }
  .modal-intro {
    font-size: 14px;
  }
  .modal-title {
    font-size: 25px;
    margin-bottom: 15px;
  }
  .modal-description {
    padding: 2em;
    font-size: 14px;
  }

  /*HEADER
------------------------------------------------------------------------------*/
  .header {
    margin-top: 0;
  }
  .main-visual {
    margin: 0;
    padding-right: 0;
    padding-left: 0;
  }

  /*MAIN
------------------------------------------------------------------------------*/
  /*介護離職への危機*/
  .care-issues {
    margin: 0 15px;
    padding-top: 50px;
    padding-bottom: 20px;
  }
  .care-issues h2 strong {
    padding: 2px 2px 4px;
    font-size: 32px;
  }
  .care-issues h2 small {
    font-size: 22px;
  }
  .care-issues h2 span {
    font-size: 24px;
  }
  .care-subtitle {
    margin-top: 1em;
    margin-bottom: 30px;
    font-size: 16px;
  }
  .care-issues-title {
    margin-bottom: 30px;
    padding-right: 0;
    padding-left: 0;
    border-bottom: 2px solid var(--primary-color);
    font-size: 20px;
  }
  .care-issues-list {
    gap: 3%;
    margin: 0 auto 50px;
    grid-template-columns: repeat(auto-fit, minmax(98px, 1fr));
  }
  .care-issue-item {
    padding: 0;
    border: none;
  }
  .care-issue-item figure.sp {
    display: flex !important;
    height: 84px;
  }
  .care-issue-item figure.pc {
    display: none !important;
  }
  .care-issue-item:nth-child(1) img {
    width: 45px;
  }
  .care-issue-item:nth-child(2) img {
    width: 40px;
  }
  .care-issue-item:nth-child(3) img {
    width: 80px;
  }
  .issue-title {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 1em;
    font-size: 16px;
    line-height: 1.4;
  }
  .issue-description {
    font-size: 12px;
  }
  .care-spiral {
    margin-bottom: 35px;
    font-size: 18px;
  }
  .care-spiral strong {
    font-size: 23px;
  }
  .care-spiral-list {
    display: block;
  }
  .spiral-step {
    width: 100%;
    height: 70px;
    margin-bottom: 35px;
    padding: 0.5em;
    border: 1px solid var(--primary-color);
    font-size: 16px;
  }
  .spiral-step:nth-child(5),
  .spiral-step:nth-child(6) {
    font-size: 18px;
  }
  .spiral-step::after {
    width: 43px;
    height: 29px;
    background: url(/images/issues_arrow-sp.png) no-repeat center;
    right: 0;
    bottom: -30px;
    left: 0;
    margin: auto;
  }
  .spiral-step:last-child::after {
    background: none;
  }
  .arrow-below {
    margin: 0 auto;
    padding: 18px 0;
    max-width: 156px;
  }
  .solution-bar {
    padding: 30px 0 40px;
  }
  .solution-logo {
    display: block;
    font-size: 16px;
  }
  .solution-logo img {
    width: 100%;
    max-width: 146px;
    margin: 0 auto 10px;
  }
  .solution-message {
    font-size: 45px;
  }
  .content-section {
    background: url(/images/bg_map.png) no-repeat 50% 50%;
    background-size: 100% auto;
  }
  .content-section .inner {
    padding-right: 40px;
    padding-left: 40px;
  }
  .content-logo {
    margin-bottom: 20px;
    font-size: 20px;
  }
  .content-logo img {
    width: 100%;
    max-width: 193px;
  }
  .content-text01 {
    margin-bottom: 1em;
    font-size: 20px;
    text-align: left;
  }
  .content-text01 strong {
    color: var(--primary-color);
  }
  .content-text02 {
    margin-bottom: 6em;
    font-size: 14px;
    text-align: left;
  }
  .content-link {
    display: block;
    margin-bottom: 45px;
  }
  .content-image {
    margin-top: 40px;
    margin-right: 0;
  }
  /*導入のメリット*/
  .merit-benefits {
    display: block;
  }
  .benefit-title {
    margin: 0 auto 1em;
    padding: 0;
    border-bottom: none;
    font-size: 30px;
  }
  .merit-benefit-employee img {
    width: 78px;
  }
  .merit-benefit-company img {
    width: 68px;
  }
  .benefit-image {
    position: absolute;
    bottom: auto;
    top: -30px;
    transform: translate(-50%, -50%);
  }
  .merit-benefit-company .benefit-image {
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
  }
  .merit-benefit-employee .benefit-image {
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .merit-benefit {
    width: 100%;
    padding: 40px 18px;
  }
  .merit-benefit-employee {
    margin-bottom: 105px;
  }
  .benefit-item {
    font-size: 16px;
  }
  .benefit-item span.number {
    font-size: 24px;
  }
  .benefit-item strong {
    font-size: 20px;
  }
  /*法人サービスについて*/
  .section-service {
    padding-top: 50px;
    padding-bottom: 0;
  }
  .service-title {
    margin-bottom: 0;
  }
  .service-title .service-text {
    margin-bottom: 10px;
    font-size: 20px;
  }
  .service-title .service-title {
    font-size: 30px;
  }
  .service-logo img {
    width: 153px;
  }
  .service-main-image {
    margin-top: -70px;
    margin-bottom: 90px;
    padding-right: 0;
    padding-left: 15px;
  }
  .service-options {
    display: block;
    margin-bottom: 120px;
  }
  .service-option {
    margin-bottom: 85px;
    padding: 0 15px 30px;
  }
  .option-number {
    font-size: 80px;
  }
  .option-title {
    font-size: 30px;
  }
  .service-option-buddy-service .option-title {
    font-size: 26px;
    line-height: 1.4;
    text-align: left;
  }
  .option-description {
    margin-bottom: 2em;
  }
  .care-assistance {
    margin-bottom: 113px;
    padding-bottom: 95px;
  }
  .buddy-service {
    padding: 0 0 90px;
  }
  #care-assistance,
  #buddy-service {
    margin-top: -80px;
    padding-top: 80px;
  }
  .assistance-detail,
  .buddy-detail {
    display: inline-block;
    width: 100%;
  }
  .assistance-number,
  .service-number {
    font-size: 80px;
  }
  .assistance-title {
    font-size: 26px;
  }
  .assistance-description,
  .buddy-description {
    margin: 0 auto 50px;
  }
  .care-coordinator-list {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 0 auto 75px;
    padding: 0;
  }
  .coordinator-item p {
    position: static;
    font-size: 12px;
    text-align: center;
  }
  .assistance-support {
    display: block;
    margin-bottom: 60px;
  }
  .assistance-support figure img {
    max-width: 270px;
    margin: 0 auto;
  }
  .support-detail {
    width: 100%;
    margin-bottom: 45px;
  }
  .support-title {
    margin-bottom: 20px;
    font-size: 14px;
  }
  .support-title strong {
    font-size: 18px;
  }
  .support-title::before,
  .support-title::after {
    width: 2px;
  }
  .support-image {
    display: block;
    margin-bottom: 30px;
  }
  .support-image img {
    width: 198px;
  }
  .support-description {
    font-size: 12px;
  }
  .buddy-title {
    line-height: 1.4;
  }
  .buddy-title span {
    font-size: 26px;
  }
  .buddy-title strong {
    font-size: 26px;
  }
  .buddy-image {
    margin-right: calc(50% - 50vw);
    margin-bottom: 60px;
    margin-left: calc(50% - 50vw);
  }
  .buddy-image01 {
    margin: 0 auto 35px;
  }
  .buddy-image02 {
    margin: 0 auto 70px;
  }
  .service-description {
    margin: 20px auto;
    font-size: 20px;
    line-height: 1.6;
  }
  .service-description span {
    font-size: 30px;
  }
  .service-description span sup {
    font-size: 14px;
  }
  .service-description small {
    font-size: 11px;
  }
  /*会社紹介*/
  .section-project {
    padding-top: 50px;
    padding-bottom: 65px;
  }
  .project-title {
    margin-bottom: 0.5em;
  }
  .project-logo {
    display: block;
    margin-bottom: 25px;
  }
  .project-logo img {
    max-width: 150px;
    margin: 0 auto;
  }
  .project-title-text {
    font-size: 22px;
    font-weight: var(--font-weight-Medium);
    line-height: 1.4;
  }
  .project-title-text strong {
    font-size: 26px;
  }
  .project-title-text span {
    font-size: 22px;
  }
  .project-title-note {
    margin-bottom: 3em;
    font-size: 12px;
  }
  .project-partners {
    display: block;
  }
  .partner-card {
    width: 100%;
    margin-bottom: 50px;
    padding-right: 15px;
    padding-bottom: 30px;
    padding-left: 15px;
    border-radius: 15px;
  }
  .partner-name {
    padding-bottom: 8px;
    font-size: 20px;
  }
  .partner-info {
    width: 100%;
    padding: 1em 0 0;
  }
  .partner-info th,
  .partner-info td {
    display: block;
    width: 100%;
  }
  .partner-info th {
    padding-bottom: 0;
  }
  .partner-info td {
    padding-bottom: 1em;
  }
  .partner-link {
    padding: 0;
  }
  .partner-link li {
  }
  .partner-link a {
    display: flex;
    gap: 1em;
    align-items: center;
    padding: 1em 0;
    border-bottom: 2px solid #f1f3f4;
    text-decoration: none;
  }
  .partner-link a::before {
    content: "";
    width: 10px;
    height: 10px;
    border: 0;
    border-top: solid 2px var(--text-color);
    border-right: solid 2px var(--text-color);
    transform: rotate(45deg);
  }
  /*お問い合わせ*/
  .section-contact {
    margin: 0;
    background: url(/images/contact_bg-sp.png) no-repeat 0 0;
    aspect-ratio: 782 / 482;
  }
  .section-contact .btn img {
    max-width: 350px;
  }
  /*支援になる制度とは*/
  .system-contents {
    padding-top: 15px;
  }
  .system-title {
    margin-bottom: 45px;
    font-size: 24px;
  }
  .system-list {
    display: block;
    margin: 0 auto 60px;
  }
  .system-list-item {
    display: flex;
    align-items: center;
    margin-bottom: 35px;
    padding: 0;
    border: none;
  }
  .system-list-item figure {
    margin: 0;
  }
  .system-description {
    font-size: 12px;
  }
  .system-description strong {
    font-size: 14px;
  }

  /*FOOTER
------------------------------------------------------------------------------*/
  .footer {
    padding: 50px 0 10px;
  }
  .copyright {
    font-size: 11px;
  }
  .fixed-banner {
    padding: 15px 0;
  }
  .fixed-banner .btn-contact {
    max-width: 350px;
  }
  .fixed-banner .btn-contact a {
    padding: 0.2em 1em;
    line-height: 1.4;
  }
}