@charset "UTF-8";
/* -------------------------------------------*/
/* -------------------------------------------*/
/* -------------------------------------------*/
/* -------------------------------------------*/
:root {
  --content_width: 1280px;
  --content-both_space: 40px;
  --header_height:142px;
  --waves_height: 60px;
}
@media screen and (max-width: 1000px) {
  :root {
    --content_width: 860px;
    --content-both_space: 20px;
    --header_height:130px;
    --waves_height: 20px;
  }
}
@media screen and (max-width: 667px) {
  :root {
    --content_width: 100%;
  }
}

/* -------------------------------------------*/
/* -------------------------------------------*/
/* -------------------------------------------*/
/* -------------------------------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
@media all and (-ms-high-contrast: none) {
  html,
  body {
    display: none;
  }
}
*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  -ms-overflow-style: scrollbar;
  overflow: auto;
  font-size: 62.5% !important;
}
@media screen and (max-width: 1000px) {
  html {
    font-size: 57.5% !important;
  }
}
@media screen and (max-width: 667px) {
  html {
    font-size: 62.5% !important;
  }
}

body {
  height: 100%;
  font-size: 1.6rem !important;
  font-weight: 400;
  line-height: 1.5 !important;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  letter-spacing: normal;
  color: #000000;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

section {
  position: relative;
  width: 100%;
}

a,
button {
  color: inherit;
  text-decoration: none;
}

picture {
  display: block;
  line-height: 0;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

svg:not(:root) {
  overflow: hidden;
}

input,
button,
select,
optgroup,
textarea {
  vertical-align: middle;
  position: relative;
  border: none;
  border: none;
  margin: 0;
  background-color: transparent;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-border-radius: 0;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type=radio],
input[type=checkbox] {
  box-sizing: border-box;
  padding: 0;
}

input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  border-offset: -2px;
  -webkit-appearance: none;
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

@media screen and (min-width: calc(667px + 1px)) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
/* -------------------------------------------*/
/*underline*/
/*arrow-fade*/
@keyframes arrow-fade {
  0% {
    transform: translateX(0);
  }
  49% {
    transform: translateX(15px);
  }
  50% {
    opacity: 0;
  }
  51% {
    opacity: 1;
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0px);
  }
}
/* fade */
.js-fade__view {
  display: block;
  opacity: 0;
  transform: translateY(50px);
  transition: 800ms;
}
.js-fade__view--delay1 {
  transition-delay: 100ms;
}
.js-fade__view--delay2 {
  transition-delay: 300ms;
}

.is-fade__view.js-fade__view {
  opacity: 1;
  transform: translateY(0);
}

.js-fade__down {
  opacity: 0;
  transform: translateY(-50px);
  transition: 800ms;
}
.js-fade__down--delay1 {
  transition-delay: 100ms;
}
.js-fade__down--delay2 {
  transition-delay: 300ms;
}

.is-fade__down.js-fade__down {
  opacity: 1;
  transform: translateY(0);
}

/* -------------------------------------------*/
/* layout
-------------------------------------------------------*/
/**
 * input
 *
 */
.wpcf7-spinner {
  display: none;
}

.wpcf7-list-item {
  margin-left: 0;
}

input[type=text],
input[type=date],
input[type=password],
input[type=email],
input[type=time],
input[type=tel],
input[type=number] {
  position: relative;
  width: 100%;
  letter-spacing: 0.1em;
}
input[type=number] {
  -moz-appearance: textfield;
}

/**
 * textarea
 *
 */
textarea {
  position: relative;
  border: none;
  border: none;
  width: 100%;
  height: 300px;
  padding: 10px;
  border-radius: 5px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1000px) {
  textarea {
    height: 170px;
  }
}

input[type=text]:disabled {
  background: transparent;
  cursor: not-allowed;
}
input[type=text]:disabled::placeholder {
  color: #F1F8FE;
  opacity: 1;
}

/**
 * radio
 *
 */
input[type=radio] {
  display: none;
  vertical-align: middle;
}

.mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0;
}

input[type=radio] + .mwform-radio-field-text {
  position: relative;
  vertical-align: middle;
  display: inline-block;
  margin: 0 20px 10px 0;
  padding: 10px 10px 10px 40px;
  transition: 0.5;
  transition-property: color;
  cursor: pointer;
}
@media screen and (max-width: 1000px) {
  input[type=radio] + .mwform-radio-field-text {
    margin: 0;
    padding: 10px 5px 12px 23px;
  }
}

input[type=radio] + .mwform-radio-field-text::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 1px solid #7f7f7f;
  border-radius: 50%;
  box-sizing: border-box;
  transition: 0.5s ease;
  z-index: 2;
}
@media screen and (max-width: 1000px) {
  input[type=radio] + .mwform-radio-field-text::before {
    width: 15px;
    height: 15px;
  }
}

input[type=radio] + .mwform-radio-field-text::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 4px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  width: 12px;
  height: 12px;
  background-color: #37B9BE;
  border-radius: 50%;
  box-sizing: border-box;
  opacity: 0;
  z-index: 5;
}
@media screen and (max-width: 1000px) {
  input[type=radio] + .mwform-radio-field-text::after {
    content: "";
    left: 3px;
    width: 9px;
    height: 9px;
  }
}

input[type=radio]:checked + .mwform-radio-field-text::after {
  opacity: 1;
}

/**
 * checkbox
 *
 */
input[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
  vertical-align: middle;
}

input[type=checkbox] + label {
  position: relative;
  display: inline-block;
  padding: 0 0 0 35px;
  line-height: 1;
  transition: 0.5;
  transition-property: color;
  cursor: pointer;
}
@media screen and (max-width: 1000px) {
  input[type=checkbox] + label {
    padding-left: 30px;
  }
}

input[type=checkbox] + label::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  background: #FFFFFF;
  border: 2px #818181 solid;
  box-sizing: border-box;
  z-index: 2;
}

input[type=checkbox] + label::after {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 3px;
  width: 10px;
  height: 5px;
  border-left: 3px solid #F1F8FE;
  border-bottom: 3px solid #F1F8FE;
  transform: rotate(-45deg);
  transition: 0.5s;
  transition-property: color;
  opacity: 0;
  z-index: 3;
}

input[type=checkbox]:checked + label::after {
  opacity: 1;
}

/**
 * tel(column)
 *
 */
.mwform-tel-field {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.mwform-tel-field > input {
  flex: 1;
  width: 100% !important;
}

/**
 * select
 *
 */
.select-parts {
  position: relative;
  width: 100%;
  border: 1px #F1F8FE solid;
  border-radius: 5px;
  overflow: hidden;
}
.select-parts::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 15px;
  height: 10px;
  margin-top: 2px;
  background: url(../img/contact/select_arrow.png) no-repeat top center/contain;
  pointer-events: none;
  z-index: 5;
}
.select-parts select {
  position: relative;
  width: 100%;
  height: 45px;
  padding: 0 20px 0 15px;
  background: #fbefe3;
  color: #7f7f7f;
  font-size: 2rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  border: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .select-parts select {
    font-size: 15rem;
  }
}

/**
 * file
 *
 */
input[type=file] + label {
  width: 160px;
  margin: 0 10px 0 0;
  padding: 15px 0;
}
input[type=file] + label:after {
  left: 170px;
}

/* -------------------------------------------*/
section {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.p-kaigo__mv {
  padding-top: 7.8rem;
}
@media screen and (max-width: 667px) {
  .p-kaigo__mv {
    padding-top: 4rem;
  }
}

.p-kaigo__mv-inner {
  max-width: 160rem;
  padding-inline: 5rem;
  margin-inline: auto;
}
@media screen and (max-width: 667px) {
  .p-kaigo__mv-inner {
    padding-inline: 2rem;
  }
}

.p-kaigo__mv-content {
  position: relative;
}

.p-kaigo__mv-tag {
  position: relative;
  z-index: 1;
  padding: 1.4rem 2.4rem;
  background-color: #37B9BE;
  width: fit-content;
  font-size: clamp(1.5rem, 1.5vw, 2.5rem);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.4;
}
@media screen and (max-width: 667px) {
  .p-kaigo__mv-tag {
    font-size: 2rem;
    padding: 1rem 1.8rem;
  }
}

.p-kaigo__mv-image {
  max-width: 122.8rem;
  width: 100%;
  height: 100%;
  max-height: 48.3rem;
  margin-top: -3.2rem;
  margin-left: auto;
}
@media screen and (max-width: 667px) {
  .p-kaigo__mv-image {
    margin-top: -2.4rem;
  }
}

.p-kaigo__mv-text {
  position: absolute;
  content: "";
  display: block;
  top: 60%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1;
}
@media screen and (max-width: 667px) {
  .p-kaigo__mv-text {
    position: static;
    transform: none;
    margin-top: 2.8rem;
  }
}

.p-kaigo__mv-title {
  font-size: clamp(4rem, 3vw, 5rem);
  font-weight: 700;
  line-height: 1.46;
}
@media screen and (max-width: 667px) {
  .p-kaigo__mv-title {
    font-size: clamp(3rem, 8vw, 3rem);
    line-height: 1.46875;
  }
}

.p-kaigo__mv-title span {
  position: relative;
}
.p-kaigo__mv-title span::before {
  position: absolute;
  content: "";
  background-color: #F2A19E;
  bottom: -0.3rem;
  left: 0;
  display: block;
  width: 92%;
  height: 2.2rem;
  z-index: -1;
}

.p-kaigo__mv-text p {
  margin-top: 2rem;
  font-size: clamp(1.4rem, 1.4vw, 2.4rem);
  font-weight: 700;
  line-height: 1.8333333333;
}
@media screen and (max-width: 667px) {
  .p-kaigo__mv-text p {
    margin-top: 1.4rem;
    font-size: clamp(1.4rem, 3.6vw, 1.6rem);
  }
}

.p-kaigo__problem-contents {
  margin-top: 9rem;
  display: flex;
  flex-direction: column;
  gap: 9.2rem;
}
@media screen and (max-width: 667px) {
  .p-kaigo__problem-contents {
    margin-top: 4rem;
  }
}

.p-kaigo__problem-wrap {
  margin-top: 2rem;
  padding-left: 3.2rem;
  display: flex;
  justify-content: center;
  gap: 2.4rem;
  max-width: 107rem;
}
@media screen and (max-width: 667px) {
  .p-kaigo__problem-wrap {
    flex-direction: column;
    padding: 0 1.6rem;
    margin-top: 6.6rem;
    gap: 0;
  }
}

.p-kaigo__problem-content:nth-of-type(1) .p-kaigo__problem-image {
  max-width: clamp(34rem, 41.6vw, 50rem);
}
@media screen and (max-width: 667px) {
  .p-kaigo__problem-content:nth-of-type(1) .p-kaigo__problem-image {
    margin-inline: auto;
  }
}

.p-kaigo__problem-content:nth-of-type(1) .p-kaigo__problem-comment {
  margin-top: -4rem;
  position: relative;
  max-width: 45rem;
  width: 100%;
  margin-left: auto;
}
@media screen and (max-width: 1000px) {
  .p-kaigo__problem-content:nth-of-type(1) .p-kaigo__problem-comment {
    max-width: 41%;
  }
}
@media screen and (max-width: 667px) {
  .p-kaigo__problem-content:nth-of-type(1) .p-kaigo__problem-comment {
    margin-inline: auto;
    max-width: 30rem;
    margin-top: 3rem;
    padding-left: 3.6rem;
  }
}

.p-kaigo__problem-content:nth-of-type(1) .p-kaigo__problem-comment img {
  max-width: clamp(13.8rem, 14vw, 16.8rem);
  width: 100%;
  position: absolute;
  bottom: 4rem;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 1000px) {
  .p-kaigo__problem-content:nth-of-type(1) .p-kaigo__problem-comment img {
    bottom: 0;
  }
}
@media screen and (max-width: 667px) {
  .p-kaigo__problem-content:nth-of-type(1) .p-kaigo__problem-comment img {
    margin-top: -3.4rem;
    max-width: 12.1rem;
    position: relative;
    bottom: 0;
  }
}

.p-kaigo__problem-content:nth-of-type(1) .p-kaigo__problem-comment p {
  position: absolute;
  right: 0;
  top: -2rem;
  padding: 3.4rem 4rem 6rem;
  background-color: #FFFFFF;
  font-size: clamp(2.5rem, 3vw, 3.6rem);
  font-weight: 500;
  line-height: 1.5277777778;
  z-index: -1;
  border: 0.1rem solid #707070;
}
@media screen and (max-width: 1000px) {
  .p-kaigo__problem-content:nth-of-type(1) .p-kaigo__problem-comment p {
    padding: 3.2rem 1rem 4.2rem 2rem;
    font-size: clamp(2rem, 2.4vw, 2.4rem);
  }
}
@media screen and (max-width: 667px) {
  .p-kaigo__problem-content:nth-of-type(1) .p-kaigo__problem-comment p {
    position: relative;
    top: 0;
    padding: 3.2rem 1rem 4.2rem 2rem;
    font-size: 2rem;
  }
}

.p-kaigo__problem-content:nth-of-type(1) .p-kaigo__problem-comment p::before {
  position: absolute;
  content: "";
  bottom: -5.4rem;
  left: 50%;
  inline-size: 0;
  block-size: 0;
  border-top: 5.5rem solid #FFFFFF;
  border-right: 5.5rem solid transparent;
  z-index: 2;
}
@media screen and (max-width: 667px) {
  .p-kaigo__problem-content:nth-of-type(1) .p-kaigo__problem-comment p::before {
    left: auto;
    right: 20%;
    bottom: -4.4rem;
    border-top: 4.6rem solid #FFFFFF;
    border-right: 4.6rem solid transparent;
  }
}

.p-kaigo__problem-content:nth-of-type(1) .p-kaigo__problem-comment p::after {
  position: absolute;
  content: "";
  bottom: -5.2rem;
  left: 50%;
  inline-size: 0;
  block-size: 0;
  z-index: 1;
  border-top: 5.5rem solid #707070;
  border-right: 5.5rem solid transparent;
  transform: translateY(0.4rem) translateX(-0.1rem);
}
@media screen and (max-width: 667px) {
  .p-kaigo__problem-content:nth-of-type(1) .p-kaigo__problem-comment p::after {
    bottom: -5.1rem;
    border-top: 4.6rem solid #707070;
    border-right: 4.6rem solid transparent;
  }
}
@media screen and (max-width: 667px) {
  .p-kaigo__problem-content:nth-of-type(1) .p-kaigo__problem-comment p::after {
    left: auto;
    right: 20%;
    bottom: -4.2rem;
    border-top: 4.6rem solid #707070;
    border-right: 4.6rem solid transparent;
  }
}

.p-kaigo__problem-comment p span {
  color: #005EA7;
}

.p-kaigo__problem-content:nth-of-type(1) .p-kaigo__problem-text {
  margin-top: 4.8rem;
  padding-left: 2rem;
}
@media screen and (max-width: 667px) {
  .p-kaigo__problem-content:nth-of-type(1) .p-kaigo__problem-text {
    margin-top: 2.5rem;
    padding-left: 0;
  }
}

.p-kaigo__problem-text p {
  font-size: clamp(1.8rem, 1.6vw, 2rem);
  font-weight: 500;
  line-height: 1.7;
}
@media screen and (max-width: 667px) {
  .p-kaigo__problem-text p {
    font-size: 1.4rem;
  }
}

.p-kaigo__problem-text p span {
  text-decoration-line: underline;
  text-decoration-color: #F2A19E;
  text-decoration-thickness: 0.5rem;
  text-underline-offset: -0.1rem;
  text-decoration-skip-ink: none;
}

.p-kaigo__problem-note {
  font-size: clamp(1.2rem, 1.2vw, 1.5rem);
  line-height: 1.6666666667;
  text-decoration-line: underline;
  text-underline-offset: 0.2rem;
}
@media screen and (max-width: 667px) {
  .p-kaigo__problem-note {
    font-size: 1rem;
  }
}

@media screen and (max-width: 667px) {
  .p-kaigo__problem-content:nth-of-type(2) .p-kaigo__problem-wrap {
    margin-top: 4.6rem;
  }
}

.p-kaigo__problem-content:nth-of-type(2) .p-kaigo__problem-image {
  max-width: 50%;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 667px) {
  .p-kaigo__problem-content:nth-of-type(2) .p-kaigo__problem-image {
    max-width: 100%;
    margin-inline: auto;
  }
}

.p-kaigo__problem-content:nth-of-type(2) .p-kaigo__problem-image img {
  max-width: clamp(34rem, 41.6vw, 32.8rem);
  width: 100%;
}
@media screen and (max-width: 667px) {
  .p-kaigo__problem-content:nth-of-type(2) .p-kaigo__problem-image img {
    max-width: 24rem;
  }
}

.p-kaigo__problem-content:nth-of-type(2) .p-kaigo__problem-comment {
  position: relative;
  max-width: 45rem;
  width: 100%;
  margin-left: auto;
}
@media screen and (max-width: 1000px) {
  .p-kaigo__problem-content:nth-of-type(2) .p-kaigo__problem-comment {
    max-width: 41%;
  }
}
@media screen and (max-width: 667px) {
  .p-kaigo__problem-content:nth-of-type(2) .p-kaigo__problem-comment {
    margin-inline: auto;
    max-width: 36rem;
    margin-top: 3rem;
    padding-left: 3.6rem;
  }
}

.p-kaigo__problem-content:nth-of-type(2) .p-kaigo__problem-comment img {
  max-width: clamp(13.8rem, 14vw, 16.8rem);
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 1000px) {
  .p-kaigo__problem-content:nth-of-type(2) .p-kaigo__problem-comment img {
    bottom: 0;
  }
}
@media screen and (max-width: 667px) {
  .p-kaigo__problem-content:nth-of-type(2) .p-kaigo__problem-comment img {
    margin-top: -3.4rem;
    max-width: 12.1rem;
    position: relative;
    bottom: 0;
  }
}

.p-kaigo__problem-content:nth-of-type(2) .p-kaigo__problem-comment p {
  position: absolute;
  right: 0;
  top: 0;
  padding: 3.4rem 2.2rem 6rem;
  background-color: #FFFFFF;
  font-size: clamp(2.5rem, 3vw, 3.4rem);
  font-weight: 500;
  line-height: 1.5277777778;
  z-index: -1;
  border: 0.1rem solid #707070;
}
@media screen and (max-width: 1000px) {
  .p-kaigo__problem-content:nth-of-type(2) .p-kaigo__problem-comment p {
    padding: 3.2rem 1rem 4.2rem 2rem;
    font-size: clamp(2rem, 2.4vw, 2.4rem);
  }
}
@media screen and (max-width: 667px) {
  .p-kaigo__problem-content:nth-of-type(2) .p-kaigo__problem-comment p {
    position: relative;
    top: 0;
    padding: 3.2rem 1rem 4.2rem 2rem;
    font-size: 2rem;
  }
}

.p-kaigo__problem-content:nth-of-type(2) .p-kaigo__problem-comment p::before {
  position: absolute;
  content: "";
  bottom: -5.4rem;
  left: 50%;
  inline-size: 0;
  block-size: 0;
  border-top: 5.5rem solid #FFFFFF;
  border-right: 5.5rem solid transparent;
  z-index: 2;
}
@media screen and (max-width: 667px) {
  .p-kaigo__problem-content:nth-of-type(2) .p-kaigo__problem-comment p::before {
    left: auto;
    right: 20%;
    bottom: -4.4rem;
    border-top: 4.6rem solid #FFFFFF;
    border-right: 4.6rem solid transparent;
  }
}

.p-kaigo__problem-content:nth-of-type(2) .p-kaigo__problem-comment p::after {
  position: absolute;
  content: "";
  bottom: -5.2rem;
  left: 50%;
  inline-size: 0;
  block-size: 0;
  z-index: 1;
  border-top: 5.5rem solid #707070;
  border-right: 5.5rem solid transparent;
  transform: translateY(0.4rem) translateX(-0.1rem);
}
@media screen and (max-width: 667px) {
  .p-kaigo__problem-content:nth-of-type(2) .p-kaigo__problem-comment p::after {
    bottom: -5.1rem;
    border-top: 4.6rem solid #707070;
    border-right: 4.6rem solid transparent;
  }
}
@media screen and (max-width: 667px) {
  .p-kaigo__problem-content:nth-of-type(2) .p-kaigo__problem-comment p::after {
    left: auto;
    right: 20%;
    bottom: -4.2rem;
    border-top: 4.6rem solid #707070;
    border-right: 4.6rem solid transparent;
  }
}

.p-kaigo__problem-content:nth-of-type(2) .p-kaigo__problem-text {
  margin-top: 4.8rem;
  padding-left: 2rem;
}
@media screen and (max-width: 667px) {
  .p-kaigo__problem-content:nth-of-type(2) .p-kaigo__problem-text {
    margin-top: 2.5rem;
    padding-left: 0;
  }
}

.p-kaigo__lead {
  margin-top: 5.2rem;
}
@media screen and (max-width: 667px) {
  .p-kaigo__lead {
    margin-top: 3rem;
  }
}

.p-kaigo__lead .c-sectionLead {
  max-width: 82.5rem;
  width: fit-content;
}
@media screen and (max-width: 667px) {
  .p-kaigo__lead .c-sectionLead {
    max-width: fit-content;
    margin-inline: auto;
    padding-left: 0;
    width: 100%;
  }
}

.p-kaigo__lead .c-sectionLead__lead-text {
  font-size: 3.6rem;
  line-height: 1.3055555556;
  text-align: left;
}
@media screen and (max-width: 1000px) {
  .p-kaigo__lead .c-sectionLead__lead-text {
    font-size: clamp(2.4rem, 3.6vw, 3.6rem);
  }
}
@media screen and (max-width: 667px) {
  .p-kaigo__lead .c-sectionLead__lead-text {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 480px) {
  .p-kaigo__lead .c-sectionLead__lead-text {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 1000px) {
  .p-kaigo__lead .c-sectionLead__heading {
    font-size: clamp(5rem, 6.2vw, 6.2rem);
  }
}
@media screen and (max-width: 667px) {
  .p-kaigo__lead .c-sectionLead__heading {
    display: inline-block;
    font-size: 3.5rem;
    text-align: left;
  }
}
@media screen and (max-width: 480px) {
  .p-kaigo__lead .c-sectionLead__heading {
    display: inline-block;
    font-size: 2.3rem;
    text-align: left;
  }
}

.p-kaigo__lead .c-sectionLead__heading-box {
  flex-direction: row;
}
@media screen and (max-width: 667px) {
  .p-kaigo__lead .c-sectionLead__heading-box {
    margin-top: 0.4rem;
    align-items: flex-start;
  }
}

.p-kaigo__lead .c-sectionLead__exclamation {
  right: -18%;
  bottom: -43%;
}
@media screen and (max-width: 1000px) {
  .p-kaigo__lead .c-sectionLead__exclamation {
    right: -12%;
    bottom: -1.6rem;
    font-size: 9rem;
  }
}
@media screen and (max-width: 667px) {
  .p-kaigo__lead .c-sectionLead__exclamation {
    right: -5%;
    bottom: -0.6rem;
    font-size: 6.7rem;
  }
}
@media screen and (max-width: 667px) {
  .p-kaigo__lead .c-sectionLead__exclamation {
    right: -5%;
    bottom: -0.6rem;
    font-size: 5.7rem;
  }
}

@media screen and (max-width: 1000px) {
  .p-kaigo__lead .c-sectionLead__heading-sub-text {
    font-size: clamp(3rem, 4.2vw, 4.2rem);
  }
}
@media screen and (max-width: 667px) {
  .p-kaigo__lead .c-sectionLead__heading-sub-text {
    display: inline-block;
    padding-right: 2rem;
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 480px) {
  .p-kaigo__lead .c-sectionLead__heading-sub-text {
    margin-left: 0.4rem;
    font-size: 1.4rem;
    line-height: 2.3;
  }
}

.p-kaigo__select {
  padding: 10rem 0 9rem;
}
@media screen and (max-width: 667px) {
  .p-kaigo__select {
    padding: 7.6rem 0 7.4rem;
  }
}

.p-kaigo__select-text {
  margin-top: 1.8rem;
}
@media screen and (max-width: 667px) {
  .p-kaigo__select-text {
    margin-top: 1.4rem;
  }
}

.p-kaigo__select-text p {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.8888888889;
}
@media screen and (max-width: 667px) {
  .p-kaigo__select-text p {
    text-align: left;
    font-size: 1.4rem;
  }
}

.p-kaigo__select-cards {
  max-width: 107.8rem;
  margin-inline: auto;
  margin-top: 4.7rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.3rem;
}
@media screen and (max-width: 667px) {
  .p-kaigo__select-cards {
    margin-top: 1.8rem;
    grid-template-columns: 1fr;
  }
}

.p-kaigo__select-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3.8rem 3.3rem 1.6rem;
  background-color: #FFFFFF;
}

.p-kaigo__select-img {
  height: 6.3rem;
}

.p-kaigo__select-title {
  margin-top: 3rem;
}

.p-kaigo__select-title p {
  text-decoration-line: underline;
  text-decoration-color: #F2A19E;
  text-decoration-thickness: 0.5rem;
  text-underline-offset: 0.1rem;
  text-decoration-skip-ink: none;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.7;
}
@media screen and (max-width: 667px) {
  .p-kaigo__select-title p {
    font-size: 1.9rem;
  }
}

.p-kaigo__select-description {
  margin-top: 2.4rem;
}

.p-kaigo__select-description p {
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.875;
}
@media screen and (max-width: 667px) {
  .p-kaigo__select-description p {
    font-size: 1.4rem;
  }
}

.p-kaigo__select-btn {
  margin-top: -2rem;
  max-width: 160rem;
  margin-inline: auto;
  text-align: right;
}
@media screen and (max-width: 667px) {
  .p-kaigo__select-btn {
    margin-top: 1.8rem;
    text-align: center;
  }
}

.p-kaigo__select-btn .c-btn__square {
  padding-inline: 3rem;
}
@media screen and (max-width: 667px) {
  .p-kaigo__select-btn .c-btn__square {
    height: 6.6rem;
    border-radius: 3rem;
    font-size: 1.4rem;
    justify-content: flex-start;
  }
}

.p-kaigo__point {
  padding: 9.3rem 0 19.3rem;
  background-image: url("../../img/kaigo/point-bg-pc.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 667px) {
  .p-kaigo__point {
    padding: 4.4rem 0 13.8rem;
    background-image: url("../../img/kaigo/point-bg-sp.webp");
  }
}

.p-kaigo__point .p-kaigo-comm__h2 {
  font-size: 5.7rem;
  line-height: 1.3157894737;
  color: #FFFFFF;
}
@media screen and (max-width: 667px) {
  .p-kaigo__point .p-kaigo-comm__h2 {
    font-size: 2.4rem;
    line-height: 1.8333333333;
  }
}

.p-kaigo__point .p-kaigo-comm__h2::before {
  content: none;
}

.p-kaigo__point-text {
  margin-top: 2.6rem;
}

.p-kaigo__point-text p {
  text-align: center;
  font-size: 2rem;
  color: #FFFFFF;
  line-height: 1.7;
}
@media screen and (max-width: 667px) {
  .p-kaigo__point-text p {
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}

.p-kaigo__point-image {
  margin-top: 5.8rem;
  width: 100%;
}
@media screen and (max-width: 667px) {
  .p-kaigo__point-image {
    padding-inline: 3.2rem;
  }
}

.p-kaigo__point-contents {
  margin-top: 8rem;
  display: flex;
  flex-direction: column;
  gap: 7.7rem;
}
@media screen and (max-width: 667px) {
  .p-kaigo__point-contents {
    margin-top: 6rem;
    gap: 6rem;
  }
}

.p-kaigo__point-content {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
@media screen and (max-width: 1000px) {
  .p-kaigo__point-content {
    flex-direction: column;
  }
}

.p-kaigo__point-content.rev {
  flex-direction: row-reverse;
}
@media screen and (max-width: 1000px) {
  .p-kaigo__point-content.rev {
    flex-direction: column;
  }
}

.p-kaigo__point-media-label {
  display: inline-block;
  padding: 0.8rem 2.4rem;
  border-radius: 2rem;
  background-color: #D73F39;
  font-size: 1.3rem;
  color: #FFFFFF;
  font-weight: 700;
  line-height: 1.3846153846;
}

.p-kaigo__point-media-title {
  margin-top: 1rem;
}

.p-kaigo__point-media-title p {
  min-height: 2em;
  font-size: 3rem;
  color: #FFFFFF;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 667px) {
  .p-kaigo__point-media-title p {
    font-size: 2rem;
    line-height: 2.1;
  }
}

.p-kaigo__point-media-text {
  margin-top: 1rem;
}

.p-kaigo__point-media-text p {
  padding-left: 1.8rem;
  position: relative;
  font-size: 1.75rem;
  color: #FFFFFF;
  line-height: 1.8888888889;
}
@media screen and (max-width: 667px) {
  .p-kaigo__point-media-text p {
    font-size: 1.4rem;
    line-height: 2.2857142857;
  }
}

.p-kaigo__point-media-text p span {
  text-decoration-line: underline;
  text-decoration-color: #F2A19E;
  text-decoration-thickness: 0.5rem;
  text-underline-offset: -0.1rem;
  text-decoration-skip-ink: none;
}

.p-kaigo__point-media-text p::before {
  position: absolute;
  content: "";
  display: block;
  width: 0.9rem;
  height: 0.3rem;
  background-color: #FFFFFF;
  top: 1.6rem;
  left: 0;
}

.p-kaigo__point-media-image {
  display: flex;
  gap: 1.8rem;
  max-width: 40%;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .p-kaigo__point-media-image {
    max-width: 100%;
  }
}

.p-kaigo__cta {
  z-index: 1;
}

.p-kaigo__cta-wrapper {
  position: relative;
}

.p-kaigo__cta .c-cta02 {
  position: absolute;
  width: 100%;
  left: 0;
  top: -11rem;
  z-index: 1;
}
@media screen and (max-width: 667px) {
  .p-kaigo__cta .c-cta02 {
    top: -9rem;
  }
}

@media screen and (max-width: 1000px) {
  .p-kaigo__cta .c-cta02__item-title {
    font-size: clamp(3rem, 2.3vw, 3.8rem);
  }
}
@media screen and (max-width: 667px) {
  .p-kaigo__cta .c-cta02__item-title {
    font-size: 2rem;
  }
}

@media screen and (max-width: 1000px) {
  .p-kaigo__cta .c-cta02__item-description {
    font-size: clamp(1.3rem, 1.2vw, 2rem);
  }
}
@media screen and (max-width: 667px) {
  .p-kaigo__cta .c-cta02__item-description {
    font-size: 1.4rem;
  }
}

.p-kaigo__case {
  padding: 21.2rem 0 5rem;
  background-color: #FFFFFF;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 667px) {
  .p-kaigo__case {
    padding-top: 26rem;
  }
}

.p-kaigo__case .p-kaigo-comm__h2::before {
  content: none;
}

.p-kaigo__case-text {
  margin-top: 3.3rem;
}

.p-kaigo__case-text p {
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.875;
}
@media screen and (max-width: 667px) {
  .p-kaigo__case-text p {
    font-size: 1.35rem;
  }
}

.p-kaigo__case-cards {
  margin-top: 5.7rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2.4rem, 5vw, 8rem);
}
@media screen and (max-width: 667px) {
  .p-kaigo__case-cards {
    grid-template-columns: 1fr;
    gap: 6rem;
  }
}

.p-kaigo__case-cards > *:only-child {
  grid-column: 2;
  justify-self: center;
}
@media screen and (max-width: 667px) {
  .p-kaigo__case-cards > *:only-child {
    grid-column: auto/auto;
  }
}

.p-kaigo__case-card {
  display: flex;
  flex-direction: column;
}

.p-kaigo__case-card-image img {
  aspect-ratio: 345/261;
  object-fit: cover;
}

.p-kaigo__case-card-label {
  margin-top: 0.8rem;
  font-size: 1.8rem;
  color: #37B9BE;
  font-weight: 500;
  line-height: 1.8888888889;
}

.p-kaigo__case-card-meta {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.3076923077;
  letter-spacing: 0.05em;
}

.p-kaigo__case-card-text {
  margin-top: 0.6rem;
  flex-grow: 1;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.7;
}
@media screen and (max-width: 667px) {
  .p-kaigo__case-card-text {
    margin-top: 1.7rem;
  }
}

.p-kaigo__case-card-link {
  width: fit-content;
  font-size: 1.5rem;
  margin-left: auto;
}

.p-kaigo__case-btn {
  margin-top: 8.6rem;
  text-align: center;
}
@media screen and (max-width: 667px) {
  .p-kaigo__case-btn {
    margin-top: 3.4rem;
  }
}

@media screen and (max-width: 667px) {
  .p-kaigo__case-btn .c-btn__square {
    height: 6.6rem;
    border-radius: 3.3rem;
    font-size: 1.4rem;
    padding-inline: 3.3rem;
    justify-content: flex-start;
  }
}

.p-kaigo__case-card-image {
  overflow: hidden;
}

.p-kaigo__case-card .p-kaigo__case-card-image img {
  transition: transform 0.5s;
}

.p-kaigo__case-card:hover .p-kaigo__case-card-image img {
  transform: scale(1.3);
}

.p-kaigo__case-card:hover .p-kaigo__case-card-link {
  text-decoration: underline;
}

.p-kaigo__faq {
  padding-top: 5.4rem;
}
.p-kaigo__faq .c-faqAccordion__question {
  padding: 33px 76px;
}
@media screen and (max-width: 480px) {
  .p-kaigo__faq .c-faqAccordion__question {
    padding: 17px 44px;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.7142857143;
  }
}
.p-kaigo__faq .c-faqAccordion__answer {
  padding: 10px 76px 33px;
}
@media screen and (max-width: 480px) {
  .p-kaigo__faq .c-faqAccordion__answer {
    padding: 10px 44px 17px;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.7142857143;
  }
}
@media screen and (max-width: 480px) {
  .p-kaigo__faq .c-faqAccordion__question::before {
    left: 13px;
  }
}
@media screen and (max-width: 480px) {
  .p-kaigo__faq .c-faqAccordion__question::after {
    right: 13px;
  }
}

.p-kaigo__faq-text {
  margin-top: 1.2rem;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.875;
}
@media screen and (max-width: 667px) {
  .p-kaigo__faq-text {
    margin-top: 2.4rem;
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}

.p-kaigo__faq-wrapper {
  margin-top: 4rem;
}

.c-faqAccordion.p-kaigo__faq--bg-white {
  background-color: #FFFFFF;
}

.p-kaigo__faq-btn {
  text-align: center;
  margin-top: 5.2rem;
}
@media screen and (max-width: 480px) {
  .p-kaigo__faq-btn {
    margin-top: 5rem;
  }
}

.p-kaigo-comm__h2 {
  text-align: center;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 667px) {
  .p-kaigo-comm__h2 {
    font-size: 2.4rem;
    line-height: 1.54;
  }
}
.p-kaigo-comm__h2::before {
  margin-bottom: 12px;
  position: relative;
  content: "";
  display: block;
  width: 20.5rem;
  height: 0.6rem;
  background: linear-gradient(to right, #37B9BE, #268AB7);
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 667px) {
  .p-kaigo-comm__h2::before {
    width: 9rem;
    height: 0.3rem;
    margin-bottom: 14px;
  }
}

.p-kaigo-comm__h2 span {
  margin-top: 12px;
  display: block;
  font-size: 2.4rem;
  line-height: 1.83;
}
@media screen and (max-width: 667px) {
  .p-kaigo-comm__h2 span {
    margin-top: 0;
    font-size: 1.7rem;
    line-height: 1.82;
  }
}
.p-kaigo-comm__h2 span.text-large {
  display: inline-block;
  font-size: 8.7rem;
  color: #37B9BE;
  font-weight: 700;
  line-height: 0.72;
}
@media screen and (max-width: 667px) {
  .p-kaigo-comm__h2 span.text-large {
    font-size: inherit;
  }
}

.p-kaigo-comm__content-title {
  position: relative;
  padding-left: 32px;
  font-size: 20px;
  line-height: 1.7;
  font-weight: 700;
}
@media screen and (max-width: 667px) {
  .p-kaigo-comm__content-title {
    font-size: 18px;
    line-height: 1.88;
  }
}
.p-kaigo-comm__content-title::before {
  position: absolute;
  content: "";
  display: block;
  width: 18px;
  height: 39px;
  background: linear-gradient(to right, #37B9BE, #268AB7);
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 667px) {
  .p-kaigo-comm__content-title::before {
    height: 61px;
  }
}

@media screen and (min-width: calc(667px + 1px)) {
  .p-kaigo__md-none {
    display: none;
  }
}

.c-sectionLead {
  max-width: 95rem;
  margin-inline: auto;
}
@media screen and (max-width: 480px) {
  .c-sectionLead {
    padding-left: 1rem;
  }
}

.c-sectionLead__lead-text {
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.880952381;
}
@media screen and (max-width: 1000px) {
  .c-sectionLead__lead-text {
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .c-sectionLead__lead-text {
    text-align: left;
    font-size: 1.9rem;
    line-height: 1.9473684211;
  }
}

.c-sectionLead__lead-text.c-sectionLead__lead-text--center {
  text-align: center;
}

.c-sectionLead__heading-sub-text {
  position: relative;
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.880952381;
}
@media screen and (max-width: 1000px) {
  .c-sectionLead__heading-sub-text {
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .c-sectionLead__heading-sub-text {
    display: block;
    margin-left: auto;
    padding-right: 5rem;
    font-size: 2.4rem;
    line-height: 1.875;
  }
}

.c-sectionLead__heading-box {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
@media screen and (max-width: 1000px) {
  .c-sectionLead__heading-box {
    align-items: center;
    flex-direction: column;
  }
}
@media screen and (max-width: 480px) {
  .c-sectionLead__heading-box {
    align-items: flex-start;
  }
}

.c-sectionLead__heading {
  font-size: 6.2rem;
  font-weight: 700;
  line-height: 1.2741935484;
  color: #005EA7;
}
@media screen and (max-width: 480px) {
  .c-sectionLead__heading {
    font-size: 2.9rem;
    line-height: 1.275862069;
  }
}

.c-sectionLead__heading span {
  color: #000000;
}

.c-sectionLead__exclamation {
  position: absolute;
  bottom: -37%;
  right: -26.5%;
  font-size: 14.1rem;
  font-weight: 700;
  line-height: 1.2695035461;
  color: #37B9BE;
  transform: rotate(17deg);
}
@media screen and (max-width: 1000px) {
  .c-sectionLead__exclamation {
    font-size: 10rem;
  }
}
@media screen and (max-width: 480px) {
  .c-sectionLead__exclamation {
    font-size: 8.5rem;
    bottom: -17%;
    right: 7%;
    line-height: 1.2705882353;
  }
}

.c-cta02 {
  padding: 4.4rem 4.7rem;
  background-image: url("../../img/common/cta/cta02_bg-pc.webp");
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 667px) {
  .c-cta02 {
    background-image: url("../../img/common/cta/cta02_bg-sp.webp");
    padding: 2.4rem 2rem 4rem;
  }
}
.c-cta02__inner {
  width: 100%;
}
.c-cta02__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.4rem;
}
@media screen and (max-width: 667px) {
  .c-cta02__content {
    flex-direction: column;
  }
}
.c-cta02__item-title {
  font-size: 3.8rem;
  color: #FFFFFF;
  font-weight: 700;
  line-height: 1.57;
}
@media screen and (max-width: 667px) {
  .c-cta02__item-title {
    font-size: 2rem;
    line-height: 1.7;
    text-align: center;
  }
}
.c-cta02__item-description {
  margin-top: 2rem;
  font-size: 2rem;
  color: #FFFFFF;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 667px) {
  .c-cta02__item-description {
    font-size: 1.4rem;
    line-height: 1.71;
  }
}
.c-cta02__item-cta {
  max-width: 30.4rem;
  width: 100%;
}