@charset "UTF-8";


.site-header-logo{
  filter: drop-shadow(0px 0px 5px rgba(124, 75, 70, 0.8)) drop-shadow(0px 0px 3px rgba(124, 75, 70, 0.5));
}

.top-page__visual {
  position: relative;
  overflow: hidden;
}

.hero_img{
  position: relative;
  line-height: 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero_img{
  }

  .hero_img video{
  aspect-ratio: 16 / 9;
  object-fit: cover;
  height: 100vh;
  width: 100%;
  }

}

@media (max-width: 767px) {
  .hero_img video{
    aspect-ratio: 9 / 16;
    object-fit: cover;
    width: 110%;
     height: 100vh;
  }
}


/* .hero_img::before{
    z-index:3;
    display: block;
    position: absolute;
    height: 100%;
    width: 100%;
    content: "";
    opacity: 0.3;
    overflow: hidden;
  } */




.hero {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1040px;
  padding-right: 24px;
  padding-left: 24px;
  text-align: center;
}

.hero__catch-en {
  font-size: clamp(52px, 8vw, 64px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 0.04em;
  color: #ffffff;
  text-shadow: 0 3px 0 rgba(202, 205, 212, 0.7);
}

.hero__copy {
  margin-top: 72px;
  color: #ffffff;
  text-shadow: 0 6px 18px rgba(92, 106, 134, 0.2);
}

.hero__copy-main {
  font-size: clamp(32px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.6;
}

.hero__copy-sub {
  font-size: clamp(18px, 2vw, 20px);
  line-height: 1.8;
}

.hero__scroll {
  position: absolute;
  left: 48px;
  bottom: 20px;
  z-index: 1;
  display: flex;
  width: 120px;
  height: 120px;
  background-image: url(/system_panel/uploads/images/scroll_down.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  animation: scroll-bounce 3.5s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0% {
    transform: translateY(0);
  }
  8% {
    transform: translateY(-10px);
  }
  16% {
    transform: translateY(0);
  }
  24% {
    transform: translateY(-10px);
  }
  32% {
    transform: translateY(0);
  }
  /* ここから待ち時間 */
  100% {
    transform: translateY(0);
  }
}
.news-layout {
  margin-right: -28px;
  margin-left: -28px;
}

.section-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin-left: auto;
}

.section-rail__jp {
  font-family: var(--mincho-font);
  font-size: 28px;
  line-height: 1;
  writing-mode: vertical-rl;
}

.section-rail__en {
  margin-top: 20px;
  font-size: 16px;
  letter-spacing: 0.12em;
  writing-mode: vertical-rl;
}

.circle-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-navy);
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
}

.circle-link--small {
  width: 56px;
  height: 56px;
  margin-left: auto;
  font-size: 14px;
}

.news-item__date {
  grid-area: 1/1/2/4;
}

.news-item__label {
  grid-area: 2/1/3/2;
}

.news-item__title {
  grid-area: 2/2/3/3;
}

.icon_arrow {
  grid-area: 2/3/3/4;
}

.news-list a:first-child {
  padding-top: 0;
}

.news-item {
  display: grid;
  grid-template-columns: 9em auto 50px;
  gap: 10px 15px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-text);
}

.news-item__date {
  font-size: 16px;
}

.news-item__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  background: var(--color-gold);
  color: #ffffff;
  font-size: 16px;
}

.news-item__title {
  font-size: 16px;
}

.news-list .icon_arrow,
.overlay-card .icon_arrow {
  background-image: url(/system_panel/uploads/images/arrow_link_w.svg);
  margin: 0;
}

.split-card {
  margin-right: -68px;
  margin-left: -68px;
}

.section-heading {
  display: grid;
  justify-items: center;
  gap: 24px;
  text-align: center;
}

.section-heading--left {
  justify-items: start;
  text-align: left;
}

.section-heading__en {
  font-size: clamp(54px, 9vw, 120px);
  font-weight: 500;
  line-height: 0.95;
  color: var(--color-navy);
}

.section-heading__jp {
  font-size: 24px;
  line-height: 1.2;
}

.section-heading__line {
  width: 1px;
  height: 100px;
  background: rgba(17, 17, 17, 0.25);
}

.lead-copy {
  font-family: var(--mincho-font);
  font-size: clamp(28px, 4vw, 32px);
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
}

.body-copy {
  display: grid;
  gap: 14px;
  font-size: 16px;
  line-height: 1.7;
}

.body-copy--center {
  text-align: center;
}

.split-card__content {
  display: grid;
  gap: 32px;
}

.split-card__media {
  height: 800px;
}

.section-subtitle {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
  font-family: var(--mincho-font);
}

.minor-symptoms h2 {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
}

.tag-grid {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.tag-grid__item,
.overlay-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  background: #ffffff;
  color: var(--color-navy);
  line-height: 1.4;
}

.tag-grid__item {
  font-size: 16px;
}

.voices-layout {
  margin-right: -12px;
  margin-left: -12px;
}

.voices-intro {
  /* display: grid; */
  /* justify-items: center; */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  align-items: center;
  justify-content: center;
}

.voices-intro__label,
.voice-strip__title {
  padding: 8px 18px;
  background: var(--color-beige);
  font-family: var(--mincho-font);
  font-size: 24px;
  line-height: 1.7;
}


.voice-strip__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: 32px;
  border-radius: 20px;
  background: var(--color-beige);
}

.voice-card {
  gap: 16px;
  align-content: start;
  padding: 24px;
  border: 1px solid rgba(186, 160, 113, 0.6);
  background: #ffffff;
}

.voice-cards{
  margin-top: 32px;
  background-color: var(--color-beige);
  padding: 32px 0 32px 32px;
  border-radius: 20px 0 0 20px;
  gap: 24px;
}

.voice-card p {
  line-height: 1.7;
}

.voice-card__meta {
  color: #aeaeae;
  text-align: center;
  margin-top: 1em;
}

.splide__arrows {
  margin-top: 0px;
}

.slider-dots {
  display: flex;
  gap: 24px;
}

.slider-dots__arrow {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  position: relative;
  background: rgba(108, 121, 146, 0.18);
}

.slider-dots__arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 18px;
  height: 18px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
}

.slider-dots__arrow--prev::before {
  transform: rotate(-135deg);
}

.slider-dots__arrow--next {
  background: var(--color-navy);
}

.slider-dots__arrow--next::before {
  transform: rotate(45deg);
}

.section-intro {
  max-width: 872px;
  margin: 32px auto 0;
  text-align: center;
}

.section-intro h2 {
  font-family: var(--mincho-font);
  font-size: clamp(30px, 4vw, 56px);
  font-weight: 500;
  line-height: 1.6;
}

.section-intro p,
.section-intro--compact {
  margin-top: 24px;
  font-size: 16px;
}

.section-intro--compact {
  display: grid;
  justify-items: center;
  gap: 32px;
  max-width: 764px;
}

.features-layout {
  margin-right: -28px;
  margin-left: -28px;
}

.features-layout__media img {
  aspect-ratio: 710/800;
  -o-object-fit: cover;
  object-fit: cover;
}

.features-list {
  display: grid;
  gap: 32px;
}

.feature-item {
  display: grid;
  gap: 16px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.18);
}

.feature-item__head {
  display: flex;
  align-items: center;
  gap: 16px;
}

.feature-item__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 77px;
  height: 77px;
  border-radius: 50%;
  background: var(--color-navy-soft);
  color: #ffffff;
  font-size: 32px;
  line-height: 1;
}

.feature-item h3 {
  font-size: 20px;
  font-weight: 500;
}

.equipment-layout {
  margin-right: -29px;
  margin-left: -29px;
}

.section-rail--dark .section-rail__jp {
  color: #344057;
}

.equipment-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px 36px;
}

.equipment-card {
  display: grid;
  /* grid-template-columns: 260px minmax(0, 1fr); */
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.18);
}

.equipment-card img {
  -o-object-fit: cover;
     object-fit: cover;
}

.equipment-card__body {
  display: grid;
  gap: 16px;
  align-content: start;
}

.equipment-card__body h4 {
  font-family: var(--mincho-font);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
}

.equipment-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 16px;
  color: #ffffff;
  font-size: 12px;
  line-height: 1.6;
}

.equipment-tag--pink {
  background: var(--color-pink);
}

.equipment-tag--navy {
  background: var(--color-navy-soft);
}

.equipment-tag--orange {
  background: var(--color-orange);
}

.equipment-card--wide {
  grid-column: 1/2;
}

.director-section {
  position: relative;
  /* min-height: 750px; */
  max-width: 1340px;
  margin-inline: auto;
  margin-bottom: 50px;
}

.director-section__bg {
  position: absolute;
  
  inset: 0;
}

.director-section__bg::after {
  content: "";
  position: absolute;
  inset: 0;
}

.director-section__bg img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  overflow: hidden;
  object-position:10%;
}

.director-section__inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  /* min-height: 750px; */
}

.director-message {
  width: min(100%, 644px);
  padding: 40px;
  margin: 70px 20px;
  background: rgba(255, 255, 255, 0.96);
}

.director-message h3 {
  font-family: var(--mincho-font);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.6;
}

.director-message p {
  margin-top: 24px;
}

.services-section .header-hero {
  padding-bottom: 48px;
}

.service-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.service-block > * {
  flex: 1 1 50%;
}

.service-block--reverse .service-block__media {
  order: 2;
}

/* .service-block__media img {
  min-height: 910px;
  -o-object-fit: cover;
  object-fit: cover;
} */

.service-block__media .slider-area{
    min-height: 910px;
    -o-object-fit: cover;
    object-fit: cover;
}

.service-block__content {
  display: grid;
  gap: 32px;
}

.service-block__content--vertical {
  justify-items: center;
  display: grid;
  text-align: left;
  padding-left: clamp(20px, 5vw, 80px);
}

.service-block--reverse .service-block__content--vertical {
  padding-right: clamp(20px, 5vw, 80px);
}

.vertical-title {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-family: var(--mincho-font);
  writing-mode: vertical-rl;
}

.vertical-title__main {
  font-size: clamp(48px, 5vw, 64px);
  line-height: 1;
}

.vertical-title__sub {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
}

.service-block__line {
  width: 1px;
  height: 70px;
  margin: 20px 0;
  background: rgba(17, 17, 17, 0.3);
}

.voice-strip {
  margin-top: 48px;
  position: relative;
  display: grid;
  gap: 32px;
}

.voice-strip::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -40px;
  width: 420px;
  height: 500px;
  background: linear-gradient(180deg, rgba(186, 160, 113, 0.12), rgba(186, 160, 113, 0.18));
  z-index: -1;
}

.voice-strip--offset::before {
  right: auto;
  left: 0;
}

.voice-card--compact {
  min-height: 269px;
}

.voice-strip--standard {
  margin: 80px 0;
  gap: 18px;
  justify-items: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.voice-strip--standard.voice-vital {
  padding: 100px 100px;
  margin: 80px 0 0;
  background-position: right 30px center;
  background-image: url(/system_panel/uploads/images/index_service_02.jpg);
}

.voice-strip--standard.voice-standard {
  padding: 50px 100px;
  background-position: left 30px center;
  background-image: url(/system_panel/uploads/images/index_service_05.jpg);
}

.voice-strip--standard::before {
  display: none;
}

.voice-strip--standard .voice-strip__title {
  padding: 4px 18px;
  background: #ffffff;
  color: var(--color-navy);
  font-size: 16px;
  line-height: 1.6;
}

.voice-strip--standard .voice-strip__cards {
  width: 100%;
  max-width: 1036px;
  gap: 28px;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.voice-strip--standard .voice-card--compact {
  min-height: 158px;
  padding: 24px 24px 20px;
  border: 0;
  background: #ffffff;
  border: 1px solid rgb(186, 160, 113);
}

.voice-strip--standard .voice-card p {
  font-size: 15px;
  line-height: 1.85;
}

.voice-strip--standard .voice-card__meta {
  margin-top: 2px;
  font-size: 14px;
}

.minor-symptoms {
  padding-top: 72px;
}

.tag-grid--wide span {
  font-size: 18px;
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.tag-grid__item {
  font-family: var(--mincho-font);
  min-height: 50px;
  padding: 12px 20px;
  background: var(--color-navy-soft);
  color: #ffffff;
}

.other-section .header-hero {
  padding-bottom: 30px !important;
}

.overlay-cards {
  display: grid;
  gap: 32px;
  margin-top: 56px;
}

.overlay-card {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 40px;
  background-position: center;
  background-size: cover;
}

.overlay-card__line {
  width: 1px;
  height: 100px;
  background: rgba(17, 17, 17, 0.6);
  margin: 20px;
  margin-left: auto;
  margin-right: auto;
}

/* .overlay-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
} */

.overlay-card--4d {
  background-image: url("/system_panel/uploads/images/index_overlay-card_4dstretch.jpg");
}

.overlay-card--accident {
  background-image: url("/system_panel/uploads/images/index_overlay-card_accident.jpg");
}

.overlay-card--homecare {
  background-image: url("/system_panel/uploads/images/index_overlay-card_homecare.jpg");
}

.overlay-card--ems {
  background-image: url("/system_panel/uploads/images/index_overlay-card_ems.jpg");
}

.overlay-card__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 820px);
  display: grid;
  justify-items: center;
  gap: 24px;
  color: #ffffff;
  text-align: center;
}

.overlay-card h3 {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.8;
}

.overlay-card__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.overlay-card p {
  max-width: 820px;
  font-size: 24px;
  line-height: 1.8;
}

.overlay-card__arrow {
  color: #ffffff;
}

.contact-card {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 18px;
  align-content: start;
}

.contact-card-title {
  font-family: var(--mincho-font);
  font-size: 24px;
  font-weight: 500;
}

.follow-block {
  margin-top: 56px;
  display: grid;
  gap: 32px;
  justify-items: center;
}

.follow-block__title {
  position: relative;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.7;
}

.follow-block__title::before,
.follow-block__title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 37px;
  height: 4px;
  background: var(--color-gold);
}

.follow-block__title::before {
  left: -62px;
  transform: translateY(-50%) rotate(60deg);
}

.follow-block__title::after {
  right: -62px;
  transform: translateY(-50%) rotate(-60deg);
}

.follow-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-right: -12px;
  margin-left: -12px;
}

.contact-card {
  min-width: 310px;
  padding: 24px;
  border: 1px solid rgba(17, 17, 17, 0.5);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.92);
}

.follow-grid > * {
  flex: 0 1 calc(50% - 24px);
  margin-right: 12px;
  margin-left: 12px;
}





@media (max-width: 1199px) {
  .split-card,
  .features-layout,
  .voices-layout,
  .equipment-layout {
    margin-right: 0;
    margin-left: 0;
  }
  .split-card__media{
    height: auto;
    min-height: 0;
  }

  .news-layout,
  .equipment-layout {
    margin-right: 0;
    margin-left: 0;
  }
  .section-rail {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
  }
  .section-rail__en {
    margin-top: 6px;
  }
  .equipment-card--wide {
    grid-column: auto;
  }
  .director-section__inner {
    /* justify-content: center; */
    /* padding: 80px 0; */
    padding: 8em 0 0 0;
  }
  .voice-strip::before {
    display: none;
  }
  .follow-grid > * {
    flex-basis: calc(50% - 24px);
  }
}


/* lg以下 */
@media (max-width: 992px) {
  .section-rail{
    flex-direction: row;
    margin-bottom: 24px;
  }
  .section-rail__jp,
  .section-rail__en {
    writing-mode: horizontal-tb;
  }
  .section-rail > div {
    display: flex;
    align-items: baseline;
    gap: 14px;
  }


    .service-block__media .slider-area  {
    max-width: none;
    aspect-ratio: 595/800;
    margin: 0 auto 18px;
    -o-object-fit: contain;
    object-fit: contain;
    min-height: fit-content;
    overflow: hidden;
  }

  .service-block--reverse .service-block__media{
    margin-top: 18px;

  }

  .equipment-card {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-bottom: 8px;
  }
  .equipment-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
  .equipment-card img {
    aspect-ratio: 1/1;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .equipment-card__body {
    gap: 8px;
  }
  .equipment-card__body h4 {
    font-size: 16px;
  }
  .equipment-card__body p {
    font-size: 12px;
  }
  .equipment-tag {
    padding: 4px 8px;
  }
  .circle-link--small {
    width: 40px;
    height: 40px;
    font-size: 8px;
  }
  .features-layout__media .slider-area{
    aspect-ratio: 710 / 800;
    margin-bottom: 20px;
  }
}





@media (max-width: 767px) {
  .top-page__visual {
    min-height: 667px;
  }
  .top-page__slider,
  .top-page__slider .carousel-inner,
  .top-page__slider .carousel-item {
    height: 667px;
  }
  .hero {
    inset: 0;
    min-height: 667px;
    align-items: flex-start;
    padding: 241px 0 0;
  }
  .hero__inner {
    width: 343px;
    padding-right: 0;
    padding-left: 0;
  }
  .hero__catch-en {
    font-size: 46px;
  }
  .hero__copy-main {
    font-size: 24px;
    line-height: 1.5;
  }
  .hero__copy {
    margin-top: 32px;
    text-shadow: 0 4px 16px rgba(92, 106, 134, 0.18);
  }
  .hero__copy-sub {
    font-size: 16px;
    line-height: 1.85;
  }
  .hero__scroll {
    left: 16px;
    bottom: 10px;
    width: 80px;
    height: 80px;
    font-size: 0;
    color: transparent;
  }
  .hero__scroll::before {
    display: none;
  }
  .section-rail {
    gap: 16px;

    display: flex;
    flex-direction: column;
  }


  .section-rail__jp {
    font-size: 24px;
  }
  .section-rail__en {
    margin-top: 0;
    font-size: 16px;
  }
  .circle-link {
    width: 40px;
    height: 40px;
    font-size: 12px;
  }
  .section-rail {
    flex-direction: row;
  }
  .news-section .container {
    padding: 0;
  }
  .news-item {
    grid-template-columns: auto 50px;
    gap: 5px 10px;
    padding: 10px 0;
  }
  .news-item__label {
    /* font-size: 14px;
    width: 8em;
  padding: 0 5px; */
  font-size: 12px;
  width: 11em;
  }
  .news-item__title {
    font-size: 14px;
  }
  .news-item__date {
    font-size: 12px;
  }
  .news-item__date {
    grid-area: 1/1/2/3;
  }
  .news-item__label {
    grid-area: 2/1/3/3;
  }
  .news-item__title {
    grid-area: 3/1/4/2;
  }
  .icon_arrow {
    grid-area: 3/2/4/3;
  }
  .lead-copy,
  .section-intro h2 {
    font-size: 24px;
    line-height: 1.8;
  }
.director-section{
  margin-bottom: 0;
}
 .director-section__inner {
    justify-content: center;
  }


  .section-subtitle,
  .minor-symptoms h2,
  .overlay-card h3 {
    font-size: 24px;
  }
  .split-card--about .split-card__media {
    order: -1;
    /* margin-bottom: 48px; */
  }
  .split-card--about .split-card__media img {
    width: 80%;
    margin-inline: auto;
  }
  .lead-copy {
    margin-top: 0;
  }
  .body-copy {
    gap: 16px;
    font-size: 16px;
    line-height: 1.8;
  }
  .symptoms-section .tag-grid,
  .minor-symptoms .tag-grid {
    gap: 16px;
  }
.symptoms-section.section{
  padding-bottom: 80px;
}

  .tag-grid__item {
    width: calc((100% - 16px) / 2);
    font-size: 16px;
  }
  .overlay-card__tag {
    font-size: 16px;
    padding: 5px 10px;
  }
  .voices-layout {
    /* gap: 32px 0; */
  }
  .voices-intro {
    gap: 24px;


  }
  .voices-intro__label,
  .voice-strip__title {
    padding: 8px 16px;
    font-size: 16px;
  }
  .voices-intro__label h3{
    font-size:16px;
  }

  .voice-strip__cards {
    display: flex;
    gap: 14px;
    /* padding: 0; */
    overflow-x: auto;
    border-radius: 10px 0 0 10px;
    /* background: transparent; */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-left: 30px;
  }
  .voice-cards::-webkit-scrollbar,
  .voice-strip__cards::-webkit-scrollbar {
    display: none;
  }

  .voice-cards{
    border-radius: 10px 0 0 10px;
    margin-left: 30px;
  }

  .col-12:has(.voice-cards){
    padding-right: 0;
    padding-left: 0;
  }


  .voice-card,
  .voice-card--compact {
    flex: 0 0 250px;
    padding: 24px;
    background: rgba(255, 255, 255, 1);
  }
  .slider-dots {
    display: none;
  }
  .features-layout {
    margin-top: 48px;
    gap: 32px;
    margin: 0 calc(50% - 50vw);
  }

  .features-layout__media .slider-area{
    aspect-ratio: 710 / 800;
    margin-bottom: 0;
    width: 90%;
    margin: 0 auto 0;
  }
  .features-list {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-left: 30px;
    padding-right: 40px;
  }
  .features-list::-webkit-scrollbar {
    display: none;
  }
  .feature-item {
    flex: 0 0 250px;
    padding-bottom: 0;
    border-bottom: 0;
  }
  .feature-item__num {
    width: 60px;
    height: 60px;
    aspect-ratio: 1/1;
    font-size: 24px;
  }
  .follow-grid > * {
    flex-basis: 100%;
    margin-right: 0;
    margin-left: 0;
  }
  .services-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }
  .services-section .header-hero {
    gap: 16px;
    padding-top: 0;
    padding-bottom: 28px;
  }
  .services-section .header-hero__title {
    font-size: 54px;
  }
  .services-section .header-hero__subtitle {
    font-size: 16px;
    line-height: 1.45;
  }
  .services-section .header-hero__line {
    height: 48px;
  }
  .services-section .header-hero__text {
    max-width: 315px;
    font-size: 12px;
    line-height: 1.85;
    text-align: center;
  }
  .services-section .header-hero .outline-button {
    /* padding: 4px 20px; */
    /* font-size: 12px; */
  }
  .service-block {
    display: grid;
    /* grid-template-columns: minmax(0, 45%) minmax(0, 1fr); */
    align-items: start;
    max-width: 375px;
    margin-top: 48px;
    gap: 18px;
    padding-right: 16px;
    padding-left: 16px;
    margin-right: auto;
    margin-left: auto;
  }
  .service-block > * {
    flex-basis: auto;
    min-width: 0;
  }
  .service-block--reverse {
    grid-template-columns: minmax(0, 1fr) minmax(0, 45%);
    grid-template-columns: 1fr;
  }
  .service-block--reverse .service-block__media {
    order: 2;
    margin-top: 0;
  }
  .service-block--reverse .service-block__content {
    order: 1;
  }
  .service-block__media .slider-area  {
    /* max-width: none;
    aspect-ratio: 595/800; */
    margin: 0 auto;
    /* -o-object-fit: contain;
    object-fit: contain;
    min-height: fit-content;
    overflow: hidden; */
  }
  .service-block__content {
    align-self: stretch;
    gap: 14px;
  }
  .service-block__content--vertical {
    /* justify-items: start; */
    padding-left: 0;
    padding-right: 0 !important;
    order: 2;
  }
  .vertical-title {
    min-height: 190px;
    justify-content: flex-start;
    /* justify-self: center; */
    gap: 12px;
  }
  .vertical-title__main {
    font-size: 28px;
    line-height: 1.05;
  }
  .vertical-title__sub {
    font-size: 14px;
    line-height: 1.7;
  }
  .service-block__line {
    height: 34px;
    /* justify-self: center; */
  }
  .service-block .body-copy {
    gap: 10px;
    font-size: 14px;
    line-height: 1.85;
  }
  .service-block .outline-button {
    /* max-width: 100%; */
    /* padding: 3px 12px; */
    /* font-size: 11px; */
    /* line-height: 1.7; */
    /* text-align: center; */
    /* white-space: normal; */
  }
  .voice-strip--standard {
    margin-top: 24px;
    gap: 10px;
    padding-right: 16px;
    padding-left: 16px;
    padding: 0 !important;
    margin-bottom: 0;
    background-image: none !important;
  }
  .voice-strip--standard .voice-strip__title {
    padding: 3px 12px;
    font-size: 16px;
  }
  .voice-strip--standard .voice-strip__cards {
    display: flex;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    overflow: visible;
    /* overflow: auto; */
    overflow-x: auto;
  }
  .voice-strip--standard .voice-card--compact {
    flex: initial;
    min-height: auto;
    padding: 10px 8px 8px;
    background: #ffffff;
    box-shadow: 3px 0 0 rgba(186, 160, 113, 0.18);
    min-width: 250px;
  }
  .voice-strip--standard .voice-card p {
    font-size: 14px;
    line-height: 1.6;
  }
  .voice-strip--standard .voice-card__meta {
    font-size: 8px;
  }
  .director-section__bg img {
    width: 100%;
    height: auto;
  }
  .director-message {
    background-color: rgba(255, 255, 255, 0.5);
    margin-top: -50px;
    padding: 10px;
    margin: 20px;
  }
  .director-message h3 {
    font-size: 20px;
  }
  .minor-symptoms {
    padding-top: 56px;
  }
  .minor-symptoms h2 {
    padding-right: 8px;
    padding-left: 8px;
    font-size: 20px;
    line-height: 1.7;
  }

  .overlay-card {
    min-height: 440px;
    padding: 43px 16px 32px;
  }
  .overlay-card p {
    font-size: 16px;
  }
  .overlay-card__line {
    height: 30px;
  }
  .contact-section {
    padding-top: 96px;
  }
  .contact-card {
    min-width: 0;
    gap: 16px;
  }
  .follow-block {
    margin-top: 48px;
    gap: 24px;
  }
  .follow-grid {
    gap: 28px;
    margin-right: 0;
    margin-left: 0;
  }
  .contact-card {
    padding: 16px 16px 22px;
    border-radius: 0;
  }
}




.bg_type-1::after{
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  height: 70vh;
  width: 100%;
  background-image: url("/system_panel/uploads/images/header_bg.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  opacity: 0.3;
}

.bg_type-2{
  position: relative;
}
.bg_type-2::after{
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  height: 100vh;
  width: 100%;
  background-image: url("/system_panel/uploads/images/tyoe2_w.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: top -30vh center ;
  z-index: -1;
  transform: rotateY(3.142rad);
  
}

.bg_type-3{
  position: relative;
}
.bg_type-3::after{
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  height: 100vh;
  width: 100%;
  background-image: url("/system_panel/uploads/images/tyoe2_w.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: top center;
  z-index: -1;
}



.services-section{
  background-color: #F7F8F9;
}

.features-section,
.equipment-section{
  background-color: #FFFBF4;
}

.features-section{
  padding-top: 0;
  margin-top: 120px;

}

.index_slider[data-gjs-type="box"]{
  max-height:80vh;
}
.index_slider .splide__slide[data-gjs-type="box"]{
  aspect-ratio: 1440 / 900;
  width:500px;
  z-index;9999;
}
.hero[data-gjs-type="box"]{
  position:inherit;
}