.home-main {
  padding: 25px 0 100px;
  background-color: #fff;
  position: relative;
  z-index: 2;
}
@media print, screen and (width > 1024px) {
  .home-main {
    padding-top: 150px;
    padding-bottom: 150px;
  }
}
.home-title {
  margin-bottom: 20px;
  display: grid;
  row-gap: 16px;
}
@media print, screen and (width > 1024px) {
  .home-title {
    margin-bottom: 30px;
    row-gap: 22px;
  }
}
.home-title__sub {
  font-family: "Zen Kaku Gothic New", sans-serif;
  padding-left: 15px;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  color: var(--color-txt-quaternary);
  position: relative;
}
.home-title__sub::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: var(--color-site-tertiary);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
}
@media print, screen and (width > 1024px) {
  .home-title__sub {
    font-size: 15px;
  }
}
.home-title__main {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.09em;
  color: var(--color-txt-secondary);
}
@media print, screen and (width > 1024px) {
  .home-title__main {
    font-size: 33px;
  }
}
.home-lead {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.875;
  letter-spacing: 0;
  color: var(--color-txt-quaternary);
}
@media print, screen and (width > 1024px) {
  .home-lead {
    font-size: 17px;
    line-height: 2;
  }
}
.home-lnav {
  position: relative;
  width: 89.3333333333vw;
  padding: 18px 0 0 10px;
  margin: auto;
}
@media print, screen and (width > 1024px) {
  .home-lnav {
    width: fit-content;
  }
}
.home-lnav__category {
  padding: 10px 13px;
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  background: var(--color-site-primary);
  border-radius: 3px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.home-lnav__category::after {
  content: "";
  width: 25px;
  height: 25px;
  background: var(--color-site-primary);
  border-radius: 3px;
  position: absolute;
  right: -11px;
  top: 50%;
  z-index: -1;
  rotate: 45deg;
  translate: 0 -50%;
}
@media print, screen and (width > 1024px) {
  .home-lnav__category {
    padding: 9px 16px;
    font-size: 17px;
  }
}
.home-lnav__list {
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
  width: fit-content;
  padding: 25px 11px 15px;
  background: var(--color-site-secondary);
  border: 2px solid var(--color-border-primary);
  border-radius: 5px;
  position: relative;
  z-index: 1;
}
.home-lnav__list::before {
  content: "";
  width: 7px;
  height: 6px;
  background-color: var(--color-border-primary);
  position: absolute;
  top: 15px;
  left: -9px;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}
@media print, screen and (width > 1024px) {
  .home-lnav__list {
    padding: 40px 20px 30px;
  }
}
.home-lnav__item {
  width: fit-content;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  color: var(--color-txt-quaternary);
  background: #FFFFFF;
  border: 1px solid var(--color-border-secondary);
  box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
@media print, screen and (width > 1024px) {
  .home-lnav__item {
    font-size: 15px;
  }
  .home-lnav__item::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--color-border-secondary);
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.2s;
    transform: translate(0, 0) scale(0, 1);
    transform-origin: center right;
  }
  .home-lnav__item:hover::before {
    transform: translate(0, 0) scale(1);
    transform-origin: center left;
    transition: transform 0.3s;
  }
}
.home-lnav__link {
  display: block;
  width: fit-content;
  padding: 11px 19px;
  color: inherit;
  text-decoration: none;
  position: relative;
  z-index: 2;
}
.home-slider {
  padding: 20px 0 0 20px;
  position: relative;
}
.home-slider::before {
  content: "";
  width: 64px;
  height: 64px;
  background: url(../images/common/img_obliqueline.svg) no-repeat left top;
  background-size: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
@media print, screen and (width > 1024px) {
  .home-slider {
    padding: 33px 0 0 37px;
  }
  .home-slider::before {
    width: 111px;
    height: 111px;
  }
}
.home-slider__inner {
  width: 100%;
  position: relative;
  z-index: 2;
}
.home-slider__inner .slick-list {
  width: 100% !important;
  aspect-ratio: 310/213;
}
@media print, screen and (width > 1024px) {
  .home-slider__inner .slick-list {
    aspect-ratio: 16/11;
  }
}
.home-slider__inner .slick-dots {
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 5px;
  height: 8px;
  position: absolute;
  right: 0;
  bottom: -25px;
}
.home-slider__inner .slick-dots li {
  width: 8px;
  height: 8px;
}
.home-slider__inner .slick-dots li button {
  display: block;
  width: 8px;
  height: 8px;
  margin: 0;
  padding: 0;
  font-size: 0;
  border: 1px solid #4B7DD1;
  border-radius: 50%;
  background-color: #fff;
}
.home-slider__inner .slick-dots li.slick-active button {
  background-color: var(--color-site-primary);
  border-color: var(--color-site-primary);
}
@media print, screen and (width > 1024px) {
  .home-slider__inner .slick-dots {
    right: 24px;
  }
}
.home-slider__img {
  width: 100%;
  aspect-ratio: 310/213;
}
@media print, screen and (width > 1024px) {
  .home-slider__img {
    aspect-ratio: 16/11;
  }
}
.home-gradation {
  width: 305px;
  height: 305px;
  background: conic-gradient(from 228.38deg at 39.89% 46.9%, #E8FFB7 0deg, rgba(169, 255, 255, 0.931485) 67.48deg, rgba(255, 237, 231, 0.8) 230.77deg, rgba(255, 230, 227, 0.835375) 360deg);
  filter: blur(70px);
  pointer-events: none;
}
@media print, screen and (width > 1024px) {
  .home-gradation {
    width: 435px;
    height: 435px;
    filter: blur(90px);
  }
}
.home-jumbotron {
  padding-top: calc(100svw + 60px);
  position: relative;
}
@media only screen and (width <= 1024px) {
  .home-jumbotron {
    overflow: hidden;
  }
}
@media print, screen and (width > 1024px) {
  .home-jumbotron {
    display: flex;
    align-items: flex-end;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    height: 100svh;
    padding-top: 0;
  }
}
.home-jumbotron__bg {
  width: 100svw;
  height: 100svw;
  background: linear-gradient(90deg, var(--color-site-primary), var(--color-site-secondary));
  position: fixed;
  top: 60px;
  left: 0;
  z-index: 1;
  overflow: hidden;
}
.home-jumbotron__bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(222.17deg, rgba(5, 111, 130, 0.12) 24.7%, rgba(0, 45, 53, 0.5) 88.75%);
  z-index: 2;
}
@media print, screen and (width > 1024px) {
  .home-jumbotron__bg {
    height: 100svh;
    top: 0;
  }
}
.home-jumbotron__movie {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.home-jumbotron__btn {
  width: 120px;
  height: 120px;
  padding-top: 70px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid #FFFFFF;
  border-radius: 50%;
  backdrop-filter: blur(3.43137px);
  position: absolute;
  right: 22px;
  top: calc(63.444svw + 42px);
  z-index: 2;
}
.home-jumbotron__btn::before, .home-jumbotron__btn::after {
  content: "";
}
.home-jumbotron__btn::before {
  width: 26px;
  height: 40px;
  background: url(../images/home/icon_moviearrow.svg) no-repeat left top;
  background-size: 100%;
  position: absolute;
  top: 30px;
  left: calc(50% + 3px);
  translate: -50% 0;
}
.home-jumbotron__btn::after {
  width: 148px;
  height: 148px;
  background: url(../images/home/txt_moviebtn_sp.svg) no-repeat left top;
  background-size: 100%;
  position: absolute;
  top: -15px;
  left: -15px;
  pointer-events: none;
  animation: loopTxt 10s linear infinite;
}
@media print, screen and (width > 1024px) {
  .home-jumbotron__btn {
    width: 180px;
    height: 180px;
    padding-top: 100px;
    right: 70px;
    top: auto;
    bottom: 95px;
  }
  .home-jumbotron__btn::before {
    width: 40px;
    height: 62px;
    top: 48px;
  }
  .home-jumbotron__btn::after {
    width: 220px;
    height: 220px;
    background-image: url(../images/home/txt_moviebtn.svg);
    top: -21px;
    left: -21px;
  }
}
.home-jumbotron__btn__txt {
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  color: #fff;
}
@media print, screen and (width > 1024px) {
  .home-jumbotron__btn__txt {
    font-size: 20px;
    line-height: 1;
  }
}
@keyframes loopTxt {
  0% {
    rotate: 0;
  }
  100% {
    rotate: -360deg;
  }
}
.home-jumbotron__box {
  margin-top: -48px;
  padding-top: 37px;
  position: relative;
  z-index: 5;
}
@media print, screen and (width > 1024px) {
  .home-jumbotron__box {
    padding-top: 0;
    margin-top: 0;
    margin-bottom: -35px;
  }
}
@media only screen and (width <= 1024px) {
  .home-jumbotron__box::before {
    content: "";
    width: 162px;
    height: 201px;
    background: linear-gradient(246.8deg, rgba(255, 255, 255, 0.93) 47.3%, rgba(233, 231, 255, 0.744) 107.91%);
    filter: blur(73.55px);
    border-radius: 57px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  .home-jumbotron__box::after {
    content: "";
    width: 100%;
    height: calc(100% - 40px);
    background-color: #fff;
    position: absolute;
    z-index: 1;
    left: 0;
    bottom: 0;
  }
}
.home-jumbotron__inner {
  margin-top: -45px;
  padding: 76px 10px 34px 30px;
  position: relative;
  z-index: 3;
  overflow: hidden;
}
.home-jumbotron__inner::before, .home-jumbotron__inner::after {
  content: "";
  width: 70px;
  height: 70px;
  background: url(../images/common/img_obliqueline.svg) no-repeat left top;
  background-size: 100%;
  position: absolute;
  z-index: 2;
}
.home-jumbotron__inner::before {
  top: 0;
  left: -22px;
}
.home-jumbotron__inner::after {
  right: -22px;
  bottom: 0;
  rotate: 180deg;
}
@media print, screen and (width > 1024px) {
  .home-jumbotron__inner {
    padding: 67px 64px 110px 80px;
    margin-top: 0;
  }
  .home-jumbotron__inner::before, .home-jumbotron__inner::after {
    width: 111px;
    height: 111px;
  }
  .home-jumbotron__inner::after {
    right: 0;
  }
}
.home-jumbotron__catchcopy {
  font-weight: 700;
}
.home-jumbotron__catchcopy__sub {
  display: block;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.21em;
}
@media print, screen and (width > 1024px) {
  .home-jumbotron__catchcopy__sub {
    font-size: 20px;
    color: #fff;
  }
}
.home-jumbotron__catchcopy__main {
  font-size: 25px;
  line-height: 1.4;
  letter-spacing: 0.21em;
}
@media print, screen and (width > 1024px) {
  .home-jumbotron__catchcopy__main {
    font-size: 39px;
    color: #fff;
  }
}
.home-jumbotron__lead {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.85;
}
@media print, screen and (width > 1024px) {
  .home-jumbotron__lead {
    display: none;
  }
}
.home-update {
  display: grid;
  gap: 17px;
  width: 89.3333333333vw;
  margin: auto;
}
@media print, screen and (width > 1024px) {
  .home-update {
    width: min(97.54vw, 1190px);
    grid-template-columns: 115px 1fr;
    gap: min(5.73vw, 70px);
  }
}
.home-update__head {
  position: relative;
}
@media print, screen and (width > 1024px) {
  .home-update__head {
    display: flex;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    min-height: 150px;
  }
}
.home-update__title {
  width: fit-content;
  margin-bottom: auto;
  line-height: 1.43;
  text-align: center;
}
.home-update__title__main {
  display: block;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.003em;
  color: var(--color-txt-secondary);
  text-transform: capitalize;
}
@media print, screen and (width > 1024px) {
  .home-update__title__main {
    font-size: 44px;
  }
}
.home-update__title__sub {
  font-family: "Zen Kaku Gothic New", sans-serif;
  display: block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.015em;
  color: var(--color-txt-quaternary);
}
@media print, screen and (width > 1024px) {
  .home-update__title__sub {
    font-size: 15px;
  }
}
.home-update__index {
  padding-right: 30px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.015em;
  color: var(--color-txt-quaternary);
  position: relative;
}
@media (hover: hover) {
  .home-update__index:where(:any-link, :enabled, summary):hover .home-update__icon {
    right: -3px;
    transition: right 0.3s;
  }
}
@media only screen and (width <= 1024px) {
  .home-update__index {
    position: absolute;
    right: 0;
    bottom: 6px;
  }
}
.home-update__icon {
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  background-color: var(--color-site-primary);
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -50%;
  transition: right 0.2s;
}
.home-update__icon::before {
  content: "";
  width: 6px;
  height: 9px;
  mask-image: url(../images/common/icon_arrow.svg);
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: 6px 9px;
  -webkit-mask-image: url(../images/common/icon_arrow.svg);
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 6px 9px;
  background-color: #fff;
  position: relative;
  right: -1px;
}
.home-about {
  padding-top: 104px;
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
}
.home-about::before {
  content: "";
  width: 100%;
  height: calc(100% - 104px);
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
}
@media print, screen and (width > 1024px) {
  .home-about {
    padding-top: 285px;
    padding-bottom: 115px;
  }
  .home-about::before {
    content: "";
    height: calc(100% - 285px);
  }
}
.home-about__bg {
  position: absolute;
  top: 20px;
  right: -110px;
  z-index: 1;
  rotate: 69.12deg;
}
@media print, screen and (width > 1024px) {
  .home-about__bg {
    top: 143px;
    right: auto;
    left: 50px;
  }
}
.home-about__bg .home-gradation {
  rotate: 69.12deg;
}
.home-about__inner {
  width: 89.3333333333vw;
  margin: auto;
  position: relative;
  z-index: 3;
}
@media only screen and (width <= 1024px) {
  .home-about__inner {
    padding-top: 80px;
  }
}
@media print, screen and (width > 1024px) {
  .home-about__inner {
    display: flex;
    align-items: flex-end;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    column-gap: 3.083%;
    width: min(96.77vw, 1200px);
    margin-top: -100px;
  }
}
.home-about__head {
  margin-bottom: 45px;
}
@media print, screen and (width > 1024px) {
  .home-about__head {
    width: 40%;
  }
}
@media print, screen and (width > 1024px) {
  .home-about__box {
    width: 56.917%;
  }
}
.home-about .home-lnav {
  margin-top: 45px;
  margin-left: 0;
}
@media print, screen and (width > 1024px) {
  .home-about .home-lnav {
    grid-column: 1/3;
  }
}
.home-residents {
  position: relative;
  z-index: 3;
}
.home-residents.is-show .home-residents__list {
  transition: translate 16s linear;
  transition-delay: 0.4s;
}
@media only screen and (width <= 1024px) {
  .home-residents.is-show .home-residents__list {
    transition-delay: 0.8s;
  }
}
.home-residents.is-show .home-residents__list:nth-child(1) {
  translate: 0;
}
.home-residents.is-show .home-residents__list:nth-child(2) {
  translate: calc(100vw - (200vw + 40px)) 0;
}
@media print, screen and (width > 1024px) {
  .home-residents.is-show .home-residents__list:nth-child(2) {
    translate: 0 -60%;
  }
}
@media only screen and (width <= 1024px) {
  .home-residents {
    background: url(../images/common/img_gradation.svg) no-repeat -145px 225px;
    background-size: 305px 305px;
    overflow: hidden;
  }
}
.home-residents__inner {
  width: 89.3333333333vw;
  margin: 0 auto 30px;
  position: relative;
  z-index: 4;
}
@media print, screen and (width > 1024px) {
  .home-residents__inner {
    width: min(96.77vw, 1200px);
    margin-bottom: 115px;
    display: grid;
    grid-template-columns: 53.333% 1fr;
    gap: 0;
    align-items: flex-start;
  }
}
.home-residents__bg {
  width: fit-content;
  position: absolute;
  top: 170px;
  left: -110px;
  z-index: 1;
  pointer-events: none;
}
@media print, screen and (width > 1024px) {
  .home-residents__bg {
    top: 440px;
    left: 780px;
  }
}
.home-residents__contents {
  padding: 75px 0 40px;
  position: relative;
}
.home-residents__contents::before, .home-residents__contents::after {
  content: "";
  width: 70px;
  height: 70px;
  background: url(../images/common/img_obliqueline.svg) no-repeat left top;
  background-size: 100%;
  position: absolute;
}
.home-residents__contents::before {
  top: 0;
  left: calc(-5.33333335vw - 22px);
}
.home-residents__contents::after {
  bottom: 0;
  right: calc(-5.33333335vw - 22px);
  rotate: 180deg;
}
@media print, screen and (width > 1024px) {
  .home-residents__contents {
    width: min(55.34722222vw, 797px);
    padding-top: 148px;
    padding-right: min(8.333vw, 120px);
    padding-bottom: 166px;
    padding-left: min(13.68vw, 197px);
    margin-left: max(-8.125vw, -117px);
    grid-column: 2/3;
    grid-row: 1/2;
    position: sticky;
    top: 0;
    right: 0;
  }
  .home-residents__contents::before, .home-residents__contents::after {
    width: 111px;
    height: 111px;
  }
  .home-residents__contents::before {
    left: 0;
  }
  .home-residents__contents::after {
    right: 0;
  }
}
.home-residents__photos {
  display: grid;
  gap: 10px 20px;
  position: relative;
  z-index: 2;
}
@media print, screen and (width > 1024px) {
  .home-residents__photos {
    grid-template-columns: repeat(2, 1fr);
    grid-column: 1/1;
    grid-row: 1/2;
    height: 940px;
    margin-top: 30px;
    overflow: hidden;
  }
}
@media only screen and (width <= 1024px) {
  .home-residents__photos {
    width: 100vw;
    margin-top: -25px;
    margin-left: -5.333335vw;
  }
}
.home-residents__list {
  display: grid;
  grid-template-columns: repeat(5, 40vw);
  gap: 10px;
  position: relative;
}
@media print, screen and (width > 1024px) {
  .home-residents__list {
    grid-template-columns: 100%;
    grid-template-rows: repeat(10, auto);
    gap: 20px;
  }
}
@media print, screen and (width > 1024px) {
  .home-residents__list:nth-child(1) {
    translate: 0 -50%;
  }
}
@media only screen and (width <= 1024px) {
  .home-residents__list:nth-child(1) {
    translate: calc(100vw - (160vw + 30px)) 0;
  }
}
.home-residents__list:nth-child(2) {
  position: relative;
  translate: 0 0;
}
@media print, screen and (width > 1024px) {
  .home-residents__list:nth-child(2) {
    top: -10px;
  }
}
.home-residents__item {
  aspect-ratio: 150/106;
}
@media print, screen and (width > 1024px) {
  .home-residents__item {
    aspect-ratio: 31/22;
  }
}
@media only screen and (width <= 1024px) {
  .home-residents__item:nth-child(n+6) {
    display: none;
  }
}
.home-residents__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-residents .home-lnav {
  max-width: 1200px;
}
.home-medical {
  padding-top: 80px;
  padding-bottom: 75px;
  position: relative;
}
.home-medical::before {
  content: "";
  width: 100%;
  height: calc(100% - 80px);
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
}
@media only screen and (width <= 1024px) {
  .home-medical {
    overflow: hidden;
  }
}
@media print, screen and (width > 1024px) {
  .home-medical {
    padding-top: 265px;
    padding-bottom: 126px;
  }
  .home-medical::before {
    content: "";
    height: calc(100% - 265px);
  }
}
.home-medical__bg {
  position: absolute;
  top: 25px;
  right: -84px;
  z-index: 1;
}
@media print, screen and (width > 1024px) {
  .home-medical__bg {
    top: -45px;
    right: auto;
    left: -200px;
  }
}
.home-medical__bg .home-gradation {
  rotate: 120deg;
}
.home-medical__inner {
  width: 89.3333333333vw;
  margin: auto;
  position: relative;
  z-index: 3;
}
@media only screen and (width <= 1024px) {
  .home-medical__inner {
    padding-top: 80px;
  }
}
@media print, screen and (width > 1024px) {
  .home-medical__inner {
    display: flex;
    align-items: flex-end;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    width: min(96.77vw, 1200px);
    column-gap: 3.083%;
    place-items: end start;
    margin-top: -40px;
  }
}
@media print, screen and (width > 1024px) {
  .home-medical__head {
    width: 40%;
  }
}
@media only screen and (width <= 1024px) {
  .home-medical__head {
    margin-bottom: 60px;
  }
}
@media print, screen and (width > 1024px) {
  .home-medical__box {
    width: 56.917%;
  }
}
.home-medical .home-lnav {
  margin-left: 0;
  margin-top: 45px;
}
@media print, screen and (width > 1024px) {
  .home-medical .home-lnav {
    grid-column: 1/3;
  }
}
.home-patients {
  padding-top: 85px;
  position: relative;
  overflow: hidden;
  z-index: 3;
}
.home-patients::before {
  content: "";
  width: 70px;
  height: 70px;
  background: url(../images/common/img_obliqueline.svg) no-repeat left top;
  background-size: 100%;
  position: absolute;
  top: 0;
  left: -15px;
}
.home-patients__bg {
  position: absolute;
  top: 430px;
  right: -50px;
  z-index: 1;
}
@media print, screen and (width > 1024px) {
  .home-patients__bg {
    top: 270px;
    right: -120px;
  }
}
.home-patients__bg .home-gradation {
  rotate: 140deg;
}
@media only screen and (width <= 1024px) {
  .home-patients__bg .home-gradation {
    width: 211px;
    height: 211px;
  }
}
@media print, screen and (width > 1024px) {
  .home-patients {
    padding-top: 111px;
  }
  .home-patients::before {
    width: 111px;
    height: 111px;
    left: -25px;
  }
}
.home-patients__head {
  width: 89.3333vw;
  margin: 0 auto 14px;
  position: relative;
  z-index: 3;
}
@media print, screen and (width > 1024px) {
  .home-patients__head {
    width: min(96.77vw, 1200px);
    margin-bottom: 0;
    display: grid;
    grid-template-columns: auto 1fr;
    place-items: center start;
    gap: 7.5%;
  }
}
.home-patients__txtslider {
  position: relative;
  z-index: 2;
}
@media print, screen and (width > 1024px) {
  .home-patients__txtslider {
    margin-top: -65px;
  }
}
.home-patients__txtslider .slick-track {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
}
.home-patients__txt {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 70px;
  line-height: 1;
  letter-spacing: 0.09em;
  white-space: nowrap;
  color: rgba(29, 67, 144, 0.06);
}
@media print, screen and (width > 1024px) {
  .home-patients__txt {
    font-size: 150px;
  }
}
.home-patients__slider {
  margin: 0 auto 30px;
  position: relative;
  z-index: 3;
}
@media print, screen and (width > 1024px) {
  .home-patients__slider {
    margin-top: -25px;
    margin-bottom: 66px;
  }
}
.home-patients__slider .slick-track {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  column-gap: 12px;
}
@media print, screen and (width > 1024px) {
  .home-patients__slider .slick-track {
    column-gap: 30px;
  }
}
.home-patients__img {
  height: auto !important;
}
.home-patients__img--odd {
  width: 43.7333333333vw !important;
}
@media print, screen and (width > 1024px) {
  .home-patients__img--odd {
    width: 400px !important;
  }
}
.home-patients__img--even {
  width: 60vw !important;
}
@media print, screen and (width > 1024px) {
  .home-patients__img--even {
    width: 550px !important;
  }
}
.home-center {
  padding-top: 116px;
  position: relative;
}
@media print, screen and (width > 1024px) {
  .home-center {
    padding-top: 111px;
  }
}
.home-center__bg {
  position: absolute;
  top: 69px;
  left: -110px;
  z-index: 1;
}
@media print, screen and (width > 1024px) {
  .home-center__bg {
    top: 20px;
    left: -89px;
  }
}
.home-center__bg .home-gradation {
  rotate: 107deg;
}
.home-center__inner {
  width: 89.3333333333vw;
  margin: auto;
  display: grid;
  grid-template-columns: 89.3333333333vw;
  gap: 20px;
  background: #fff;
  border-radius: 10px;
  position: relative;
  z-index: 2;
}
.home-center__inner::before {
  content: "";
  width: 70px;
  height: 70px;
  background: url(../images/common/img_obliqueline.svg) no-repeat left top;
  background-size: 100%;
  position: absolute;
  top: -58px;
  right: -10px;
  z-index: -1;
  rotate: 180deg;
}
@media print, screen and (width > 1024px) {
  .home-center__inner {
    width: min(93.05555556vw, 1340px);
    grid-template-columns: repeat(2, calc((100% - 20px) / 2));
  }
  .home-center__inner::before {
    width: 111px;
    height: 111px;
    right: 110px;
    top: -97px;
  }
}
.home-center__contents {
  padding: 30px 30px 50px;
}
@media print, screen and (width > 1024px) {
  .home-center__contents {
    padding: 55px min(5.5vw, 80px) 70px;
  }
}
.home-center__title {
  position: relative;
  margin: 0 auto 45px;
  padding-bottom: 70px;
  font-weight: 400;
  color: var(--color-txt-tertiary);
  text-align: center;
}
.home-center__title::after {
  content: "";
  width: 60px;
  height: 41px;
  background: url(../images/common/logo_center.svg) no-repeat left top;
  background-size: 100%;
  position: absolute;
  left: 50%;
  bottom: 0;
  translate: -50% 0;
}
@media print, screen and (width > 1024px) {
  .home-center__title {
    margin-bottom: 33px;
    padding-bottom: 117px;
  }
  .home-center__title::after {
    width: 104px;
    height: 78px;
  }
}
.home-center__title__main {
  display: block;
  margin-bottom: 10px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 50px;
  line-height: 1;
  letter-spacing: 0;
}
@media print, screen and (width > 1024px) {
  .home-center__title__main {
    margin-bottom: 15px;
    font-size: min(4.16vw, 60px);
    line-height: 1.45;
  }
}
.home-center__title__sub {
  font-size: 17px;
  line-height: 1.29;
}
@media print, screen and (width > 1024px) {
  .home-center__title__sub {
    font-size: 24px;
    letter-spacing: 0.002em;
  }
}
.home-center__copy {
  width: fit-content;
  margin: 0 auto 20px;
  font-family: "Zen Old Mincho", serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.008em;
  color: var(--color-txt-secondary);
}
@media print, screen and (width > 1024px) {
  .home-center__copy {
    margin-bottom: 30px;
    font-size: clamp(30px, 2.29vw, 33px);
  }
}
.home-center__box .home-slider {
  padding: 0;
}
.home-center__box .home-slider::before {
  padding: 0;
}
.home-center__box .home-slider__img {
  aspect-ratio: 1/1 !important;
}
.home-center__box .home-slider .slick-list {
  aspect-ratio: 1/1 !important;
}
.home-center .home-lnav {
  margin-top: 45px;
}

#home .modal-video-body {
  width: 85%;
  max-width: 1400px;
}
#home .modal-video-body .modal-video-inner {
  padding: 0;
}
