@charset "UTF-8";
/*------------------------------------*\
    breakpoint vars
\*------------------------------------*/
/*------------------------------------*\
    breakpoint mixin
\*------------------------------------*/
/** Break desktop first**/
:root {
  --white: #ffffff;
  --black: #000000;
  --smoke: #f4f5ef;
  --gray: #e5e5e5;
  --primary: #18BBB6;
  --second: #2E74A7;
  --text-body: #333;
  --radius: 5px;
}

.container {
  max-width: 1400px;
  padding-inline: 20px;
  margin-inline: auto;
}

.container-sm {
  max-width: 1040px;
  padding-inline: 20px;
  margin-inline: auto;
}

.pageinner h2.white {
  color: var(--white);
}
.pageinner h2.white::before {
  background: #A5E2E0;
}

.section {
  padding-block: 60px;
}
@media only screen and (min-width: 768px) {
  .section {
    padding-block: 80px;
  }
}
@media only screen and (min-width: 992px) {
  .section {
    padding-block: 120px;
  }
}
.section h2 {
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) {
  .section h2 {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 992px) {
  .section h2 {
    margin-bottom: 70px;
  }
}

.section-primary {
  background: var(--primary);
}

.section-gray {
  background: #E5EFEE;
}

.section-heading h2 {
  margin-bottom: 30px;
}
@media only screen and (min-width: 992px) {
  .section-heading h2 {
    margin-bottom: 50px;
  }
}

.section-heading-min h2 {
  margin-bottom: 30px;
}
@media only screen and (min-width: 992px) {
  .section-heading-min h2 {
    margin-bottom: 40px;
  }
}

.section-content {
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: 700;
  line-height: 2;
}
@media only screen and (min-width: 992px) {
  .section-content {
    margin-bottom: 60px;
  }
}
.section-content p:last-of-type {
  margin: 0;
}

.welfare .pageinner,
.visit .pageinner,
.hospital-tour .pageinner {
  padding-bottom: 0;
}

.items-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media only screen and (min-width: 768px) {
  .items-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
    padding-bottom: 70px;
  }
}
@media only screen and (min-width: 1200px) {
  .items-grid {
    gap: 100px 40px;
  }
}
.items-grid__item {
  font-size: 14px;
  line-height: 1.428;
  font-weight: 500;
}
.items-grid__item--image {
  margin-bottom: 25px;
  position: relative;
}
.items-grid__item--image::before {
  content: "";
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  position: absolute;
}
.items-grid__item--image::before {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.54);
  z-index: 2;
}
.items-grid__item--image:hover {
  opacity: 1;
  cursor: pointer;
}
.items-grid__item--image:hover::before { /* ここから ::after を削除 */
  opacity: 1;
  visibility: visible;
}
.items-grid__item--image strong {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  background: var(--primary);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  line-height: 1.2;
  min-width: 78px;
  padding: 4px 10px;
  text-align: center;
}
.items-grid__item--image label {
  position: absolute;
  top: 0;
  left: 22px;
  z-index: 1;
  clip-path: polygon(100% 0, 100% 100%, 50% calc(100% - 10px), 0 100%, 0 0);
  background: var(--primary);
  width: 51px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  padding-bottom: 5px;
  font-family: "poppins", sans-serif;
}
.items-grid__item--image img {
  margin: 0;
  width: 100%;
  display: block;
}
.items-grid__item--image a {
  position: relative;
  display: block;
}
.items-grid__item .inner {
  position: relative;
  transition: all 0.3s;
}
.items-grid__item .inner:hover {
  cursor: pointer;
  opacity: 0.5;
}
.items-grid__item h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.458;
  margin: 0 0 20px;
}
@media only screen and (min-width: 992px) {
  .items-grid__item h3 {
    font-size: 24px;
  }
}
.items-grid__item h4 {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  margin: 0 0 20px;
}
@media only screen and (min-width: 992px) {
  .items-grid__item h4 {
    font-size: 26px;
  }
}
.items-grid__item h4 strong {
  font-weight: 500;
  color: var(--primary);
  border: 1px solid var(--primary);
  font-size: 18px;
  padding: 4px 12px;
  margin-right: 14px;
  display: inline-block;
}
.items-grid__item h4 small {
  font-size: 18px;
  margin-left: 4px;
}
.items-grid__item p {
  margin: 0;
}
.items-grid__item:nth-child(3n-1) .items-grid__item--image label {
  background: #2E74A7;
}
.items-grid__item:nth-child(3n) .items-grid__item--image label {
  background: #EDA400;
}
.items-grid__item .btnMore {
  text-align: center;
}
.items-grid__item .btnMore a {
  width: 100%;
  max-width: 440px;
  min-width: auto;
  padding-right: 50px;
  text-align: center;
  display: inline-block;
}
@media only screen and (min-width: 768px) {
  .items-grid__item .btnMore a {
    padding-inline: 70px;
    font-size: 16px;
    line-height: 1.5;
  }
}
.items-grid--padding {
  padding-bottom: 30px;
}

.c-content {
  font-size: 16px;
  line-height: 2;
  font-weight: 700;
  letter-spacing: 1.5px;
}
@media only screen and (min-width: 768px) {
  .c-content {
    display: flex;
    gap: 30px;
    font-size: 18px;
  }
}
@media only screen and (min-width: 768px) {
  .c-content .c-heading {
    width: calc(47% - 30px);
  }
}
@media only screen and (min-width: 768px) {
  .c-content .c-txt {
    width: 53%;
  }
}
.c-content .c-txt p:last-of-type {
  margin: 0;
}
.c-content--white {
  color: var(--white);
}

.grid-box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 60px;
}
@media only screen and (min-width: 768px) {
  .grid-box {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (min-width: 992px) {
  .grid-box {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 80px;
  }
}
@media only screen and (min-width: 1200px) {
  .grid-box {
    gap: 40px;
  }
}
.grid-box__item {
  background: var(--white);
  padding: 40px 20px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
}
.grid-box__item h3 {
  font-size: 18px;
  font-weight: 700;
  border-radius: 12px;
  background: #2E74A7;
  color: var(--white);
  margin: 0 0 40px;
  line-height: 1.36;
  padding: 12px 25px;
}
@media only screen and (min-width: 1200px) {
  .grid-box__item h3 {
    font-size: 22px;
  }
}
.grid-box__item img {
  margin: 0 0 25px;
  max-width: 120px;
  max-height: 100px;
}
@media only screen and (min-width: 992px) {
  .grid-box__item img {
    max-width: 152px;
    max-height: 130px;
  }
}
.grid-box__item p {
  margin: 0;
}

.calendar-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 50px;
}
@media only screen and (min-width: 768px) {
  .calendar-list {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 60px;
  }
}
@media only screen and (min-width: 1200px) {
  .calendar-list {
    gap: 60px;
    margin-top: 80px;
  }
}
.calendar-list__item h3 {
  font-size: 34px;
  font-weight: 700;
  margin: 0 0 10px;
  line-height: 1.4;
}
.calendar-list__item h3 small {
  font-size: 24px;
}
.calendar-list__item img {
  width: 100%;
}
.calendar-list__item--content {
  margin-top: 25px;
  background: #E1EBEA;
  max-width: 190px;
  margin-inline: auto;
  border-radius: 400px;
  font-weight: 700;
  text-align: center;
  line-height: 1.44;
  padding: 10px;
  position: relative;
  font-size: 18px;
}
@media only screen and (min-width: 992px) {
  .calendar-list__item--content {
    margin-top: 35px;
    padding: 22px;
    max-width: 220px;
    padding: 14px;
  }
}
@media only screen and (min-width: 1200px) {
  .calendar-list__item--content {
    margin-top: 56px;
    font-size: 26px;
    max-width: 240px;
    padding: 18px;
  }
}
.calendar-list__item--content strong {
  font-size: 30px;
}
@media only screen and (min-width: 1200px) {
  .calendar-list__item--content strong {
    font-size: 36px;
  }
}
.calendar-list__item--content::after {
  content: "";
  border-bottom: 21px solid #E1EBEA;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translateX(-50%);
}

.box-list {
  background: var(--white);
  padding: 30px;
  font-size: 18px;
  font-weight: 700;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media only screen and (min-width: 768px) {
  .box-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (min-width: 992px) {
  .box-list {
    padding: 40px;
  }
}
@media only screen and (min-width: 1200px) {
  .box-list {
    padding: 65px;
    font-size: 20px;
  }
}
.box-list ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.box-list ul li + li {
  margin-top: 10px;
}

.imgFull {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.imgFull img {
  width: 100%;
  height: auto;
}
.imgFull div {
  width: 20%;
}

.slider-content {
  font-size: 14px;
  font-weight: 700;
  line-height: 2;
  padding-block: 30px 20px;
}
@media only screen and (min-width: 768px) {
  .slider-content {
    font-size: 18px;
    padding-block: 40px 20px;
  }
}
@media only screen and (min-width: 1200px) {
  .slider-content {
    padding-block: 60px 50px;
  }
}

.time-line__heading {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
  align-items: flex-start;
}
@media only screen and (min-width: 768px) {
  .time-line__heading {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 70px;
  }
}
.time-line__heading h2 {
  margin: 0;
}
.time-line__heading h6 {
  margin: 0;
  background: url("../img/clock.svg") no-repeat 15px 50%/26px #DCF4F3;
  padding: 14px 20px 14px 55px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.444;
  letter-spacing: 1.5px;
}
.time-line__item {
  position: relative;
  padding-left: 70px;
}
@media only screen and (min-width: 768px) {
  .time-line__item {
    display: flex;
    padding-left: 0;
    align-items: center;
  }
}
.time-line__item::after {
  content: "";
  top: -35px;
  border-left: 2px solid var(--primary);
  position: absolute;
  height: calc(100% + 70px);
  left: 24px;
}
@media only screen and (min-width: 768px) {
  .time-line__item::after {
    left: calc(29% + 46px);
  }
}
@media only screen and (min-width: 992px) {
  .time-line__item::after {
    left: calc(29% + 88px);
  }
}
.time-line__item + .time-line__item {
  margin-top: 70px;
}
.time-line__item + .time-line__item::before {
  content: "";
  border-top: 15px solid #A5E2E0;
  border-left: 21px solid transparent;
  border-right: 21px solid transparent;
  position: absolute;
  left: calc(50% + 12px);
  top: -43px;
}
@media only screen and (min-width: 768px) {
  .time-line__item + .time-line__item::before {
    left: calc(14.5% - 21px);
  }
}
.time-line__item h4 {
  margin: 0;
  border-radius: 100%;
  background: var(--primary);
  top: 50%;
  transform: translateY(-50%);
  font-weight: 600;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  font-family: "poppins", sans-serif;
  letter-spacing: 1.5px;
  text-align: center;
  z-index: 4;
  width: 50px;
  height: 50px;
  font-size: 18px;
  left: 0;
}
@media only screen and (min-width: 768px) {
  .time-line__item h4 {
    left: calc(29% + 22px);
  }
}
@media only screen and (min-width: 992px) {
  .time-line__item h4 {
    width: 70px;
    height: 70px;
    left: calc(29% + 54px);
    font-size: 24px;
  }
}
.time-line__item img {
  width: 100%;
  margin: 0 0 20px;
}
@media only screen and (min-width: 768px) {
  .time-line__item img {
    width: 29%;
    margin: 0;
  }
}
.time-line__item--body {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}
@media only screen and (min-width: 768px) {
  .time-line__item--body {
    width: 71%;
    padding-left: 90px;
  }
}
@media only screen and (min-width: 992px) {
  .time-line__item--body {
    padding-left: 170px;
  }
}
@media only screen and (min-width: 1200px) {
  .time-line__item--body {
    font-size: 18px;
  }
}
.time-line__item--body h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.42;
  margin: 0 0 14px;
}
@media only screen and (min-width: 1200px) {
  .time-line__item--body h3 {
    font-size: 26px;
  }
}
.time-line__item--body p:last-of-type {
  margin: 0;
}
.time-line__item:first-child::after {
  height: calc(50% + 35px);
  top: 50%;
}
.time-line__item:last-child::after {
  height: calc(50% + 35px);
  top: auto;
  bottom: 50%;
}

.voice-item {
  max-width: 1200px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media only screen and (min-width: 768px) {
  .voice-item {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0;
  }
}
.voice-item + .voice-item {
  margin-top: 50px;
}
@media only screen and (min-width: 768px) {
  .voice-item + .voice-item {
    margin-top: 70px;
  }
}
.voice-item__image {
  display: flex;
  align-items: center;
  gap: 17px;
  flex-direction: column;
}
@media only screen and (min-width: 768px) {
  .voice-item__image {
    width: 180px;
  }
}
@media only screen and (max-width: 767px) {
  .voice-item__image {
    order: 2;
  }
}
.voice-item__image img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  background: var(--white);
  border-radius: 100%;
}
.voice-item__image h3 {
  font-size: 18px;
  line-height: 1.45;
  font-weight: 700;
  margin: 0;
}
@media only screen and (min-width: 992px) {
  .voice-item__image h3 {
    font-size: 22px;
  }
}
.voice-item__content {
  background: var(--white);
  border-radius: 6px;
  padding: 30px;
  font-size: 16px;
  line-height: 2;
  font-weight: 500;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .voice-item__content {
    width: calc(100% - 215px);
  }
}
@media only screen and (min-width: 992px) {
  .voice-item__content {
    padding: 35px 40px 35px 50px;
    font-size: 18px;
  }
}
.voice-item__content p:last-of-type {
  margin: 0;
}
.voice-item__content::before {
  content: "";
  border-top: 24px solid var(--white);
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  position: absolute;
  top: 100%;
  left: calc(50% - 7px);
}
@media only screen and (min-width: 768px) {
  .voice-item__content::before {
    border-left: 0;
    border-right: 24px solid var(--white);
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    top: 75px;
    left: auto;
    right: 100%;
  }
}

.contact-box__inner {
  background: var(--white);
  padding: 30px;
}
@media only screen and (min-width: 992px) {
  .contact-box__inner {
    padding: 45px 45px 60px;
  }
}
.contact-box h3 {
  text-align: center;
  margin: 0 0 30px;
  font-size: 20px;
  font-weight: 700;
}
@media only screen and (min-width: 768px) {
  .contact-box h3 {
    margin: 0 0 45px;
    font-size: 24px;
  }
}
.contact-box__list {
  margin: 0 auto;
}
@media only screen and (min-width: 550px) {
  .contact-box__list {
    display: flex;
    justify-content: center;
    gap: 30px;
  }
}
.contact-box__list a {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: "Futura", sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
  .contact-box__list a {
    gap: 25px;
    margin-bottom: 0;
    font-size: 24px;
  }
}
@media only screen and (min-width: 992px) {
  .contact-box__list a {
    font-size: 30px;
  }
}
.contact-box__list a img {
  max-width: 46px;
}
@media only screen and (min-width: 768px) {
  .contact-box__list a img {
    max-width: 80px;
  }
}
@media only screen and (min-width: 992px) {
  .contact-box__list a img {
    max-width: 92px;
  }
}
.contact-box__list a strong {
  text-decoration: underline;
}
.contact-box .btnMore {
  text-align: center;
  margin-top: 30px;
}
@media only screen and (min-width: 768px) {
  .contact-box .btnMore {
    margin-top: 50px;
  }
}
@media only screen and (min-width: 1200px) {
  .contact-box .btnMore {
    margin-top: 70px;
  }
}
.contact-box .btnMore a {
  display: inline-block;
  width: 100%;
  max-width: 440px;
  min-width: auto;
  padding-right: 50px;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .contact-box .btnMore a {
    padding-inline: 70px;
    font-size: 16px;
    line-height: 1.5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}
@media only screen and (min-width: 992px) {
  .contact-box .btnMore a {
    font-size: 20px;
    min-height: 94px;
  }
}

.topMainimg {
  position: relative;
}
.topMainimg .slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.topMainimg .slider .slide-bg {
  width: 100%;
  height: 100%;
}
.topMainimg .slider .slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.topMainimg .slider .slide-bg .pc-img {
  display: block;
}
@media only screen and (max-width: 959px) {
  .topMainimg .slider .slide-bg .pc-img {
    display: none;
  }
}
.topMainimg .slider .slide-bg .sp-img {
  display: none;
}
@media only screen and (max-width: 959px) {
  .topMainimg .slider .slide-bg .sp-img {
    display: block;
  }
}
.topMainimg .slider .slick-dots {
  position: absolute;
  top: 50%;
  right: 1rem;
  bottom: auto;
  left: auto;
  width: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  transform: translateY(-50%);
}
.topMainimg .slider .slick-dots li {
  margin: 0;
}
.topMainimg .slider .slick-dots li button {
  width: 7px;
  height: 30px;
  background: #7B7B7B;
  border: none;
  border-radius: 3px;
  font-size: 0;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.topMainimg .slider .slick-dots li button:before {
  display: none;
}
.topMainimg .slider .slick-dots li button:hover {
  background: #18BBB6;
}
.topMainimg .slider .slick-dots li.slick-active button {
  background: #18BBB6;
  height: 120px;
}
@media only screen and (max-width: 959px) {
  .topMainimg .slider-dots-sp .slick-dots {
    position: static;
    display: flex;
    flex-direction: row;
    gap: 12px;
    justify-content: center;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
  }
  .topMainimg .slider-dots-sp .slick-dots li {
    margin: 0;
  }
  .topMainimg .slider-dots-sp .slick-dots li button {
    width: 30px;
    height: 7px;
    background: #7B7B7B;
    border: none;
    border-radius: 3px;
    font-size: 0;
    padding: 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  .topMainimg .slider-dots-sp .slick-dots li button:before {
    display: none;
  }
  .topMainimg .slider-dots-sp .slick-dots li button:hover {
    background: #18BBB6;
  }
  .topMainimg .slider-dots-sp .slick-dots li.slick-active button {
    background: #18BBB6;
    width: 120px;
    height: 7px;
  }
}