@charset "UTF-8";
/* 医療専門ホームページ_2025
================================================== */
/* CSS変数 */
:root {
  --noto-font: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", sans-serif;
  --roboto-font: "Roboto", sans-serif;
  --palette-red: #E73535;
  --palette-red-rgb: 231, 53, 53;
  --palette-orange: #E88F35;
  --palette-orange2: #E8592A;
  --palette-blue: #3586E7;
  --palette-blue-rgb: 53, 134, 231;
  --palette-pale-blue: #F5FAFF;
  --palette-navy: #334C80;
  --palette-bagie: #FCFAF7;
  --palette-yellow2: #FFEA05;
  --palette-yellow2-rgb: 255, 234, 5;
  --color-text-accent2: var(--palette-red);
  --color-text-accent3: var(--palette-blue);
  --color-text-accent4: var(--palette-yellow2);
  --color-bg-secondary: var(--palette-pale-blue);
  --color-bg-secondary2: var(--palette-bagie);
  --color-bg-accent: var(--palette-navy);
  --color-bg-accent2: var(--palette-blue);
  --color-bg-accent3: rgba(var(--palette-red-rgb), .1);
  --color-bg-grad: linear-gradient(135deg, var(--palette-red) 0%, var(--palette-orange2) 50%, var(--palette-orange) 100%);
  --color-border-primary: var(--palette-black);
  --color-border-secondary: var(--palette-gray);
  --color-border-secondary2: var(--palette-lightgray);
  --color-border-accent: var(--palette-red);
  --base-radius: 10px;
  --base-radius2: 20px;
  --base-radius3: 40px;
  --base-radius4: 60px;
  --pill-radius: 100vh;
  --box-shadow: 0 4px 20px rgba(0, 0, 20, 0.1);
  --box-shadow2: 0 4px 20px rgba(231, 53, 53, 0.6);
  --drop-shadow: 0 2px 10px rgba(0, 0, 20, 0.1);
}

html {
  scroll-padding-top: 80px;
}
@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: 48px;
  }
}

.mb0 {
  margin-bottom: 0 !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.p-two-block,
.p-two-block-link,
.p-three-block,
.p-four-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-two-block {
  gap: 0 40px;
}
@media screen and (max-width: 767px) {
  .p-two-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px 0;
  }
}
.p-two-block__text p {
  font-size: 18px;
  line-height: 1.75;
}
@media screen and (max-width: 980px) {
  .p-two-block__text p {
    font-size: 16px;
  }
}

.p-three-block {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-three-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-three-block__box {
  position: relative;
  width: calc((100% - 80px) / 3);
}
@media screen and (max-width: 1280px) {
  .p-three-block__box {
    width: calc((100% - 40px) / 2);
  }
}
@media screen and (max-width: 767px) {
  .p-three-block__box {
    width: 100%;
  }
}

.p-four-block {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
.p-four-block__box {
  position: relative;
  width: calc((100% - 120px) / 4);
}

@media screen and (max-width: 767px) {
  #container {
    padding-bottom: 80px;
  }
}

.lp-section {
  position: relative;
  padding: 60px 0;
}
.lp-section.headline-area {
  padding: 25px 0;
}
.lp-section.headline-area .headline-area__title {
  font-family: var(--noto-font);
  font-weight: bold;
  font-size: 40px;
  color: var(--color-text-secondary);
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 980px) {
  .lp-section.headline-area .headline-area__title {
    font-size: 32px;
  }
}
@media screen and (max-width: 767px) {
  .lp-section.headline-area .headline-area__title {
    font-size: 20px;
  }
}
.lp-section.headline-area .headline-area__title .accent-text {
  color: var(--color-text-accent4);
}
.lp-section__wrap {
  max-width: 1280px;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .lp-section__wrap {
    width: 93%;
  }
}
.lp-section__wrap2 {
  max-width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .lp-section__wrap2 {
    width: 93%;
  }
}

.bold-text {
  font-weight: bold;
}

.bold-text2 {
  font-family: "Ishii Gothic EB";
  font-style: normal;
}

.small-text {
  font-size: 14px;
  line-height: 1.5;
}

.small-text2 {
  font-size: 12px;
  line-height: 1.5;
}

.large-text {
  font-size: 20px;
  line-height: 1.5;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

.text-oragne {
  color: var(--color-text-accent2);
}

.text-blue {
  color: var(--color-text-accent3);
}

.bg-border {
  background: var(--color-bg-secondary) url("../images/lp/hospital-relations2025/bg_border.svg") repeat left -20px;
}

.bg-blue {
  background: var(--color-bg-accent);
}

.underline-red {
  text-decoration: underline;
  text-underline-offset: 10px;
  text-decoration-thickness: 4px;
  text-decoration-color: var(--palette-red);
}
@media screen and (max-width: 767px) {
  .underline-red {
    text-underline-offset: 6px;
  }
}

.underline-yellow {
  text-decoration: underline;
  text-underline-offset: 10px;
  text-decoration-thickness: 4px;
  text-decoration-color: rgba(var(--palette-yellow2-rgb), 0.5);
}
@media screen and (max-width: 767px) {
  .underline-yellow {
    text-underline-offset: 6px;
  }
}

.underline-blue {
  text-decoration: underline;
  text-underline-offset: 10px;
  text-decoration-thickness: 4px;
  text-decoration-color: rgba(var(--palette-blue-rgb), 0.5);
}
@media screen and (max-width: 767px) {
  .underline-blue {
    text-underline-offset: 6px;
  }
}

p a {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
p a:hover {
  color: var(--color-text-accent3);
}
p a[target=_blank]::after {
  display: inline-block;
  content: "";
  width: 16px;
  height: 16px;
  margin: 0 8px;
  background: url("../images/lp/hospital-relations2025/ico_blank.svg") no-repeat top right/contain;
  vertical-align: -2px;
}

.asterisk-list {
  font-size: 14px;
  line-height: 1.5;
}
.asterisk-list li {
  position: relative;
  padding-left: 1.5em;
}
.asterisk-list li::before {
  content: "※";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

.lp-header .logo-hospital-relations {
  max-width: 284px;
}
@media screen and (max-width: 767px) {
  .lp-header .logo-hospital-relations {
    max-width: 200px;
  }
}

#lp-mv {
  position: relative;
}
#lp-mv img {
  width: 100%;
}

.lp-nav-list {
  font-family: var(--noto-font);
  font-weight: bold;
  font-size: 20px;
  position: absolute;
  bottom: 40px;
  left: 50%;
  translate: -50% 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 40px;
  min-width: 800px;
  padding: 12px 24px;
  background: var(--color-bg-primary);
  border-radius: var(--pill-radius);
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  line-height: 1.5;
  z-index: 1;
}
@media screen and (max-width: 980px) {
  .lp-nav-list {
    font-size: 16px;
    min-width: auto;
    width: 93%;
    gap: 8px 12px;
  }
}
@media screen and (max-width: 767px) {
  .lp-nav-list {
    font-size: 14px;
    bottom: -37px;
  }
}
.lp-nav-list__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 8px;
}
@media screen and (max-width: 767px) {
  .lp-nav-list__item a {
    gap: 0 4px;
  }
}
.lp-nav-list__item a:hover {
  color: var(--color-text-accent3);
}
.lp-nav-list__item a::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background: var(--color-bg-accent2);
  border-radius: 100%;
}

.lp-section-title {
  font-family: var(--noto-font);
  font-weight: bold;
  font-size: 56px;
  margin-bottom: 40px;
  line-height: 1.3;
  text-align: center;
}
@media screen and (max-width: 980px) {
  .lp-section-title {
    font-size: 36px;
  }
}
@media screen and (max-width: 767px) {
  .lp-section-title {
    font-size: 22px;
  }
}
.lp-section-title .accent-text {
  font-size: 68px;
}
@media screen and (max-width: 980px) {
  .lp-section-title .accent-text {
    font-size: 48px;
  }
}
@media screen and (max-width: 767px) {
  .lp-section-title .accent-text {
    font-size: 24px;
  }
}

.lp-section-title2 {
  font-family: var(--noto-font);
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px 0;
  margin-bottom: 40px;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 980px) {
  .lp-section-title2 {
    gap: 20px 0;
    margin-bottom: 20px;
  }
}
.lp-section-title2__balloon {
  position: relative;
  font-size: 40px;
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 12px 40px;
  background: var(--color-bg-primary);
  border: 2px solid var(--color-border-accent);
  border-radius: var(--pill-radius);
}
@media screen and (max-width: 980px) {
  .lp-section-title2__balloon {
    font-size: 20px;
    padding: 12px 16px;
  }
}
@media screen and (max-width: 767px) {
  .lp-section-title2__balloon {
    font-size: 16px;
  }
}
.lp-section-title2__balloon::before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -20px;
  left: 50%;
  translate: -50% 0;
  width: 10px;
  height: 30px;
  background: var(--color-bg-primary);
  rotate: 45deg;
  z-index: 0;
}
@media screen and (max-width: 980px) {
  .lp-section-title2__balloon::before {
    bottom: -12px;
    height: 20px;
  }
}
.lp-section-title2__balloon::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -26px;
  left: calc(50% + 2px);
  translate: -50% 0;
  width: 2px;
  height: 30px;
  background: var(--color-border-accent);
  rotate: 45deg;
  z-index: 1;
}
@media screen and (max-width: 980px) {
  .lp-section-title2__balloon::after {
    bottom: -18px;
    height: 20px;
  }
}
.lp-section-title2__balloon .accent {
  font-size: 40px;
}
@media screen and (max-width: 980px) {
  .lp-section-title2__balloon .accent {
    font-size: 20px;
  }
}
.lp-section-title2__title {
  font-size: 68px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px 0;
  line-height: 1.25;
}
@media screen and (max-width: 980px) {
  .lp-section-title2__title {
    font-size: 48px;
  }
}
@media screen and (max-width: 767px) {
  .lp-section-title2__title {
    font-size: 28px;
  }
}
.lp-section-title2__text {
  font-family: "Ishii Gothic B";
  font-style: normal;
  font-size: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 20px;
}
@media screen and (max-width: 980px) {
  .lp-section-title2__text {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .lp-section-title2__text {
    gap: 0 10px;
  }
}
.lp-section-title2__text::before, .lp-section-title2__text::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 40px;
  border-left: 2px solid var(--color-border-primary);
}
@media screen and (max-width: 980px) {
  .lp-section-title2__text::before, .lp-section-title2__text::after {
    height: 20px;
  }
}
.lp-section-title2__text::before {
  rotate: -30deg;
}
.lp-section-title2__text::after {
  rotate: 30deg;
}

.lp-section-title3 {
  font-family: var(--noto-font);
  font-weight: bold;
  font-size: 68px;
  margin-bottom: 40px;
  text-align: center;
  line-height: 1.2;
}
@media screen and (max-width: 980px) {
  .lp-section-title3 {
    font-size: 48px;
  }
}
@media screen and (max-width: 767px) {
  .lp-section-title3 {
    font-size: 28px;
    margin-bottom: 30px;
  }
}
.lp-section-title3 .underline-orange {
  text-underline-offset: 8px;
}

.lp-section-title4 {
  font-family: var(--noto-font);
  font-weight: bold;
  font-size: 32px;
  margin-bottom: 40px;
  text-align: center;
  line-height: 1.5;
}
@media screen and (max-width: 980px) {
  .lp-section-title4 {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .lp-section-title4 {
    font-size: 18px;
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  .lp-section-title4 br {
    display: none;
  }
}

#lp-intro .large-text {
  font-weight: bold;
  line-height: 1.75;
  text-align: center;
}
@media screen and (max-width: 980px) {
  #lp-intro .large-text {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  #lp-intro .large-text {
    font-size: 16px;
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  #lp-intro .large-text br {
    display: none;
  }
}

#lp-point .lp-section-title2__title br,
#lp-service .lp-section-title2__title br {
  display: none;
}
@media screen and (max-width: 767px) {
  #lp-point .lp-section-title2__title br,
  #lp-service .lp-section-title2__title br {
    display: block;
  }
}
#lp-point .p-four-block,
#lp-service .p-four-block {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1280px) {
  #lp-point .point-list,
  #lp-service .point-list {
    gap: 20px;
  }
}
#lp-point .point-list__item,
#lp-service .point-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px 0;
}
@media screen and (max-width: 1280px) {
  #lp-point .point-list__item,
  #lp-service .point-list__item {
    width: calc((100% - 20px) / 2);
  }
}
#lp-point .point-list__item:nth-child(odd) .point-list__item-number,
#lp-service .point-list__item:nth-child(odd) .point-list__item-number {
  color: var(--color-text-accent2);
}
#lp-point .point-list__item:nth-child(even) .point-list__item-number,
#lp-service .point-list__item:nth-child(even) .point-list__item-number {
  color: var(--color-text-accent3);
}
#lp-point .point-list__item-number,
#lp-service .point-list__item-number {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-weight: 500;
  font-size: 68px;
  position: relative;
  margin-left: 10px;
  margin-bottom: -40px;
  z-index: 1;
}
@media screen and (max-width: 980px) {
  #lp-point .point-list__item-number,
  #lp-service .point-list__item-number {
    font-size: 48px;
    margin-bottom: -20px;
  }
}
#lp-point .point-list__item-image,
#lp-service .point-list__item-image {
  position: relative;
  z-index: 0;
}
#lp-point .point-list__item-text,
#lp-service .point-list__item-text {
  font-family: var(--noto-font);
  font-weight: bold;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 980px) {
  #lp-point .point-list__item-text,
  #lp-service .point-list__item-text {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  #lp-point .point-list__item-text,
  #lp-service .point-list__item-text {
    font-size: 14px;
  }
}

.lp-trouble {
  background: var(--color-bg-secondary2);
}
.lp-trouble .p-two-block {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 40px;
}
.lp-trouble .p-two-block__image {
  max-width: 360px;
}
@media screen and (max-width: 767px) {
  .lp-trouble .p-two-block__image {
    max-width: 80%;
    margin: 0 auto;
  }
}
.lp-trouble .check-list {
  font-weight: bold;
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px 0;
  line-height: 1.5;
}
@media screen and (max-width: 980px) {
  .lp-trouble .check-list {
    font-size: 16px;
  }
}
.lp-trouble .check-list li {
  position: relative;
  padding-left: 1.5em;
}
.lp-trouble .check-list li::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0.4em;
  left: 0;
  width: 20px;
  height: 15px;
  background: url("../images/lp/hospital-relations2025/ico_check.svg") no-repeat center center/contain;
}

.solution-area {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 32px;
  background: var(--color-bg-grad);
  border-radius: var(--base-radius4);
}
@media screen and (max-width: 767px) {
  .solution-area {
    padding: 20px;
    border-radius: var(--base-radius3);
  }
}
.solution-area::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 16px;
  left: 16px;
  width: 126px;
  height: 126px;
  background: url("../images/lp/hospital-relations2025/ico_check-circle.svg") no-repeat top left/100%;
}
@media screen and (max-width: 767px) {
  .solution-area::after {
    width: 80px;
    height: 80px;
  }
}
.solution-area__title {
  font-family: var(--noto-font);
  font-weight: bold;
  font-size: 40px;
  color: var(--color-text-secondary);
  line-height: 1.5;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 980px) {
  .solution-area__title {
    font-size: 32px;
  }
}
@media screen and (max-width: 767px) {
  .solution-area__title {
    font-size: 20px;
  }
}

#lp-seo .lp-section-title {
  margin-bottom: 30px;
}
#lp-seo .small-text {
  text-align: center;
}
@media screen and (max-width: 767px) {
  #lp-seo .small-text {
    text-align: left;
  }
}

#lp-meo {
  padding-bottom: 0;
}
#lp-meo .lp-section-title2 {
  margin: 0 auto 10px;
}
@media screen and (max-width: 980px) {
  #lp-meo .lp-section-title2 {
    margin: 0 auto 20px;
  }
}
#lp-meo .p-two-block {
  gap: 0 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 980px) {
  #lp-meo .p-two-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px 0;
  }
}
#lp-meo .p-two-block__text {
  position: relative;
  width: calc(70% - 20px);
  padding: 32px 20px;
  background: transparent;
  border-radius: var(--base-radius4);
  -webkit-filter: drop-shadow(var(--drop-shadow));
          filter: drop-shadow(var(--drop-shadow));
  z-index: 0;
}
@media screen and (max-width: 980px) {
  #lp-meo .p-two-block__text {
    width: 100%;
  }
}
#lp-meo .p-two-block__text::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-bg-primary);
  border-radius: var(--base-radius4);
  z-index: -1;
}
#lp-meo .p-two-block__text::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -50px;
  width: 55px;
  height: 40px;
  background: var(--color-bg-primary);
  clip-path: polygon(0 0, 0 100%, 100% 0);
  translate: 0 -50%;
  z-index: -1;
}
@media screen and (max-width: 980px) {
  #lp-meo .p-two-block__text::after {
    top: initial;
    bottom: -40px;
    right: initial;
    left: 50%;
    width: 35px;
    translate: -50% 0;
  }
}
#lp-meo .p-two-block__text h3 {
  font-family: var(--noto-font);
  font-weight: bold;
  font-size: 56px;
  margin-bottom: 10px;
  color: var(--color-text-accent3);
  line-height: 1.3;
  text-align: center;
}
@media screen and (max-width: 1280px) {
  #lp-meo .p-two-block__text h3 {
    font-size: 40px;
  }
}
@media screen and (max-width: 767px) {
  #lp-meo .p-two-block__text h3 {
    font-size: 22px;
  }
}
#lp-meo .p-two-block__image {
  position: relative;
  min-width: 400px;
  width: 30%;
  -webkit-filter: drop-shadow(var(--drop-shadow));
          filter: drop-shadow(var(--drop-shadow));
  z-index: 1;
}
@media screen and (max-width: 980px) {
  #lp-meo .p-two-block__image {
    max-width: 400px;
    min-width: auto;
    width: 100%;
  }
}
@media screen and (max-width: 375px) {
  #lp-meo .p-two-block__image {
    max-width: 280px;
  }
}
#lp-meo .lp-meo-text {
  font-family: var(--noto-font);
  font-weight: bold;
  font-size: 32px;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 980px) {
  #lp-meo .lp-meo-text {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  #lp-meo .lp-meo-text {
    font-size: 18px;
  }
}

#lp-meo-point {
  padding: 40px 0 0;
}
#lp-meo-point .p-two-block {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  #lp-meo-point .p-two-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px 0;
  }
}
#lp-meo-point .p-two-block__text {
  width: 50%;
  padding: 40px;
  background: var(--color-bg-secondary);
  border-radius: var(--base-radius2);
}
@media screen and (max-width: 767px) {
  #lp-meo-point .p-two-block__text {
    width: 100%;
    padding: 20px;
  }
}
#lp-meo-point .lp-meo-point-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 8px;
  font-family: var(--noto-font);
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 10px;
  line-height: 1.5;
}
@media screen and (max-width: 980px) {
  #lp-meo-point .lp-meo-point-title {
    font-size: 20px;
  }
}
#lp-meo-point .lp-meo-point-title::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
}
@media screen and (max-width: 980px) {
  #lp-meo-point .lp-meo-point-title::before {
    width: 20px;
    height: 20px;
  }
}
#lp-meo-point .lp-meo-point-title.pin::before {
  background: url("../images/lp/hospital-relations2025/ico_pin.svg") no-repeat center center/contain;
}
#lp-meo-point .lp-meo-point-title.map::before {
  background: url("../images/lp/hospital-relations2025/ico_map.svg") no-repeat center center/contain;
}

#lp-voice {
  padding-bottom: 0;
}
#lp-voice .splide__track {
  overflow-x: hidden;
  overflow-y: visible;
  padding: 20px 0;
}
#lp-voice .splide__list {
  padding: 0 20px;
}

.voice__item {
  padding: 40px;
  background: var(--color-bg-primary);
  border-radius: var(--base-radius3);
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
}
@media screen and (max-width: 767px) {
  .voice__item {
    padding: 20px 20px 28px;
  }
}
.voice__item-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 20px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border-accent2);
}
@media screen and (max-width: 767px) {
  .voice__item-title {
    gap: 0 12px;
  }
}
.voice__item-title-icon img {
  min-width: 80px;
  width: 80px;
  height: 80px;
  border-radius: 100%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .voice__item-title-icon img {
    min-width: 60px;
    width: 60px;
    height: 60px;
  }
}
.voice__item-title-text h3 {
  font-family: var(--noto-font);
  font-weight: bold;
  font-size: 24px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .voice__item-title-text h3 {
    font-size: 16px;
  }
}
.voice__item-title-text p {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .voice__item-title-text p {
    font-size: 14px;
  }
}
.voice__item-text {
  font-size: 18px;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .voice__item-text {
    font-size: 14px;
  }
}
.voice__item .browser-shot img {
  width: 100%;
  margin-bottom: 20px;
  border-radius: var(--base-radius2);
  overflow: hidden;
  border: 1px solid var(--palette-gray);
}

#lp-case {
  padding: 60px 0 0;
}
#lp-case #slider2,
#lp-case #slider3 {
  margin-bottom: 40px;
}

.case img {
  margin-bottom: 12px;
  border: 1px solid var(--color-border-secondary);
  border-radius: var(--base-radius);
  overflow: hidden;
}
.case__item-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px 0;
}
.case__item-title h3 {
  font-family: var(--noto-font);
  font-weight: bold;
  font-size: 18px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .case__item-title h3 {
    font-size: 16px;
  }
}
.case__item-title p {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .case__item-title p {
    font-size: 14px;
  }
}

#lp-support .lp-section-title2__title br {
  display: none;
}
@media screen and (max-width: 767px) {
  #lp-support .lp-section-title2__title br {
    display: block;
  }
}
#lp-support .step-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 60px;
}
#lp-support .step-list__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 20px;
  padding: 10px 40px;
  background: var(--color-bg-primary);
  border-radius: var(--base-radius);
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
}
@media screen and (max-width: 980px) {
  #lp-support .step-list__item {
    padding: 10px 12px;
  }
}
@media screen and (max-width: 767px) {
  #lp-support .step-list__item {
    gap: 0 12px;
  }
}
#lp-support .step-list__item:nth-child(odd) .step-list__item-number {
  color: var(--color-text-accent2);
}
#lp-support .step-list__item:nth-child(even) .step-list__item-number {
  color: var(--color-text-accent3);
}
#lp-support .step-list__item-number {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-weight: 500;
  font-size: 68px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
}
@media screen and (max-width: 980px) {
  #lp-support .step-list__item-number {
    font-size: 48px;
  }
}
#lp-support .step-list__item-number::before {
  position: relative;
  font-size: 18px;
  content: "Step";
  display: inline-block;
  margin-right: -18px;
  padding: 4px;
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  text-transform: uppercase;
  z-index: 1;
}
@media screen and (max-width: 980px) {
  #lp-support .step-list__item-number::before {
    font-size: 14px;
    padding: 2px;
  }
}
#lp-support .step-list__item-text {
  font-family: var(--noto-font);
  font-weight: bold;
  font-size: 28px;
  line-height: 1.5;
}
@media screen and (max-width: 980px) {
  #lp-support .step-list__item-text {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  #lp-support .step-list__item-text {
    font-size: 16px;
  }
}
#lp-support .step-list__item-text .small-text {
  font-size: 18px;
}
@media screen and (max-width: 980px) {
  #lp-support .step-list__item-text .small-text {
    display: block;
    font-size: 14px;
  }
}
#lp-support .step-list__item + .step-list__item::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 50%;
  top: -12px;
  translate: -50% 0;
  width: 33px;
  height: 15px;
  background-image: url("../images/lp/hospital-relations2025/ico_arrow-bottom.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

@media screen and (max-width: 1280px) {
  #lp-pricing .lp-section__wrap2 {
    width: calc(93% + 16px);
  }
}
#lp-pricing .lp-pricing-table {
  width: 100%;
  margin: 0 auto 12px;
  border-spacing: 8px;
  line-height: 1.5;
}
#lp-pricing .lp-pricing-table th,
#lp-pricing .lp-pricing-table td {
  font-family: var(--noto-font);
  font-weight: bold;
  font-size: 20px;
  padding: 15px 20px;
  vertical-align: middle;
}
@media screen and (max-width: 980px) {
  #lp-pricing .lp-pricing-table th,
  #lp-pricing .lp-pricing-table td {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  #lp-pricing .lp-pricing-table th,
  #lp-pricing .lp-pricing-table td {
    font-size: 12px;
    padding: 8px 12px;
  }
}
#lp-pricing .lp-pricing-table th {
  background: var(--color-bg-accent);
  border-radius: var(--base-radius);
  color: var(--color-text-secondary);
}
@media screen and (max-width: 767px) {
  #lp-pricing .lp-pricing-table th {
    line-height: 1.2;
  }
}
#lp-pricing .lp-pricing-table td {
  background: var(--color-bg-primary);
  border: 1px solid var(--color-border-secondary);
  border-radius: var(--base-radius);
  text-align: right;
}
#lp-pricing .lp-pricing-table .price {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-weight: bold;
  font-size: 36px;
  font-weight: bold;
}
@media screen and (max-width: 980px) {
  #lp-pricing .lp-pricing-table .price {
    font-size: 26px;
  }
}
@media screen and (max-width: 767px) {
  #lp-pricing .lp-pricing-table .price {
    font-size: 18px;
  }
}
#lp-pricing .asterisk-list {
  margin: 0 8px 20px;
}

#lp-faq {
  padding-top: 60px;
}
#lp-faq .faq-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px 0;
}
#lp-faq .faq-list__item {
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--base-radius);
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
}
@media screen and (max-width: 767px) {
  #lp-faq .faq-list__item {
    padding: 12px;
  }
}
#lp-faq .faq-list__item-title {
  font-family: var(--noto-font);
  font-weight: bold;
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 8px;
  margin-bottom: 4px;
  line-height: 1.5;
}
@media screen and (max-width: 980px) {
  #lp-faq .faq-list__item-title {
    font-size: 16px;
    gap: 0 4px;
  }
}
#lp-faq .faq-list__item-title::before {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-weight: 500;
  font-size: 28px;
  content: "Q.";
  display: inline-block;
  color: var(--color-text-accent2);
}
@media screen and (max-width: 980px) {
  #lp-faq .faq-list__item-title::before {
    font-size: 22px;
  }
}
#lp-faq .faq-list__item-title span {
  margin-top: 7px;
}
#lp-faq .faq-list__item-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 8px;
  padding-left: 40px;
}
@media screen and (max-width: 980px) {
  #lp-faq .faq-list__item-text {
    padding-left: 24px;
    gap: 0 4px;
  }
}
#lp-faq .faq-list__item-text::before {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-weight: 500;
  font-size: 28px;
  content: "A.";
  display: inline-block;
  color: var(--color-text-accent3);
}
@media screen and (max-width: 980px) {
  #lp-faq .faq-list__item-text::before {
    font-size: 22px;
  }
}
#lp-faq .faq-list__item-text p {
  line-height: 1.75;
}
@media screen and (max-width: 980px) {
  #lp-faq .faq-list__item-text p {
    line-height: 1.5;
  }
}

/* Splide */
.splide__pagination {
  position: relative;
  top: initial;
  bottom: initial;
  right: initial;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 12px;
  margin: 20px auto 0;
  padding: 0;
  z-index: 1;
}
.splide__pagination__page {
  display: inline-block;
  position: relative;
  width: 12px;
  height: 12px;
  margin: 0;
  padding: 0;
  background: var(--color-border-secondary);
  opacity: 1;
}
.splide__pagination__page.is-active {
  background: var(--color-bg-accent2);
  -webkit-transform: scale(1);
          transform: scale(1);
}

/* #slider1 arrows */
#slider1 {
  position: relative;
}
#slider1 .splide__arrows {
  pointer-events: none;
}
#slider1 .splide__arrow {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 56px;
  height: 56px;
  background: var(--color-bg-primary);
  border: 1px solid var(--color-border-secondary2);
  border-radius: 50%;
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}
#slider1 .splide__arrow svg {
  display: none;
}
#slider1 .splide__arrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  background-image: url("../images/lp/hospital-relations2025/ico_arrow-right_2.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
#slider1 .splide__arrow--prev {
  left: 40px;
}
@media screen and (max-width: 767px) {
  #slider1 .splide__arrow--prev {
    left: 10px;
  }
}
#slider1 .splide__arrow--prev::before {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
#slider1 .splide__arrow--next {
  right: 40px;
}
@media screen and (max-width: 767px) {
  #slider1 .splide__arrow--next {
    right: 10px;
  }
}
#slider1 .splide__arrow--next::before {
  -webkit-transform: none;
          transform: none;
}

.c-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-btn a {
  font-family: var(--noto-font);
  font-weight: bold;
  position: relative;
  font-size: 36px;
  display: block;
  min-width: 480px;
  padding: 16px 20px;
  background: var(--color-bg-grad);
  color: var(--color-text-secondary);
  text-align: center;
  border-radius: var(--pill-radius);
  -webkit-box-shadow: var(--box-shadow2);
          box-shadow: var(--box-shadow2);
  line-height: 1.2;
}
@media screen and (max-width: 980px) {
  .c-btn a {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .c-btn a {
    font-size: 20px;
    min-width: auto;
    width: 100%;
  }
}
.c-btn a::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 12px;
  translate: 0 -50%;
  width: 52px;
  height: 52px;
  background-image: url("../images/lp/hospital-relations2025/ico_arrow-right-circle_01.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 980px) {
  .c-btn a::after {
    width: 40px;
    height: 40px;
  }
}
.c-btn.white a {
  background: var(--color-bg-primary);
  color: var(--color-text-accent2);
}
.c-btn.white a::after {
  background-image: url("../images/lp/hospital-relations2025/ico_arrow-right-circle_02.svg");
}
.c-btn.large a {
  min-width: 560px;
}
@media screen and (max-width: 767px) {
  .c-btn.large a {
    min-width: auto;
  }
}
.c-btn.fixed {
  position: fixed;
  bottom: 40px;
  left: 50%;
  translate: -50% 0;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .c-btn.fixed {
    min-width: auto;
    width: 93%;
    bottom: 10px;
  }
}

#lp-form {
  background: var(--color-bg-secondary2);
}
#lp-form .lp-form-text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 60px auto 0;
}
#lp-form .c-table-form {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  line-height: 1.5;
}
#lp-form .c-table-form th,
#lp-form .c-table-form td {
  font-size: 18px;
  padding: 14px 0;
  text-align: left;
  vertical-align: middle;
}
@media screen and (max-width: 980px) {
  #lp-form .c-table-form th,
  #lp-form .c-table-form td {
    font-size: 16px;
    padding: 7px 0;
  }
}
#lp-form .c-table-form th {
  font-weight: bold;
  width: 28%;
}
@media screen and (max-width: 980px) {
  #lp-form .c-table-form th {
    display: block;
    width: 100%;
  }
}
#lp-form .c-table-form th .label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 4px;
}
#lp-form .c-table-form th .c-badge {
  margin-top: 2px;
}
#lp-form .c-table-form td {
  width: 72%;
}
@media screen and (max-width: 980px) {
  #lp-form .c-table-form td {
    display: block;
    width: 100%;
  }
}
#lp-form p:not(.small-text2) {
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width: 980px) {
  #lp-form p:not(.small-text2) {
    font-size: 16px;
  }
}

.c-badge {
  font-size: 14px;
  font-weight: bold;
  display: inline-block;
  padding: 4px;
  background: var(--color-bg-accent3);
  color: var(--color-text-accent2);
  text-align: center;
  line-height: 1;
}

input[type=button],
input[type=text],
input[type=email],
input[type=submit],
textarea {
  font-size: 18px;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: var(--color-text-primary);
}
@media screen and (max-width: 980px) {
  input[type=button],
  input[type=text],
  input[type=email],
  input[type=submit],
  textarea {
    font-size: 16px;
  }
}

:focus-visible {
  outline: var(--color-border-accent) auto 1px;
}

input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=button]),
textarea {
  font-family: var(--base-font);
  font-weight: normal;
  display: block;
  width: 100%;
  padding: 16px 20px;
  background: var(--color-bg-primary);
  border: 1px solid var(--color-border-secondary2);
  border-radius: var(--base-radius);
}

textarea {
  max-height: 150px;
  resize: vertical;
  line-height: 1.5;
}

select {
  font-family: var(--base-font);
  font-size: 18px;
  display: block;
  width: 100%;
  min-height: 58px;
  padding: 16px 20px;
  background: var(--color-bg-primary) url("../images/lp/echo2025/ico_select-arrow.svg") right 50% no-repeat;
  background-size: 50px, 100%;
  border: 1px solid var(--color-border-secondary2);
  border-radius: var(--base-radius);
  color: var(--color-text-primary);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
@media screen and (max-width: 980px) {
  select {
    font-size: 16px;
  }
}

.kiyaku-checkbox {
  text-align: center;
}

input[type=submit].wpcf7-submit {
  position: relative;
  font-family: var(--noto-font);
  font-weight: bold;
  font-size: 36px;
  display: block;
  min-width: 480px;
  margin: 40px auto 0;
  padding: 16px 20px;
  background: var(--color-bg-grad);
  color: var(--color-text-secondary);
  text-align: center;
  border-radius: var(--pill-radius);
  -webkit-box-shadow: var(--box-shadow2);
          box-shadow: var(--box-shadow2);
}
@media screen and (max-width: 980px) {
  input[type=submit].wpcf7-submit {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  input[type=submit].wpcf7-submit {
    font-size: 20px;
    min-width: auto;
    width: 100%;
  }
}
input[type=submit].wpcf7-submit:focus-visible {
  outline-offset: 5px;
}

.wpcf7-form.hide_error_message .wpcf7-not-valid-tip {
  display: none;
}

.wpcf7-spinner {
  display: none !important;
}

.grecaptcha-badge {
  visibility: hidden;
}
/*# sourceMappingURL=lp-hospital-relations-2025_style.css.map */