@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

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

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

:root {
  --color-cobalt: #002A9A;
  --color-green-line: #00B900;
  --color-white: #fff;
  --color-black: #000;
  --section-gap-pc: 120px;
  --section-gap-sp: 30px;
  --padding-pc: 40px;
  --padding-sp: 20px;
  --easing: cubic-bezier(.4, .4, 0, 1);
  --z-base: 0;
  --z-float: 10;
  --z-sticky: 100;
  --z-modal: 200;
  --z-toast: 300;
  --color-error: #b20000;
  --color-success: #1a7d3a;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: normal;
  background-color: #fff;
  line-height: 180%;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  position: relative;
  overflow-x: hidden;
  color: #000;
}
@media (min-width: 960px) {
  body {
    /*min-width: 1100px;*/
  }
}
@media (max-width: 959.89px) {
  body {
    padding-top: 60px;
  }
}

@media (max-width: 959.89px) {
  body.is-home {
    padding-top: 0;
  }
}

main {
  padding-bottom: 120px;
}
@media (max-width: 959.89px) {
  main {
    padding-bottom: 60px;
  }
}

main.--no-pb {
  padding-bottom: 0;
}

body.is-fixed {
  overflow: hidden;
}

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

.c-inner {
  max-width: 1230px;
  padding-left: var(--padding-pc);
  padding-right: var(--padding-pc);
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 959.89px) {
  .c-inner {
    max-width: 600px;
    padding-left: var(--padding-sp);
    padding-right: var(--padding-sp);
  }
}

.c-hero {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}
@media (max-width: 959.89px) {
  .c-hero {
    height: 200px;
  }
}

.c-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 42, 154, 0.8);
}

.c-hero--center {
  height: auto;
  padding: 0 60px;
}
@media (max-width: 959.89px) {
  .c-hero--center {
    padding: 20px 15px 0;
  }
}
.c-hero--center .c-hero__overlay {
  background-color: rgba(0, 0, 0, 0.3);
}
.c-hero--center .c-hero__wrapper {
  align-items: flex-start;
  text-align: left;
  padding-left: 60px;
  margin-bottom: 30px;
  padding-top: 30px;
}
@media (max-width: 959.89px) {
  .c-hero--center .c-hero__wrapper {
    padding-left: 15px;
    margin-bottom: 15px;
  }
}
.c-hero--center .c-hero__bg {
  position: relative;
  top: auto;
  left: auto;
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
}
@media (max-width: 959.89px) {
  .c-hero--center .c-hero__bg {
    height: 200px;
  }
}
.c-hero--center .c-hero__en {
  color: #002A9A;
}
.c-hero--center .c-hero__ttl {
  color: #000;
}

.c-hero__shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-color: #1239A2;
  clip-path: polygon(50% 0, 100% 0, 100% 100%, 0 100%);
}

.c-hero__wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  height: 100%;
  max-width: 1230px;
  margin: 0 auto;
  padding-left: 60px;
}
@media (max-width: 959.89px) {
  .c-hero__wrapper {
    padding-left: var(--padding-sp);
    padding-right: var(--padding-sp);
  }
}

.c-hero__en {
  font-family: "Inter", sans-serif;
  font-size: 1.7rem;
  font-weight: 500;
  color: #8D9CC4;
  letter-spacing: 0.05em;
  line-height: 0.8;
  margin-bottom: 8px;
}
@media (max-width: 959.89px) {
  .c-hero__en {
    font-size: 1.3rem;
  }
}

.c-hero__ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 4.8rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.03em;
  line-height: 1.4;
}
@media (max-width: 959.89px) {
  .c-hero__ttl {
    font-size: 2.8rem;
  }
}

@media (max-width: 959.89px) {
  .c-hero.--careplan .c-hero__ttl {
    font-size: 2.2rem;
  }
}

.e-hero {
  width: 100%;
  overflow: hidden;
}

.e-hero__inner {
  position: relative;
  width: 100%;
  height: 700px;
}
@media (max-width: 959.89px) {
  .e-hero__inner {
    height: 350px;
  }
}

.e-hero__inner__copy {
  position: absolute;
  left: 50px;
  bottom: 100px;
  z-index: 2;
}
@media (max-width: 959.89px) {
  .e-hero__inner__copy {
    left: 20px;
    bottom: 40px;
  }
}

.e-hero__inner__copy__ttl {
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.05em;
  color: #FFF;
}
@media (max-width: 959.89px) {
  .e-hero__inner__copy__ttl {
    font-size: 2.4rem;
  }
}

.e-hero__inner__copy__desc {
  font-size: 2.2rem;
  font-weight: 500;
  color: #FFF;
  margin-top: 10px;
}
@media (max-width: 959.89px) {
  .e-hero__inner__copy__desc {
    font-size: 1.6rem;
  }
}

.e-hero__inner__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
}
@media (max-width: 959.89px) {
  .e-hero__inner__overlay {
    width: 100%;
    height: 100%;
  }
}

.e-hero__inner__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.e-hero__inner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-index-endoscopy__card.--dir {
  width: min(90%, 1150px);
  margin-inline: auto;
  box-shadow: none;
  border: none;
  padding: 50px 0 0 0;
}
@media (max-width: 959.89px) {
  .p-index-endoscopy__card.--dir {
    margin-bottom: 30px;
  }
}

.p-index-endoscopy__card.--dir h3 {
  text-align: center;
  font-size: 3.2rem;
  margin: 0 0 30px 0;
}
@media (max-width: 959.89px) {
  .p-index-endoscopy__card.--dir h3 {
    font-size: 2.4rem;
    justify-content: center;
    margin: 0 0 20px 0;
  }
}

.p-index-endoscopy__card.--dir .p-index-endoscopy__card__links {
  grid-template-columns: repeat(12, 1fr);
}
@media (max-width: 959.89px) {
  .p-index-endoscopy__card.--dir .p-index-endoscopy__card__links {
    grid-template-columns: 1fr;
    display: grid;
  }
}

.p-index-endoscopy__card.--dir .p-index-endoscopy__card__link {
  grid-column: span 3;
}
@media (max-width: 959.89px) {
  .p-index-endoscopy__card.--dir .p-index-endoscopy__card__link {
    grid-column: span 1;
  }
}

.c-breadcrumb {
  background-color: #fff;
  padding-top: 15px;
  padding-bottom: 15px;
}
@media (max-width: 959.89px) {
  .c-breadcrumb {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.c-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin: 0 auto;
  padding-left: 60px;
}
@media (max-width: 959.89px) {
  .c-breadcrumb__list {
    display: block;
    padding-left: var(--padding-sp);
    padding-right: var(--padding-sp);
  }
}

.c-breadcrumb__item {
  display: flex;
  align-items: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.3rem;
  color: #000;
  letter-spacing: 0.03em;
}
@media (max-width: 959.89px) {
  .c-breadcrumb__item {
    display: inline;
  }
}

.c-breadcrumb__item + .c-breadcrumb__item::before {
  content: "/";
  margin-left: 8px;
  margin-right: 8px;
  color: #000;
}
@media (max-width: 959.89px) {
  .c-breadcrumb__item + .c-breadcrumb__item::before {
    margin-left: 4px;
    margin-right: 4px;
  }
}

.c-breadcrumb__link {
  color: #000;
  text-decoration: none;
}
@media (min-width: 960px) {
  .c-breadcrumb__link:hover {
    text-decoration: underline;
  }
}

.c-ttl {
  margin-bottom: 50px;
}
@media (max-width: 959.89px) {
  .c-ttl {
    margin-bottom: 30px;
  }
}

.c-ttl.--center {
  text-align: center;
}
.c-ttl.--center .en {
  color: #ed712f;
}
.c-ttl.--center .en::after {
  content: "";
  display: block;
  width: 50px;
  height: 5px;
  background-color: #ed712f;
  margin: 25px auto 0;
}
@media (max-width: 959.89px) {
  .c-ttl.--center .en::after {
    margin-top: 16px;
  }
}

.c-ttl .en {
  font-family: "Inter", sans-serif;
  font-size: 1.7rem;
  font-weight: 500;
  color: #002A9A;
  letter-spacing: 0.05em;
  line-height: 0.8;
  margin-bottom: 25px;
}
@media (max-width: 959.89px) {
  .c-ttl .en {
    margin-bottom: 16px;
  }
}

.c-ttl .ja {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 4.2rem;
  font-weight: 800;
  color: #002a9a;
  line-height: 130%;
}
@media (max-width: 959.89px) {
  .c-ttl .ja {
    font-size: 2.8rem;
  }
}

.c-ttl .ja span {
  display: block;
  font-size: 2.8rem;
  margin-top: 0;
}
@media (max-width: 959.89px) {
  .c-ttl .ja span {
    font-size: 1.8rem;
    margin-top: 0;
  }
}

.c-ttl .label {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
@media (max-width: 959.89px) {
  .c-ttl .label {
    margin-top: 5px;
  }
}
.c-ttl .label span {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  background-color: #002A9A;
  border-radius: 50px;
  padding: 8px 24px;
}
@media (max-width: 959.89px) {
  .c-ttl .label span {
    font-size: 1.3rem;
    padding: 5px 20px;
  }
}

.is-endoscopy {
  padding-bottom: 0;
}
.is-endoscopy .c-ttl .ja span {
  display: block;
  font-size: 2.8rem;
  margin-top: 15px;
}
@media (max-width: 959.89px) {
  .is-endoscopy .c-ttl .ja span {
    font-size: 2rem;
    margin-top: 10px;
  }
}
.is-endoscopy .c-about__body {
  flex-direction: column-reverse;
  gap: 50px;
}
@media (max-width: 959.89px) {
  .is-endoscopy .c-about__body {
    gap: 30px;
  }
}
.is-endoscopy .c-about__img {
  width: 725px;
}
@media (max-width: 959.89px) {
  .is-endoscopy .c-about__img {
    width: 100%;
  }
}
.is-endoscopy .c-point__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 38px;
}
@media (max-width: 959.89px) {
  .is-endoscopy .c-point__list {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.c-about {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 959.89px) {
  .c-about {
    padding-top: var(--section-gap-sp);
    padding-bottom: var(--section-gap-sp);
  }
}

.c-about__body {
  display: flex;
  align-items: center;
  gap: 36px;
}
@media (max-width: 959.89px) {
  .c-about__body {
    flex-direction: column-reverse;
  }
}

.c-about__text {
  flex: 1;
}

.c-about__text p + p {
  margin-top: 16px;
}

.c-about__text p.--center {
  text-align: center;
}
@media (max-width: 959.89px) {
  .c-about__text p.--center {
    text-align: left;
  }
  .c-about__text p.--center br {
    display: none;
  }
}

.c-about__note {
  font-size: 2.2rem;
  font-weight: 600;
  color: #002A9A;
  text-align: center;
  line-height: 35px;
  margin-top: 40px !important;
}
@media (max-width: 959.89px) {
  .c-about__note {
    font-size: 1.8rem;
    margin-top: 25px !important;
  }
}

.c-about__link {
  display: block;
  width: fit-content;
  margin: 30px auto 0;
  font-size: 1.8rem;
  font-weight: 600;
  color: #002A9A;
  text-decoration: none;
  border: 1px solid #002A9A;
  padding: 15px 50px;
  border-radius: 100px;
  position: relative;
  transition: box-shadow 0.3s ease;
  background-color: #fff;
}
@media (min-width: 960px) {
  .c-about__link:hover {
    box-shadow: 0 4px 16px rgba(0, 42, 154, 0.25);
  }
}
@media (max-width: 959.89px) {
  .c-about__link {
    font-size: 1.6rem;
    padding: 10px 30px;
    margin-top: 20px;
    width: 100%;
    text-align: center;
  }
}

.c-about__link i {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  font-weight: normal;
}

.c-about__link.--line {
  background-color: #06C755;
  color: #fff;
  border-color: #06C755;
}
@media (min-width: 960px) {
  .c-about__link.--line:hover {
    box-shadow: 0 4px 16px rgba(6, 199, 85, 0.35);
  }
}
.c-about__link.--line i {
  position: static;
  transform: none;
  margin-right: 8px;
  font-size: 2.2rem;
}
@media (max-width: 959.89px) {
  .c-about__link.--line i {
    font-size: 1.8rem;
  }
}

.c-about__note span {
  background-image: linear-gradient(transparent 60%, #ffe14c 60%);
}

.c-about__img {
  width: 525px;
  height: 350px;
  flex-shrink: 0;
}
@media (max-width: 959.89px) {
  .c-about__img {
    width: 100%;
    height: 240px;
  }
}

.c-about__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.c-point {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 959.89px) {
  .c-point {
    padding-top: var(--section-gap-sp);
    padding-bottom: var(--section-gap-sp);
  }
}

.c-point .c-inner {
  max-width: 1430px;
}

.c-point__head {
  border-top: 1px solid #ddd;
  padding-top: 60px;
}
@media (max-width: 959.89px) {
  .c-point__head {
    padding-top: 40px;
  }
}

.c-point__ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.2rem;
  font-weight: 600;
  color: #002A9A;
  line-height: 90%;
  padding-left: 22px;
  position: relative;
}
@media (max-width: 959.89px) {
  .c-point__ttl {
    font-size: 2.4rem;
    padding-left: 18px;
  }
}

.c-point__ttl::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: #ED712F;
}

.c-point__list {
  display: flex;
  gap: 38px;
  margin-top: 30px;
}
@media (max-width: 959.89px) {
  .c-point__list {
    flex-direction: column;
    gap: 40px;
    margin-top: 24px;
  }
}

.c-point__item {
  flex: 1;
}

.c-point__img {
  margin-bottom: 21px;
  height: 280px;
  position: relative;
}
@media (max-width: 959.89px) {
  .c-point__img {
    margin-bottom: 16px;
    height: 200px;
  }
}

.c-point__img .p-note {
  position: absolute;
  right: 10px;
  bottom: 5px;
  font-size: 1.3rem;
}

.c-point__img img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  object-fit: cover;
}

.c-point__name {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #002A9A;
  line-height: 150%;
  margin-bottom: 15px;
}
@media (max-width: 959.89px) {
  .c-point__name {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }
}

.c-point__desc {
  font-size: 1.5rem;
  line-height: 200%;
}
@media (max-width: 959.89px) {
  .c-point__desc {
    font-size: 1.4rem;
  }
}

.c-point__content {
  display: flex;
  align-items: stretch;
  gap: 40px;
  margin-top: 30px;
}
@media (max-width: 959.89px) {
  .c-point__content {
    flex-direction: column;
    gap: 24px;
    margin-top: 24px;
  }
}

.c-point__content-img {
  width: 420px;
  flex-shrink: 0;
}
@media (max-width: 959.89px) {
  .c-point__content-img {
    width: 100%;
  }
}

.c-point__content-img img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  object-fit: cover;
}

.c-point__content-body {
  flex: 1;
}

.c-point__content-body p + p {
  margin-top: 16px;
}

.c-point__content-sub {
  margin-top: 30px;
  background-color: #F2FBFC;
  border-radius: 5px;
  padding: 24px 270px 14px 28px;
  position: relative;
}
@media (max-width: 959.89px) {
  .c-point__content-sub {
    margin-top: 24px;
    padding: 20px 20px;
  }
}

.c-point__content-sub__icon {
  position: absolute;
  right: 20px;
  bottom: 0px;
  width: 250px;
  height: auto;
  opacity: 1;
  pointer-events: none;
}
@media (max-width: 959.89px) {
  .c-point__content-sub__icon {
    display: none;
  }
}

.c-point__content-sub__ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #002A9A;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
@media (max-width: 959.89px) {
  .c-point__content-sub__ttl {
    font-size: 1.8rem;
  }
}

.c-point__content-sub__ttl i {
  font-size: 2rem;
  color: #002A9A;
}

.c-point__content-sub p {
  font-size: 1.5rem;
  line-height: 200%;
  color: #555;
}
@media (max-width: 959.89px) {
  .c-point__content-sub p {
    font-size: 1.4rem;
  }
}

.c-symptom {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}
@media (max-width: 959.89px) {
  .c-symptom {
    padding-top: var(--section-gap-sp);
    padding-bottom: var(--section-gap-sp);
  }
}

.c-symptom__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: -600px;
  width: 100%;
  z-index: -1;
}

.c-symptom__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 0%;
}

.c-symptom .c-inner {
  max-width: 1430px;
  position: relative;
  z-index: 1;
}

.c-symptom__ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.2rem;
  font-weight: 600;
  color: #002A9A;
  line-height: 150%;
  padding-left: 22px;
  position: relative;
  margin-bottom: 30px;
}
@media (max-width: 959.89px) {
  .c-symptom__ttl {
    font-size: 2.4rem;
    padding-left: 18px;
    margin-bottom: 24px;
  }
}

.c-symptom__ttl::before {
  content: "";
  position: absolute;
  left: 0;
  top: 26px;
  transform: translateY(-50%);
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: #ED712F;
}
@media (max-width: 959.89px) {
  .c-symptom__ttl::before {
    top: 20px;
    width: 9px;
    height: 9px;
  }
}

.c-symptom__card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.14);
  padding: 70px 98px;
}
@media (max-width: 959.89px) {
  .c-symptom__card {
    padding: 35px 25px;
  }
}

.c-symptom__columns {
  display: flex;
  gap: 60px;
}
@media (max-width: 959.89px) {
  .c-symptom__columns {
    flex-direction: column;
    gap: 0;
  }
}

.c-symptom__list {
  flex: 1;
  list-style: none;
}

.c-symptom__item {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: #000;
  line-height: 35px;
  display: flex;
  align-items: baseline;
  gap: 7px;
}
@media (max-width: 959.89px) {
  .c-symptom__item {
    font-size: 1.5rem;
    line-height: 30px;
  }
}

.c-symptom__item i {
  color: #ED712F;
  font-size: 2rem;
  flex-shrink: 0;
}
@media (max-width: 959.89px) {
  .c-symptom__item i {
    font-size: 1.6rem;
  }
}

.c-symptom__note {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #002A9A;
  text-align: center;
  line-height: 35px;
  margin-top: 40px;
}
@media (max-width: 959.89px) {
  .c-symptom__note {
    font-size: 1.6rem;
    line-height: 28px;
    margin-top: 24px;
    text-align: center;
  }
}

.c-disease {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 959.89px) {
  .c-disease {
    padding-top: var(--section-gap-sp);
    padding-bottom: var(--section-gap-sp);
  }
}

.c-disease .c-inner {
  max-width: 100%;
}

.c-disease__card {
  display: flex;
  align-items: center;
  gap: 36px;
}
@media (max-width: 959.89px) {
  .c-disease__card {
    flex-direction: column;
  }
}

.c-disease__img {
  width: 50%;
  height: 500px;
  flex-shrink: 0;
}
@media (max-width: 959.89px) {
  .c-disease__img {
    width: 100%;
    height: 300px;
  }
}

.c-disease__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.c-disease__body {
  flex: 1;
  padding-top: 20px;
}
@media (max-width: 959.89px) {
  .c-disease__body {
    padding-top: 0;
  }
}

.c-disease__name {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #002A9A;
  line-height: 90%;
  padding-left: 22px;
  position: relative;
  margin-bottom: 45px;
}
@media (max-width: 959.89px) {
  .c-disease__name {
    font-size: 2.4rem;
    padding-left: 18px;
    margin-bottom: 24px;
  }
}

.c-disease__name::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: #ED712F;
}

.c-disease__text p + p {
  margin-top: 20px;
}

.c-disease__supplement {
  display: flex;
  gap: 20px;
  margin-top: 50px;
}
@media (max-width: 959.89px) {
  .c-disease__supplement {
    flex-direction: column;
    gap: 16px;
    margin-top: 30px;
  }
}

.c-disease__supplement__item {
  flex: 1;
  background-color: #fff;
  border-radius: 5px;
  padding: 30px 40px;
  border: 1px solid #ddd;
}
@media (max-width: 959.89px) {
  .c-disease__supplement__item {
    padding: 20px 20px;
  }
}

.c-disease__supplement__ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #002A9A;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
@media (max-width: 959.89px) {
  .c-disease__supplement__ttl {
    font-size: 1.6rem;
  }
}

.c-disease__supplement__ttl i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #ED712F;
  color: #fff;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.c-disease__supplement__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #555;
  line-height: 190%;
}
@media (max-width: 959.89px) {
  .c-disease__supplement__text {
    font-size: 1.4rem;
  }
}

.c-examinations {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 959.89px) {
  .c-examinations {
    padding-top: var(--section-gap-sp);
    padding-bottom: var(--section-gap-sp);
  }
}

.c-examinations__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 959.89px) {
  .c-examinations__grid {
    grid-template-columns: 1fr;
  }
}

.c-examinations__item {
  background-color: #F2FBFC;
  border-radius: 12px;
  padding: 37px 22px 37px 25px;
}

.c-examinations__num {
  font-family: "Inter", sans-serif;
  font-size: 2.2rem;
  font-weight: 500;
  color: #002A9A;
  letter-spacing: 0.05em;
  line-height: 0.8;
  margin-bottom: 40px;
}

.c-examinations__name {
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #002A9A;
  letter-spacing: 0.02em;
  line-height: 90%;
  margin-bottom: 25px;
}
@media (max-width: 959.89px) {
  .c-examinations__name {
    font-size: 1.8rem;
  }
}

.c-examinations__desc {
  color: #797979;
}

.c-disease-list {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 959.89px) {
  .c-disease-list {
    padding-top: var(--section-gap-sp);
    padding-bottom: var(--section-gap-sp);
  }
}

.c-disease-list__note {
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 959.89px) {
  .c-disease-list__note {
    text-align: left;
  }
}

.c-disease-list__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 959.89px) {
  .c-disease-list__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.c-disease-list__grid.--col3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 959.89px) {
  .c-disease-list__grid.--col3 {
    grid-template-columns: 1fr;
  }
}

.c-disease-list__card:only-child {
  grid-column: 1/-1;
}
.c-disease-list__card:only-child .c-disease-list__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 30px;
}
@media (max-width: 959.89px) {
  .c-disease-list__card:only-child .c-disease-list__items {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.c-disease-list__card {
  display: block;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.3s, transform 0.3s;
  border: 1px solid #002A9A;
}
@media (min-width: 960px) {
  .c-disease-list__card:hover {
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.14);
    transform: translateY(-4px);
  }
}

.c-disease-list__img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
@media (max-width: 959.89px) {
  .c-disease-list__img {
    height: 180px;
  }
}

.c-disease-list__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
@media (min-width: 960px) {
  .c-disease-list__card:hover .c-disease-list__img img {
    transform: scale(1.05);
  }
}

.c-disease-list__body {
  padding: 0;
}

.c-disease-list__name {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  line-height: 150%;
  margin-bottom: 20px;
  background-color: #002A9A;
  text-align: center;
  padding: 10px;
}
@media (max-width: 959.89px) {
  .c-disease-list__name {
    font-size: 1.7rem;
    margin-bottom: 16px;
    padding: 8px;
  }
}

.c-disease-list__desc {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #555;
  line-height: 190%;
}
@media (max-width: 959.89px) {
  .c-disease-list__desc {
    font-size: 1.4rem;
  }
}

.c-disease-list__sub {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #002A9A;
  line-height: 180%;
  margin-bottom: 20px;
  text-align: center;
}
@media (max-width: 959.89px) {
  .c-disease-list__sub {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }
}

.c-disease-list__items {
  list-style: none;
  padding: 0 30px 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 20px;
}
@media (max-width: 959.89px) {
  .c-disease-list__items {
    padding: 0 20px 20px;
    grid-template-columns: 1fr;
  }
}
.c-disease-list__items.--col1 {
  grid-template-columns: 1fr;
}

.c-disease-list__items li {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #000;
  line-height: 220%;
  display: flex;
  align-items: baseline;
  gap: 7px;
}
@media (max-width: 959.89px) {
  .c-disease-list__items li {
    font-size: 1.6rem;
    line-height: 180%;
  }
}

.c-disease-list__items li i {
  color: #ED712F;
  font-size: 1.6rem;
  flex-shrink: 0;
}
@media (max-width: 959.89px) {
  .c-disease-list__items li i {
    font-size: 1.4rem;
  }
}

.c-medical-page {
  padding-top: 120px;
  padding-bottom: 80px;
  position: relative;
}
.c-medical-page::before {
  content: "";
  background-color: #f8f8ff;
  position: absolute;
  top: 0;
  left: 60px;
  right: 60px;
  bottom: 0;
  z-index: -2;
  border-radius: 5px;
  border: 1px solid #a6b9ee;
}
@media (max-width: 959.89px) {
  .c-medical-page {
    padding-top: var(--section-gap-sp);
    padding-bottom: var(--section-gap-sp);
  }
  .c-medical-page::before {
    left: 0;
    right: 0;
    border-radius: 0;
  }
}

@media (max-width: 959.89px) {
  .c-medical-page.--pd-adjust {
    margin: 0 20px;
    padding-top: 60px;
    padding-bottom: 40px;
  }
}

@media (max-width: 959.89px) {
  .c-medical-page.--pd-adjust .c-ttl .ja {
    font-size: 2.4rem;
  }
}

.c-medical-page .c-inner {
  max-width: 100%;
  padding-left: 120px;
  padding-right: 120px;
}
@media (max-width: 959.89px) {
  .c-medical-page .c-inner {
    padding-left: var(--padding-sp);
    padding-right: var(--padding-sp);
  }
}

.c-medical-page__card {
  background-color: #fff;
  border-radius: 12px;
  padding: 80px 60px 80px;
}
@media (max-width: 959.89px) {
  .c-medical-page__card {
    padding: 30px 20px 40px;
    border-radius: 8px;
  }
}

.c-medical-page__wrap {
  display: flex;
  gap: 60px;
  max-width: 1230px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 959.89px) {
  .c-medical-page__wrap {
    flex-direction: column;
    gap: 0;
  }
}

.c-medical-page__main {
  flex: 1;
  min-width: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #333;
  line-height: 2;
}
@media (max-width: 959.89px) {
  .c-medical-page__main {
    font-size: 1.5rem;
    line-height: 1.9;
  }
}
.c-medical-page__main p {
  margin-bottom: 24px;
}
@media (max-width: 959.89px) {
  .c-medical-page__main p {
    margin-bottom: 18px;
  }
}
.c-medical-page__main p:last-child {
  margin-bottom: 0;
}
.c-medical-page__main h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #002A9A;
  padding-bottom: 12px;
  margin-top: 48px;
  margin-bottom: 20px;
  border-bottom: 2px solid #002A9A;
}
@media (max-width: 959.89px) {
  .c-medical-page__main h2 {
    font-size: 1.8rem;
    padding-bottom: 10px;
    margin-top: 36px;
    margin-bottom: 16px;
  }
}
.c-medical-page__main h3:not(.c-price__heading) {
  font-size: 1.9rem;
  font-weight: 700;
  color: #000;
  padding-left: 14px;
  border-left: 4px solid #002A9A;
  margin-top: 36px;
  margin-bottom: 16px;
}
@media (max-width: 959.89px) {
  .c-medical-page__main h3:not(.c-price__heading) {
    font-size: 1.7rem;
    padding-left: 12px;
    margin-top: 28px;
    margin-bottom: 12px;
  }
}
.c-medical-page__main h4 {
  font-size: 1.7rem;
  font-weight: 700;
  color: #000;
  margin-top: 28px;
  margin-bottom: 12px;
}
@media (max-width: 959.89px) {
  .c-medical-page__main h4 {
    font-size: 1.6rem;
    margin-top: 22px;
    margin-bottom: 10px;
  }
}
.c-medical-page__main ul {
  margin-bottom: 24px;
  padding-left: 1.5em;
}
@media (max-width: 959.89px) {
  .c-medical-page__main ul {
    margin-bottom: 24px;
    padding-left: 0;
  }
}
.c-medical-page__main ul li {
  list-style: disc;
  margin-bottom: 8px;
  line-height: 1.8;
}
.c-medical-page__main ul li:last-child {
  margin-bottom: 0;
}
.c-medical-page__main ol {
  margin-bottom: 24px;
  padding-left: 1.5em;
}
@media (max-width: 959.89px) {
  .c-medical-page__main ol {
    margin-bottom: 18px;
  }
}
.c-medical-page__main ol li {
  list-style: decimal;
  margin-bottom: 8px;
  line-height: 1.8;
}
.c-medical-page__main ol li:last-child {
  margin-bottom: 0;
}
.c-medical-page__main table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
}
@media (max-width: 959.89px) {
  .c-medical-page__main table {
    margin-bottom: 24px;
    font-size: 1.4rem;
  }
}
.c-medical-page__main table th {
  font-weight: 600;
  color: #fff;
  background-color: #002A9A;
  padding: 12px 16px;
  text-align: center;
  border: 1px solid #002A9A;
}
@media (max-width: 959.89px) {
  .c-medical-page__main table th {
    padding: 10px 12px;
  }
}
.c-medical-page__main table td {
  padding: 12px 16px;
  text-align: center;
  border: 1px solid #e0e0e0;
}
@media (max-width: 959.89px) {
  .c-medical-page__main table td {
    padding: 10px 12px;
  }
}
.c-medical-page__main table tbody tr:nth-child(even) td {
  background-color: #fafafa;
}
.c-medical-page__main blockquote {
  background-color: #f8f8ff;
  border-left: 4px solid #002A9A;
  padding: 20px 24px;
  margin-top: 24px;
  margin-bottom: 24px;
  border-radius: 0 6px 6px 0;
}
@media (max-width: 959.89px) {
  .c-medical-page__main blockquote {
    padding: 16px 18px;
    margin-top: 18px;
    margin-bottom: 18px;
  }
}
.c-medical-page__main blockquote p {
  margin-bottom: 0;
  color: #555;
  font-size: 1.5rem;
}
@media (max-width: 959.89px) {
  .c-medical-page__main blockquote p {
    font-size: 1.4rem;
  }
}
.c-medical-page__main img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin-top: 24px;
  margin-bottom: 24px;
}
@media (max-width: 959.89px) {
  .c-medical-page__main img {
    margin-top: 18px;
    margin-bottom: 18px;
    border-radius: 4px;
  }
}
.c-medical-page__main strong {
  font-weight: 700;
  color: #000;
}
.c-medical-page__main mark {
  background: linear-gradient(transparent 60%, rgba(237, 113, 47, 0.25) 60%);
  padding: 0 2px;
}
.c-medical-page__main a {
  color: #002A9A;
  text-decoration: underline;
  transition: opacity 0.3s;
}
@media (min-width: 960px) {
  .c-medical-page__main a:hover {
    opacity: 0.7;
  }
}

.c-medical-page__hero-img {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 40px;
}
@media (max-width: 959.89px) {
  .c-medical-page__hero-img {
    height: 200px;
    border-radius: 8px;
    margin-bottom: 24px;
  }
}
.c-medical-page__hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  border-radius: 0;
}

.c-medical-page__section {
  padding-bottom: 50px;
  margin-bottom: 50px;
  border-bottom: 1px solid #eee;
}
.c-medical-page__section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
@media (max-width: 959.89px) {
  .c-medical-page__section {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}

.c-medical-page__heading {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: #000;
  line-height: 1.5;
  padding-left: 20px;
  border-left: 5px solid #002A9A;
  margin-bottom: 30px;
}
@media (max-width: 959.89px) {
  .c-medical-page__heading {
    font-size: 2.2rem;
    padding-left: 16px;
    border-left-width: 4px;
    margin-bottom: 20px;
  }
}

.c-medical-page__section p {
  line-height: 200%;
}

.c-medical-page__section p + p {
  margin-top: 16px;
}

.c-medical-page__sub {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #002A9A;
  margin-top: 30px;
  margin-bottom: 16px;
  padding-left: 12px;
  position: relative;
}
.c-medical-page__sub::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 70%;
  background-color: #ED712F;
  border-radius: 2px;
}
@media (max-width: 959.89px) {
  .c-medical-page__sub {
    font-size: 1.6rem;
    margin-top: 24px;
  }
}

.c-medical-page__list {
  list-style: none;
}

.c-medical-page__list li {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #000;
  line-height: 35px;
  display: flex;
  align-items: baseline;
  gap: 7px;
}
@media (max-width: 959.89px) {
  .c-medical-page__list li {
    font-size: 1.5rem;
    line-height: 30px;
  }
}

.c-medical-page__list li i {
  color: #ED712F;
  font-size: 1.8rem;
  flex-shrink: 0;
}
@media (max-width: 959.89px) {
  .c-medical-page__list li i {
    font-size: 1.6rem;
  }
}

.c-medical-page__note {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #002A9A;
  margin-top: 20px;
  line-height: 180%;
}

.c-medical-page__sidebar {
  width: 260px;
  flex-shrink: 0;
}
@media (max-width: 959.89px) {
  .c-medical-page__sidebar {
    display: none;
  }
}

.c-medical-page__toc {
  position: sticky;
  top: 100px;
}

.c-medical-page__toc__ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #000;
  padding-bottom: 0;
  margin-bottom: 0;
  border-top: 1px solid #002A9A;
  padding-top: 30px;
}

.c-medical-page__toc__list {
  list-style: none;
}

.c-medical-page__toc__list li {
  border-bottom: 1px solid #eee;
}

.c-medical-page__toc__list li a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 14px 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #555;
  text-decoration: none;
  line-height: 1.6;
  transition: color 0.3s, background-color 0.3s;
}
.c-medical-page__toc__list li a i {
  font-size: 1.8rem;
  color: #999;
  flex-shrink: 0;
  transition: color 0.3s;
}
@media (min-width: 960px) {
  .c-medical-page__toc__list li a:hover {
    color: #002A9A;
    background-color: rgba(0, 42, 154, 0.03);
  }
  .c-medical-page__toc__list li a:hover i {
    color: #002A9A;
  }
}

.c-medical-page__toc__list li.current a {
  color: #002A9A;
  font-weight: 600;
}
.c-medical-page__toc__list li.current a i {
  color: #002A9A;
}

.c-index-lead {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 220%;
}
@media (max-width: 959.89px) {
  .c-index-lead {
    font-size: 1.4rem;
    margin-bottom: 25px;
    padding: 0 0px;
    text-align: left;
  }
}

.c-dept-nav {
  padding-top: 40px;
  padding-bottom: 0;
}
@media (max-width: 959.89px) {
  .c-dept-nav {
    padding-top: 30px;
  }
}

.c-dept-nav__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding-bottom: 100px;
  gap: 100px 30px;
}
@media (max-width: 959.89px) {
  .c-dept-nav__grid {
    grid-template-columns: 1fr;
    gap: 90px 0;
  }
}
.c-dept-nav__grid.--col3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 120px 30px;
  padding-bottom: 100px;
}
@media (max-width: 959.89px) {
  .c-dept-nav__grid.--col3 {
    grid-template-columns: 1fr;
    padding-bottom: 50px;
    gap: 90px 0;
  }
}

.c-dept-nav__card {
  display: flex;
  flex-direction: column;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  position: relative;
  transition: opacity 0.3s;
  text-decoration: none;
  color: inherit;
  margin-bottom: 50px;
}
@media (min-width: 960px) {
  .c-dept-nav__card:hover {
    opacity: 0.85;
    box-shadow: none;
    transform: none;
  }
}

.c-dept-nav__img {
  width: 100%;
  height: 350px;
  overflow: hidden;
}
.c-dept-nav__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
@media (min-width: 960px) {
  .c-dept-nav__card:hover .c-dept-nav__img img {
    transform: scale(1.05);
  }
}

.c-dept-nav__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #fff;
  padding: 28px 24px 0 0;
  position: absolute;
  right: 50px;
  left: 0;
  bottom: -100px;
}
@media (max-width: 959.89px) {
  .c-dept-nav__body {
    padding: 28px 24px 0 0;
  }
}

.c-dept-nav__name {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #002A9A;
  margin-bottom: 14px;
}
@media (max-width: 959.89px) {
  .c-dept-nav__name {
    margin-bottom: 7px;
  }
}

.c-dept-nav__desc {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #555;
  line-height: 200%;
}
@media (max-width: 959.89px) {
  .c-dept-nav__desc {
    line-height: 150%;
  }
}

.c-dept-nav__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #002A9A;
  margin-top: auto;
  padding-top: 5px;
  justify-content: flex-end;
  margin-right: -60px;
  transition: gap 0.3s;
}
@media (min-width: 960px) {
  .c-dept-nav__card:hover .c-dept-nav__more {
    gap: 10px;
  }
}

.c-dept-nav__more i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background-color: #fff;
  color: #002A9A;
  font-size: 1.4rem;
  border-radius: 2px;
  border: 1px solid #ddd;
  transition: transform 0.3s;
}
@media (min-width: 960px) {
  .c-dept-nav__card:hover .c-dept-nav__more i {
    transform: translateX(2px);
  }
}

.c-disease-list__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #002A9A;
  margin-top: 16px;
  transition: gap 0.3s;
}
@media (min-width: 960px) {
  .c-disease-list__card:hover .c-disease-list__more {
    gap: 10px;
  }
}

.c-disease-list__more i {
  font-size: 1.6rem;
  transition: transform 0.3s;
}
@media (min-width: 960px) {
  .c-disease-list__card:hover .c-disease-list__more i {
    transform: translateX(2px);
  }
}

.c-symptom__category {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  background-color: #002a9a;
  padding: 10px 20px;
  border-radius: 5px;
  margin-bottom: 20px;
}
@media (max-width: 959.89px) {
  .c-symptom__category {
    font-size: 1.7rem;
    padding: 8px 16px;
    margin-bottom: 16px;
  }
}

.c-symptom__category + .c-symptom__columns {
  margin-bottom: 40px;
}
@media (max-width: 959.89px) {
  .c-symptom__category + .c-symptom__columns {
    margin-bottom: 24px;
  }
}

.c-flow {
  padding-top: 120px;
  padding-bottom: 80px;
  /* margin-bottom: 120px; */
  background-color: #f8f8ff;
  position: relative;
  overflow: hidden;
}
@media (max-width: 959.89px) {
  .c-flow {
    padding-top: var(--section-gap-sp);
    padding-bottom: var(--section-gap-sp);
    /* margin-bottom: 60px; */
  }
}

.c-flow .c-inner {
  max-width: 1430px;
  position: relative;
}

.c-flow__list {
  margin: 0 -12.5px;
}
.c-flow__list .slick-list {
  overflow: visible;
}
.c-flow__list .slick-track {
  display: flex;
}
.c-flow__list .slick-slide {
  padding: 0 12.5px;
  height: auto;
}
.c-flow__list .slick-slide > div {
  height: 100%;
}
.c-flow__list .slick-dots {
  position: relative;
  bottom: auto;
  margin-top: 30px;
  text-align: center;
  padding-left: 10px;
}
.c-flow__list .slick-dots li {
  width: 20px;
  height: 20px;
  margin: 0 5px;
}
.c-flow__list .slick-dots li button {
  width: 20px;
  height: 20px;
  padding: 0;
}
.c-flow__list .slick-dots li button::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #C7C7C7;
  opacity: 1;
  font-size: 0;
}
.c-flow__list .slick-dots li.slick-active button::before {
  background-color: #002A9A;
}

.c-flow__item {
  height: auto;
}

.c-flow__card {
  background-color: #fff;
  border-radius: 12px;
  padding: 37px 22px 37px 25px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.c-flow__num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #002A9A;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
@media (max-width: 959.89px) {
  .c-flow__num {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
  }
}

.c-flow__num__label {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.1em;
  line-height: 1;
}
@media (max-width: 959.89px) {
  .c-flow__num__label {
    font-size: 0.8rem;
  }
}

.c-flow__num__number {
  font-family: "Inter", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
@media (max-width: 959.89px) {
  .c-flow__num__number {
    font-size: 1.8rem;
  }
}

.c-flow__body {
  flex: 1;
}

.c-flow__name {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #002A9A;
  line-height: 1.5;
  margin-bottom: 12px;
}
@media (max-width: 959.89px) {
  .c-flow__name {
    font-size: 1.6rem;
    margin-bottom: 8px;
  }
}

.c-flow__desc {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #555;
  line-height: 190%;
}
@media (max-width: 959.89px) {
  .c-flow__desc {
    font-size: 1.5rem;
  }
}

.c-flow__note {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #797979;
  text-align: center;
  margin-top: 60px;
  line-height: 180%;
}
@media (max-width: 959.89px) {
  .c-flow__note {
    font-size: 1.3rem;
    text-align: left;
    margin-top: 36px;
  }
}

.c-faq {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 959.89px) {
  .c-faq {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.c-faq__list {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.c-faq__item {
  border-bottom: 1px solid #e0e0e0;
}

.c-faq__item:first-child {
  border-top: 1px solid #e0e0e0;
}

.c-faq__question {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}
@media (max-width: 959.89px) {
  .c-faq__question {
    gap: 12px;
    padding: 20px 0;
  }
}

.c-faq__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #002A9A;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  flex-shrink: 0;
}
@media (max-width: 959.89px) {
  .c-faq__icon {
    width: 34px;
    height: 34px;
    font-size: 1.6rem;
  }
}

.c-faq__icon.--answer {
  background-color: #ED712F;
}

.c-faq__question__text {
  flex: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: #000;
  line-height: 1.6;
}
@media (max-width: 959.89px) {
  .c-faq__question__text {
    font-size: 1.5rem;
  }
}

.c-faq__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #f0f0f0;
  color: #002A9A;
  font-size: 2rem;
  flex-shrink: 0;
  transition: background-color 0.3s, transform 0.3s;
}
@media (max-width: 959.89px) {
  .c-faq__toggle {
    width: 30px;
    height: 30px;
    font-size: 1.6rem;
  }
}

.c-faq__item.is-open .c-faq__toggle {
  background-color: #002A9A;
  color: #fff;
}

.c-faq__answer {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--easing);
  padding-top: 5px;
}
@media (max-width: 959.89px) {
  .c-faq__answer {
    gap: 12px;
  }
}

.c-faq__answer__text {
  flex: 1;
  padding: 0 0 24px 0;
}
@media (max-width: 959.89px) {
  .c-faq__answer__text {
    padding: 0 0 20px 0;
  }
}

.c-faq__answer__text p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #555;
  line-height: 200%;
}
@media (max-width: 959.89px) {
  .c-faq__answer__text p {
    font-size: 1.4rem;
  }
}

.c-price {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #f8f8ff;
}
@media (max-width: 959.89px) {
  .c-price {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.c-price.--mb-100 {
  margin-bottom: 100px;
}
@media (max-width: 959.89px) {
  .c-price.--mb-100 {
    margin-bottom: 60px;
  }
}

.c-price .c-inner {
  padding-left: var(--padding-pc);
  padding-right: var(--padding-pc);
  margin-left: auto;
  margin-right: auto;
  width: min(90%, 1250px);
}
@media (max-width: 959.89px) {
  .c-price .c-inner {
    padding-left: 20px;
    padding-right: 20px;
    width: min(100%, 1250px);
  }
}

.c-price__card {
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.08);
  padding: 50px 40px;
}
@media (max-width: 959.89px) {
  .c-price__card {
    padding: 24px 16px;
    border-radius: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.c-price__table {
  width: 100%;
  border-collapse: collapse;
}

.c-price__table.--equal-col {
  table-layout: fixed;
}
@media (max-width: 959.89px) {
  .c-price__table.--equal-col {
    min-width: 640px;
  }
}
.c-price__table.--equal-col .c-price__th,
.c-price__table.--equal-col .c-price__td {
  width: auto;
  padding: 16px 10px;
}

.c-price__th {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  background-color: #002A9A;
  padding: 14px 20px;
  text-align: center;
  border: 1px solid #002A9A;
}
@media (max-width: 959.89px) {
  .c-price__th {
    font-size: 1.3rem;
    padding: 12px 10px;
  }
}

.c-price__th:first-child {
  text-align: left;
  width: 50%;
}
@media (max-width: 959.89px) {
  .c-price__th:first-child {
    width: 40%;
  }
}

.c-price__td {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #000;
  padding: 16px 20px;
  text-align: center;
  border: 1px solid #e0e0e0;
}
@media (max-width: 959.89px) {
  .c-price__td {
    font-size: 1.4rem;
    padding: 12px 10px;
  }
}

.c-price__td:first-child {
  text-align: left;
  font-weight: 500;
}

.c-price__td.--left {
  text-align: left;
}

.c-price__table tbody tr:nth-child(even) .c-price__td {
  background-color: #fafafa;
}

.c-price__td.--th {
  font-weight: 600;
  text-align: left;
  background-color: #e3e9f7;
  width: 20%;
}
@media (max-width: 959.89px) {
  .c-price__td.--th {
    width: 30%;
  }
}

.c-price__table tbody tr:nth-child(even) .c-price__td.--th {
  background-color: #e3e9f7;
}

.c-price__note {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #797979;
  margin-top: 20px;
  text-align: right;
}
@media (max-width: 959.89px) {
  .c-price__note {
    font-size: 1.3rem;
    text-align: left;
  }
}

.c-price__heading {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #002A9A;
  line-height: 1.6;
  margin-bottom: 18px;
}
@media (max-width: 959.89px) {
  .c-price__heading {
    font-size: 2.2rem;
    line-height: 150%;
    margin-bottom: 12px;
  }
}

.c-price.--bg-white {
  background-color: #fff;
}

.c-price.--no-pb {
  padding-bottom: 0;
}

.c-price__desc {
  text-align: left;
  margin-top: 0;
  margin-bottom: 24px;
  color: #555;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  line-height: 200%;
}

.c-price__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
@media (max-width: 959.89px) {
  .c-price__gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    margin-bottom: 20px;
  }
}

.c-price__gallery__item {
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 959.89px) {
  .c-price__gallery__item {
    aspect-ratio: 1/1;
  }
}
.c-price__gallery__item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 50%;
}

.c-price-info {
  background-color: #f8f8ff;
  border-radius: 8px;
  padding: 30px 32px;
  margin-top: 24px;
}
@media (max-width: 959.89px) {
  .c-price-info {
    padding: 20px 18px;
    margin-top: 16px;
  }
}
.c-price-info dl {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid #e0e0e0;
}
.c-price-info dl:first-child {
  padding-top: 0;
}
.c-price-info dl:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
@media (max-width: 959.89px) {
  .c-price-info dl {
    flex-direction: column;
    gap: 8px;
    padding: 14px 0;
  }
}
.c-price-info dt {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  background-color: #002A9A;
  border-radius: 4px;
  padding: 4px 14px;
  min-width: 90px;
  text-align: center;
  flex-shrink: 0;
  white-space: nowrap;
  line-height: 1.6;
}
@media (max-width: 959.89px) {
  .c-price-info dt {
    font-size: 1.3rem;
    padding: 3px 12px;
  }
}
.c-price-info dd {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.7rem;
  font-weight: 800;
  color: #002A9A;
  line-height: 1.5;
}
.c-price-info dd span {
  font-size: 1.4rem;
  font-weight: 500;
  color: #555;
  margin-left: 2px;
}
@media (max-width: 959.89px) {
  .c-price-info dd {
    font-size: 2rem;
  }
  .c-price-info dd span {
    font-size: 1.3rem;
  }
}
.c-price-info dl:last-child dd {
  font-size: 1.5rem;
  font-weight: 400;
  color: #333;
}
@media (max-width: 959.89px) {
  .c-price-info dl:last-child dd {
    font-size: 1.4rem;
  }
}
.c-price-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.c-price-info ul li {
  list-style: none;
  position: relative;
  padding-left: 16px;
  line-height: 2;
}
.c-price-info ul li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #002A9A;
  font-weight: 700;
}

.c-news {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 959.89px) {
  .c-news {
    padding-top: var(--section-gap-sp);
    padding-bottom: 0;
  }
}

.c-news__wrap {
  display: flex;
  gap: 60px;
}
@media (max-width: 959.89px) {
  .c-news__wrap {
    flex-direction: column;
    gap: 40px;
  }
}

.c-news__main {
  flex: 1;
  min-width: 0;
}

.c-news__list {
  list-style: none;
}

.c-news__item {
  border-bottom: 1px solid #e0e0e0;
}
.c-news__item:first-child {
  border-top: 1px solid #e0e0e0;
}

.c-news__link {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 30px 15px;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.3s;
}
@media (min-width: 960px) {
  .c-news__link:hover {
    background-color: rgba(0, 42, 154, 0.03);
  }
}
@media (max-width: 959.89px) {
  .c-news__link {
    flex-direction: column;
    gap: 6px;
    padding: 18px 12px;
  }
}

.c-news__date {
  font-family: "Inter", sans-serif;
  font-size: 1.6rem;
  font-weight: normal;
  color: #797979;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  white-space: nowrap;
}

.c-news__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: normal;
  color: #000;
  line-height: 1.7;
  transition: color 0.3s;
}
@media (min-width: 960px) {
  .c-news__link:hover .c-news__title {
    color: #002A9A;
  }
}
@media (max-width: 959.89px) {
  .c-news__title {
    font-size: 1.5rem;
  }
}

.c-news__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 50px;
}
@media (max-width: 959.89px) {
  .c-news__pagination {
    margin-top: 36px;
  }
}

.c-news__pagination__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 4px;
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #002A9A;
  text-decoration: none;
  border: 1px solid #ddd;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}
@media (min-width: 960px) {
  .c-news__pagination__item:hover {
    background-color: #002A9A;
    color: #fff;
    border-color: #002A9A;
  }
}
.c-news__pagination__item.is-current {
  background-color: #002A9A;
  color: #fff;
  border-color: #002A9A;
}
@media (max-width: 959.89px) {
  .c-news__pagination__item {
    width: 38px;
    height: 38px;
    font-size: 1.4rem;
  }
}

.c-news__pagination__next {
  font-size: 2rem;
}
@media (max-width: 959.89px) {
  .c-news__pagination__next {
    font-size: 1.8rem;
  }
}

.c-news__sidebar {
  width: 280px;
  flex-shrink: 0;
}
@media (max-width: 959.89px) {
  .c-news__sidebar {
    width: 100%;
  }
}

.c-news__archive {
  position: sticky;
  top: 100px;
}

.c-news__archive__ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #000;
  padding-bottom: 0;
  margin-bottom: 0;
  border-top: 1px solid #002A9B;
  padding-top: 30px;
}

.c-news__archive__list {
  list-style: none;
}

.c-news__archive__item {
  border-bottom: 1px solid #eee;
}

.c-news__archive__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 14px 0px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: normal;
  color: #555;
  text-decoration: none;
  transition: color 0.3s, background-color 0.3s;
}
.c-news__archive__link i {
  font-size: 1.8rem;
  color: #002A9A;
  flex-shrink: 0;
}
@media (min-width: 960px) {
  .c-news__archive__link:hover {
    color: #002A9A;
    background-color: rgba(0, 42, 154, 0.03);
  }
}
@media (max-width: 959.89px) {
  .c-news__archive__link {
    font-size: 1.4rem;
  }
}

.c-news-single {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 959.89px) {
  .c-news-single {
    padding-top: var(--section-gap-sp);
    padding-bottom: var(--section-gap-sp);
  }
}

.c-news-single__main {
  flex: 1;
  min-width: 0;
}

.c-news-single__header {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 40px;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}
@media (max-width: 959.89px) {
  .c-news-single__header {
    padding-top: 20px;
    padding-bottom: 20px;
    margin-bottom: 30px;
  }
}

.c-news-single__date {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 1.6rem;
  font-weight: normal;
  color: #797979;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
@media (max-width: 959.89px) {
  .c-news-single__date {
    font-size: 1.4rem;
    margin-bottom: 8px;
  }
}

.c-news-single__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: #000;
  line-height: 1.6;
}
@media (max-width: 959.89px) {
  .c-news-single__title {
    font-size: 2rem;
  }
}

.c-news-single__body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #333;
  line-height: 2;
}
@media (max-width: 959.89px) {
  .c-news-single__body {
    font-size: 1.5rem;
    line-height: 1.9;
  }
}
.c-news-single__body p {
  margin-bottom: 24px;
}
@media (max-width: 959.89px) {
  .c-news-single__body p {
    margin-bottom: 18px;
  }
}
.c-news-single__body p:last-child {
  margin-bottom: 0;
}
.c-news-single__body h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #002A9A;
  padding-bottom: 12px;
  margin-top: 48px;
  margin-bottom: 20px;
  border-bottom: 2px solid #002A9A;
}
@media (max-width: 959.89px) {
  .c-news-single__body h2 {
    font-size: 1.8rem;
    padding-bottom: 10px;
    margin-top: 36px;
    margin-bottom: 16px;
  }
}
.c-news-single__body h3 {
  font-size: 1.9rem;
  font-weight: 700;
  color: #000;
  padding-left: 14px;
  border-left: 4px solid #002A9A;
  margin-top: 36px;
  margin-bottom: 16px;
}
@media (max-width: 959.89px) {
  .c-news-single__body h3 {
    font-size: 1.7rem;
    padding-left: 12px;
    margin-top: 28px;
    margin-bottom: 12px;
  }
}
.c-news-single__body h4 {
  font-size: 1.7rem;
  font-weight: 700;
  color: #000;
  margin-top: 28px;
  margin-bottom: 12px;
}
@media (max-width: 959.89px) {
  .c-news-single__body h4 {
    font-size: 1.6rem;
    margin-top: 22px;
    margin-bottom: 10px;
  }
}
.c-news-single__body ul {
  margin-bottom: 24px;
  padding-left: 1.5em;
}
@media (max-width: 959.89px) {
  .c-news-single__body ul {
    margin-bottom: 18px;
  }
}
.c-news-single__body ul li {
  list-style: disc;
  margin-bottom: 8px;
  line-height: 1.8;
}
.c-news-single__body ul li:last-child {
  margin-bottom: 0;
}
.c-news-single__body ol {
  margin-bottom: 24px;
  padding-left: 1.5em;
}
@media (max-width: 959.89px) {
  .c-news-single__body ol {
    margin-bottom: 18px;
  }
}
.c-news-single__body ol li {
  list-style: decimal;
  margin-bottom: 8px;
  line-height: 1.8;
}
.c-news-single__body ol li:last-child {
  margin-bottom: 0;
}
.c-news-single__body table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
}
@media (max-width: 959.89px) {
  .c-news-single__body table {
    margin-bottom: 24px;
    font-size: 1.4rem;
  }
}
.c-news-single__body table th {
  font-weight: 600;
  color: #fff;
  background-color: #002A9A;
  padding: 12px 16px;
  text-align: center;
  border: 1px solid #002A9A;
}
@media (max-width: 959.89px) {
  .c-news-single__body table th {
    padding: 10px 12px;
  }
}
.c-news-single__body table td {
  padding: 12px 16px;
  text-align: center;
  border: 1px solid #e0e0e0;
}
@media (max-width: 959.89px) {
  .c-news-single__body table td {
    padding: 10px 12px;
  }
}
.c-news-single__body table tbody tr:nth-child(even) td {
  background-color: #fafafa;
}
.c-news-single__body blockquote {
  background-color: #f8f8ff;
  border-left: 4px solid #002A9A;
  padding: 20px 24px;
  margin-top: 24px;
  margin-bottom: 24px;
  border-radius: 0 6px 6px 0;
}
@media (max-width: 959.89px) {
  .c-news-single__body blockquote {
    padding: 16px 18px;
    margin-top: 18px;
    margin-bottom: 18px;
  }
}
.c-news-single__body blockquote p {
  margin-bottom: 0;
  color: #555;
  font-size: 1.5rem;
}
@media (max-width: 959.89px) {
  .c-news-single__body blockquote p {
    font-size: 1.4rem;
  }
}
.c-news-single__body img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin-top: 24px;
  margin-bottom: 24px;
}
@media (max-width: 959.89px) {
  .c-news-single__body img {
    margin-top: 18px;
    margin-bottom: 18px;
    border-radius: 4px;
  }
}
.c-news-single__body strong {
  font-weight: 700;
  color: #000;
}
.c-news-single__body mark {
  background: linear-gradient(transparent 60%, rgba(237, 113, 47, 0.25) 60%);
  padding: 0 2px;
}
.c-news-single__body a {
  color: #002A9A;
  text-decoration: underline;
  transition: opacity 0.3s;
}
@media (min-width: 960px) {
  .c-news-single__body a:hover {
    opacity: 0.7;
  }
}

.c-news-single__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid #e0e0e0;
}
@media (max-width: 959.89px) {
  .c-news-single__nav {
    margin-top: 40px;
    padding-top: 20px;
  }
}

.c-news-single__nav__prev,
.c-news-single__nav__next {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #002A9A;
  text-decoration: none;
  transition: opacity 0.3s;
}
@media (min-width: 960px) {
  .c-news-single__nav__prev:hover,
  .c-news-single__nav__next:hover {
    opacity: 0.7;
  }
}
.c-news-single__nav__prev i,
.c-news-single__nav__next i {
  font-size: 2rem;
}
@media (max-width: 959.89px) {
  .c-news-single__nav__prev,
  .c-news-single__nav__next {
    font-size: 1.4rem;
  }
  .c-news-single__nav__prev i,
  .c-news-single__nav__next i {
    font-size: 1.8rem;
  }
}

.c-news-single__nav__back {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #555;
  text-decoration: none;
  padding: 10px 24px;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}
@media (min-width: 960px) {
  .c-news-single__nav__back:hover {
    background-color: #002A9A;
    color: #fff;
    border-color: #002A9A;
  }
}
@media (max-width: 959.89px) {
  .c-news-single__nav__back {
    font-size: 1.4rem;
    padding: 8px 18px;
  }
}

.c-section-ttl {
  position: relative;
  text-align: center;
  margin-bottom: 10px;
}

.c-section-ttl__bg {
  font-family: "Gill Sans", "Gill Sans MT", sans-serif;
  font-size: 12rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #EBF1FF;
  line-height: 1;
}
@media (max-width: 959.89px) {
  .c-section-ttl__bg {
    font-size: 4rem;
  }
}

.c-section-ttl__ja {
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #002A9A;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}
@media (max-width: 959.89px) {
  .c-section-ttl__ja {
    font-size: 2.4rem;
  }
}

.c-section-ttl.--white .c-section-ttl__bg {
  color: #fff;
}

.c-section-ttl.--min .c-section-ttl__bg {
  font-size: 7rem;
}
@media (max-width: 959.89px) {
  .c-section-ttl.--min .c-section-ttl__bg {
    font-size: 4rem;
  }
}

.c-section-ttl.--min .c-section-ttl__ja {
  font-size: 2.6rem;
}
@media (max-width: 959.89px) {
  .c-section-ttl.--min .c-section-ttl__ja {
    font-size: 2rem;
  }
}

@keyframes loopSlide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.c-loop-slider {
  overflow: hidden;
  width: 100%;
  padding-top: 0px;
  padding-bottom: 60px;
}
@media (max-width: 959.89px) {
  .c-loop-slider {
    padding-top: 0px;
    padding-bottom: 30px;
  }
}

.c-loop-slider__track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: loopSlide 30s linear infinite;
  will-change: transform;
}

.c-loop-slider__item {
  flex-shrink: 0;
  width: 800px;
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 959.89px) {
  .c-loop-slider__item {
    width: 300px;
    border-radius: 6px;
  }
}

.c-loop-slider__item img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 959.89px) {
  .c-pylori {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (max-width: 959.89px) {
  .u-pc-only {
    display: none !important;
  }
}

@media (min-width: 960px) {
  .u-sp-only {
    display: none !important;
  }
}

@media (min-width: 960px) {
  .u-tab-only {
    display: none !important;
  }
}
@media (max-width: 959.89px) {
  .u-tab-only {
    display: none !important;
  }
}

@media (min-width: 960px) {
  .u-tab-sp-only {
    display: none !important;
  }
}

.l-header {
  position: relative;
  z-index: var(--z-sticky);
  background-color: #fff;
  padding: 0 0 12px 0;
}
@media (max-width: 959.89px) {
  .l-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: calc(var(--z-modal) + 3);
  }
}

.l-header__bar {
  width: 100%;
  height: 10px;
  background-color: #fff;
}

.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px 0 50px;
}
@media (max-width: 959.89px) {
  .l-header__inner {
    padding: 10px 15px;
    flex-wrap: wrap;
  }
}

.l-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.l-header__logo img {
  height: 56px;
  width: auto;
}
@media (max-width: 959.89px) {
  .l-header__logo img {
    height: 36px;
  }
}

.l-header__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
}
@media (max-width: 959.89px) {
  .l-header__right {
    display: none;
  }
}

.l-header__group {
  display: flex;
  align-items: center;
  gap: 20px;
}

.l-header__sub {
  display: flex;
  align-items: center;
  gap: 10px;
}

.l-header__sub__link {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 46px;
  padding-left: 12px;
  padding-right: 20px;
  background-color: #fff;
  border-radius: 100px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s var(--easing);
}

@media (min-width: 960px) {
  .l-header__sub__link:hover {
    opacity: 0.7;
  }
}
.l-header__sub__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #002A9A;
  color: #fff;
  font-size: 1.4rem;
}

.l-header__sub__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #002A9A;
  white-space: nowrap;
}

.l-header__nav {
  display: flex;
  align-items: center;
}

.l-header__nav__list {
  display: flex;
  align-items: center;
  gap: 0;
}
@media (max-width: 1140px) {
  .l-header__nav__list > li:first-child {
    display: none;
  }
}

.l-header__nav__link {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #000;
  letter-spacing: 0.03em;
  padding: 10px 16px;
  white-space: nowrap;
  transition: color 0.3s var(--easing);
}

@media (min-width: 960px) {
  .l-header__nav__link:hover {
    color: #002A9A;
  }
}
.l-header__cta {
  display: flex;
  align-items: stretch;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
  flex-shrink: 0;
}
@media (max-width: 959.89px) {
  .l-header__cta {
    display: none;
  }
}

.l-header__cta__phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* background-color: $cobalt_002; */
  padding: 12px 12px 10px;
  width: 250px;
  gap: 2px;
}

.l-header__cta__phone__label {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: #fff;
  line-height: 1;
}

.l-header__cta__phone__number {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: "Open Sans", sans-serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1.44;
}

.l-header__cta__phone__number i {
  font-size: 2.2rem;
}

.l-header__cta__phone__note {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  line-height: 1;
}

.l-header__cta__line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #fff;
  border: 2px solid #002A9A;
  border-top: none;
  border-radius: 0 0 5px 0;
  padding: 0 20px;
  width: 226px;
  height: 46px;
  margin-top: auto;
  margin-bottom: 12px;
  transition: opacity 0.3s var(--easing);
}

@media (min-width: 960px) {
  .l-header__cta__line:hover {
    opacity: 0.7;
  }
}
.l-header__cta__line i {
  font-size: 2.4rem;
  color: #00B900;
}

.l-header__cta__line__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.7rem;
  font-weight: 500;
  color: #00B900;
  white-space: nowrap;
}

.l-header__cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #002A9A;
  border-radius: 10px;
  padding-bottom: 12px;
  flex-shrink: 0;
  position: relative;
}
@media (max-width: 959.89px) {
  .l-header__cta-wrap {
    display: none;
  }
}

.l-header__cta-wrap .l-header__cta__phone {
  border-radius: 0;
  width: 250px;
}

.l-header__cta-wrap .l-header__cta__line {
  width: 226px;
  height: 46px;
  border-radius: 5px;
  border: none;
  margin: 0;
  background-color: #fff;
}

.is-home .l-header {
  position: absolute;
  background-color: transparent;
  left: 0;
  right: 0;
  top: 0;
}
@media (max-width: 959.89px) {
  .is-home .l-header {
    position: fixed;
    background-color: transparent;
    width: 100%;
    transition: background-color 0.3s var(--easing);
  }
}
@media (max-width: 959.89px) {
  .is-home .l-header.is-scrolled {
    background-color: #fff;
  }
}
.is-home .l-header__bar {
  background-color: transparent;
}
.is-home .l-header__cta-wrap::before {
  content: "";
  position: absolute;
  display: block;
  top: -10px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #002A9A;
  z-index: -1;
  border-radius: 0 0 10px 10px;
}
.is-home .l-header__cta-wrap::after {
  content: "";
  position: absolute;
  left: -10px;
  top: -10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 10px 10px;
  border-color: transparent transparent rgb(0, 21.1363636364, 77.5) transparent;
}

.l-header__hamburger {
  display: none;
}
@media (max-width: 959.89px) {
  .l-header__hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: calc(var(--z-modal) + 2);
    -webkit-tap-highlight-color: transparent;
  }
}

.l-header__hamburger__lines {
  display: block;
  width: 24px;
  height: 18px;
  position: relative;
}

.l-header__hamburger__lines span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #002A9A;
  border-radius: 1px;
  transition: transform 0.3s var(--easing), opacity 0.3s var(--easing);
}

.l-header__hamburger__lines span:nth-child(1) {
  top: 0;
}

.l-header__hamburger__lines span:nth-child(2) {
  top: 8px;
}

.l-header__hamburger__lines span:nth-child(3) {
  top: 16px;
}

.l-header__hamburger.is-open .l-header__hamburger__lines span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.l-header__hamburger.is-open .l-header__hamburger__lines span:nth-child(2) {
  opacity: 0;
}

.l-header__hamburger.is-open .l-header__hamburger__lines span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.l-header__drawer-overlay {
  display: none;
}
@media (max-width: 959.89px) {
  .l-header__drawer-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: var(--z-modal);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s var(--easing), visibility 0.3s var(--easing);
  }
}

@media (max-width: 959.89px) {
  .l-header__drawer-overlay.is-open {
    opacity: 1;
    visibility: visible;
  }
}

.l-header__drawer {
  display: none;
}
@media (max-width: 959.89px) {
  .l-header__drawer {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 360px;
    height: 100%;
    background-color: #fff;
    z-index: calc(var(--z-modal) + 1);
    transform: translateX(100%);
    transition: transform 0.3s var(--easing);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 959.89px) {
  .l-header__drawer.is-open {
    transform: translateX(0);
  }
}

.l-header__drawer__inner {
  padding: 80px 24px 40px;
}

.l-header__drawer__nav {
  margin-bottom: 30px;
}

.l-header__drawer__nav__list {
  list-style: none;
}

.l-header__drawer__nav__item {
  border-bottom: 1px solid #eee;
}

.l-header__drawer__nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 4px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #000;
  text-decoration: none;
}

.l-header__drawer__nav__link i {
  font-size: 1.8rem;
  color: #002A9A;
}

.l-header__drawer__cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.l-header__drawer__phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #002A9A;
  border-radius: 8px;
  padding: 16px;
  text-decoration: none;
  gap: 4px;
}

.l-header__drawer__phone__label {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
}

.l-header__drawer__phone__number {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Open Sans", sans-serif;
  font-size: 2.6rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}

.l-header__drawer__phone__number i {
  font-size: 2rem;
}

.l-header__drawer__phone__note {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.1rem;
  color: #fff;
}

.l-header__drawer__line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px solid #00B900;
  border-radius: 8px;
  padding: 14px;
  text-decoration: none;
  transition: opacity 0.3s var(--easing);
}

.l-header__drawer__line i {
  font-size: 2.4rem;
  color: #00B900;
}

.l-header__drawer__line__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #00B900;
}

.l-header__drawer__sub {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}

.l-header__drawer__sub__link {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #fff;
  border-radius: 100px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 12px 18px;
  text-decoration: none;
}

.l-header__drawer__sub__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #002A9A;
  color: #fff;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.l-header__drawer__sub__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #002A9A;
}

.l-footer {
  padding-top: 70px;
  padding-bottom: 50px;
  border-top: 1px solid #ddd;
}

.l-footer__inner {
  max-width: 1430px;
  padding-left: 60px;
  padding-right: 60px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 959.89px) {
  .l-footer__inner {
    padding-left: var(--padding-sp);
    padding-right: var(--padding-sp);
  }
}

.l-footer__logo {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}
@media (max-width: 959.89px) {
  .l-footer__logo {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.l-footer__logo img {
  height: 60px;
  width: auto;
  display: block;
}
@media (max-width: 959.89px) {
  .l-footer__logo img {
    height: 42px;
  }
}

.l-footer__logo__corp {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #002A9A;
}

.l-footer__logo__name {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: #002A9A;
  letter-spacing: 0.05em;
}

.l-footer__sub {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 19px;
}
@media (max-width: 959.89px) {
  .l-footer__sub {
    flex-direction: column;
  }
}

.l-footer__sub__link {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #fff;
  border-radius: 100px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  padding: 14px 24px 14px 16px;
  text-decoration: none;
  color: #002A9A;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
}
@media (min-width: 960px) {
  .l-footer__sub__link:hover {
    opacity: 0.7;
  }
}

.l-footer__sub__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #002A9A;
  color: #fff;
  font-size: 1.6rem;
}

.l-footer__body {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 30px;
}
@media (max-width: 959.89px) {
  .l-footer__body {
    gap: 20px;
    margin-top: 50px;
  }
}

.l-footer__nav {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex: 1;
}
@media (max-width: 959.89px) {
  .l-footer__nav {
    flex-direction: column;
    gap: 30px;
  }
}

.l-footer__nav__group {
  list-style: none;
  width: 23%;
  border-top: 1px solid #ddd;
  padding: 30px 0 0 0;
}
@media (max-width: 959.89px) {
  .l-footer__nav__group {
    width: 100%;
  }
}

.l-footer__nav__heading {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  margin-bottom: 14px;
}

.l-footer__nav__heading__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #fff;
}

.l-footer__nav__heading__icon i {
  font-size: 1.2rem;
  color: #002A9A;
}

.l-footer__nav__heading__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #000;
}

.l-footer__nav__sub {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.l-footer__nav__sub.--two-col {
  flex-direction: row;
  gap: 0 30px;
}

.l-footer__nav__sub__col {
  list-style: none;
}

.l-footer__nav__sub__item {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  color: #002A9A;
  line-height: 28px;
}

.l-footer__nav__sub__item a {
  color: #002A9A;
  text-decoration: none;
}
@media (min-width: 960px) {
  .l-footer__nav__sub__item a:hover {
    text-decoration: underline;
  }
}

.l-footer__dept {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
  flex-shrink: 0;
  width: 680px;
  margin: 0 auto;
}
@media (max-width: 959.89px) {
  .l-footer__dept {
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
  }
}

.l-footer__dept__item {
  display: flex;
  align-items: center;
  border: 1px solid #002A9A;
  border-radius: 5px;
  background-color: #F2FBFC;
  text-decoration: none;
  overflow: hidden;
  height: 62px;
}
@media (min-width: 960px) {
  .l-footer__dept__item:hover {
    opacity: 0.7;
  }
}

.l-footer__dept__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  background-color: #fff;
  border-right: 1px solid #002A9A;
  flex-shrink: 0;
}

.l-footer__dept__icon img {
  width: 100px;
  height: auto;
}

.l-footer__dept__text {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 15px;
  font-family: "Noto Sans JP", sans-serif;
  white-space: nowrap;
}

.l-footer__dept__name {
  font-size: 1.8rem;
  font-weight: 600;
  color: #002A9A;
  line-height: 120%;
}

.l-footer__dept__sub {
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 130%;
  color: #002A9A;
}

.l-footer__copyright {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #000;
  margin-top: 60px;
  text-align: center;
}
@media (max-width: 959.89px) {
  .l-footer__copyright {
    margin-top: 40px;
    font-size: 1.2rem;
  }
}

.p-company-message {
  position: relative;
  padding: 40px 0;
  margin-bottom: 30px;
}

.p-company-message__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 65.7%;
  height: 100%;
  background-color: #EBF1FF;
  z-index: var(--z-base);
}
@media (max-width: 959.89px) {
  .p-company-message__bg {
    width: 100%;
  }
}

.p-company-message__inner {
  position: relative;
  z-index: 1;
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 var(--padding-pc);
}
@media (max-width: 959.89px) {
  .p-company-message__inner {
    padding: 0 var(--padding-sp);
  }
}

.p-company-message__header {
  margin-bottom: 46px;
}
@media (max-width: 959.89px) {
  .p-company-message__header {
    margin-bottom: 30px;
  }
}

.p-company-message__label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 35px;
}
@media (max-width: 959.89px) {
  .p-company-message__label {
    margin-bottom: 20px;
  }
}

.p-company-message__label-dot {
  display: inline-block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: #ED712F;
  flex-shrink: 0;
}

.p-company-message__label-text {
  font-family: "Gill Sans", "Gill Sans MT", sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #002A9A;
}
@media (max-width: 959.89px) {
  .p-company-message__label-text {
    font-size: 2rem;
  }
}

.p-company-message__heading {
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.06em;
  color: #000;
}
@media (max-width: 959.89px) {
  .p-company-message__heading {
    font-size: 2.8rem;
  }
}

.p-company-message__body {
  display: flex;
  gap: 85px;
}
@media (max-width: 959.89px) {
  .p-company-message__body {
    flex-direction: column;
    gap: 30px;
  }
}

.p-company-message__img {
  flex-shrink: 0;
  width: 359px;
}
@media (max-width: 959.89px) {
  .p-company-message__img {
    width: 100%;
    max-width: 359px;
  }
}

.p-company-message__img img {
  width: 100%;
  height: auto;
  display: block;
}

.p-company-message__content {
  flex: 1;
}

.p-company-message__text {
  font-size: 1.6rem;
  line-height: 200%;
  color: #000;
  margin: 0 0 15px 0;
}
@media (max-width: 959.89px) {
  .p-company-message__text {
    font-size: 1.5rem;
    line-height: 2.2;
  }
}

.p-company-message__text + .p-company-message__text {
  margin-top: 0;
}

.p-company-message__sign {
  display: flex;
  align-items: baseline;
  gap: 15px;
  margin-top: 30px;
}
@media (max-width: 959.89px) {
  .p-company-message__sign {
    margin-top: 20px;
  }
}

.p-company-message__sign-title {
  font-size: 1.4rem;
  color: #000;
}
@media (max-width: 959.89px) {
  .p-company-message__sign-title {
    font-size: 1.2rem;
  }
}

.p-company-message__sign-name {
  font-size: 2rem;
  font-weight: normal;
  letter-spacing: 0.02em;
  color: #000;
}
@media (max-width: 959.89px) {
  .p-company-message__sign-name {
    font-size: 1.8rem;
  }
}

.p-company-philosophy {
  padding: var(--section-gap-pc) 0;
}
@media (max-width: 959.89px) {
  .p-company-philosophy {
    padding: var(--section-gap-sp) 0;
  }
}

.p-company-philosophy__inner {
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 var(--padding-pc);
}
@media (max-width: 959.89px) {
  .p-company-philosophy__inner {
    padding: 0 var(--padding-sp);
  }
}

.p-company-philosophy__box {
  background-color: #002A9A;
  border-radius: 12px;
  padding: 70px;
  margin-bottom: 0;
}
@media (max-width: 959.89px) {
  .p-company-philosophy__box {
    padding: 36px 20px;
    border-radius: 8px;
    margin-bottom: 0;
  }
}

.p-company-philosophy__cards {
  display: flex;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 959.89px) {
  .p-company-philosophy__cards {
    flex-direction: column;
    gap: 20px;
  }
}

.p-company-philosophy__card {
  flex: 1;
  background-color: #fff;
  border-radius: 12px;
  padding: 40px 35px;
  text-align: center;
}
@media (max-width: 959.89px) {
  .p-company-philosophy__card {
    padding: 30px 20px;
    border-radius: 8px;
  }
}

.p-company-philosophy__card-num {
  font-family: "Gill Sans", "Gill Sans MT", sans-serif;
  font-size: 4.5rem;
  font-weight: 600;
  color: #002A9A;
  line-height: 1;
  margin-bottom: 15px;
}
@media (max-width: 959.89px) {
  .p-company-philosophy__card-num {
    font-size: 3.5rem;
  }
}

.p-company-philosophy__card-ttl {
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.54;
  color: #002A9A;
  margin-bottom: 20px;
}
@media (max-width: 959.89px) {
  .p-company-philosophy__card-ttl {
    font-size: 1.9rem;
    margin-bottom: 15px;
  }
}

.p-company-philosophy__card-text {
  font-size: 1.5rem;
  line-height: 2;
  letter-spacing: 0.02em;
  color: #000;
  text-align: left;
}
@media (max-width: 959.89px) {
  .p-company-philosophy__card-text {
    font-size: 1.4rem;
  }
}

.p-company-profile {
  padding: var(--section-gap-pc) 0;
  padding-bottom: 80px;
}
@media (max-width: 959.89px) {
  .p-company-profile {
    padding: 0 0 var(--section-gap-sp) 0;
    padding-bottom: 40px;
  }
}
.p-company-profile:last-child {
  padding-bottom: 0;
}

.p-company-profile__inner {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 var(--padding-pc);
  display: flex;
  gap: 67px;
}
@media (max-width: 959.89px) {
  .p-company-profile__inner {
    flex-direction: column;
    padding: 0 var(--padding-sp);
    gap: 10px;
  }
}

.p-company-profile__side {
  flex-shrink: 0;
  width: 460px;
}
@media (max-width: 959.89px) {
  .p-company-profile__side {
    width: 100%;
  }
}

.p-company-profile__imgs {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (max-width: 959.89px) {
  .p-company-profile__imgs {
    position: static;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
}

.p-company-profile__imgs img {
  width: 100%;
  height: auto;
  display: block;
}

.p-company-profile__imgs img.one {
  position: relative;
  left: -100px;
}
@media (max-width: 959.89px) {
  .p-company-profile__imgs img.one {
    position: static;
  }
}

.p-company-profile__imgs img.two {
  position: relative;
  top: -100px;
}
@media (max-width: 959.89px) {
  .p-company-profile__imgs img.two {
    position: static;
  }
}

.p-company-profile__main {
  flex: 1;
  min-width: 0;
}

.p-company-profile__header {
  margin-bottom: 46px;
}
@media (max-width: 959.89px) {
  .p-company-profile__header {
    margin-bottom: 30px;
  }
}

.p-company-profile__label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 35px;
}
@media (max-width: 959.89px) {
  .p-company-profile__label {
    margin-bottom: 20px;
  }
}

.p-company-profile__label-dot {
  display: inline-block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: #ED712F;
  flex-shrink: 0;
}

.p-company-profile__label-text {
  font-family: "Gill Sans", "Gill Sans MT", sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #002A9A;
}
@media (max-width: 959.89px) {
  .p-company-profile__label-text {
    font-size: 2rem;
  }
}

.p-company-profile__heading {
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.06em;
  color: #000;
  margin-top: 30px;
}
@media (max-width: 959.89px) {
  .p-company-profile__heading {
    font-size: 2.8rem;
  }
}

.c-dl {
  margin: 0;
}

.c-dl dl {
  display: flex;
  gap: 30px;
  margin: 0;
}
@media (max-width: 959.89px) {
  .c-dl dl {
    flex-direction: column;
    gap: 8px;
  }
}

.c-dl dt {
  flex-shrink: 0;
  width: 150px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: normal;
  color: #002A9A;
  border-top: 1px solid rgba(0, 0, 0, 0.25);
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (max-width: 959.89px) {
  .c-dl dt {
    width: 100%;
    padding-top: 15px;
    padding-bottom: 0;
  }
}

.c-dl dl:last-child dt {
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}
@media (max-width: 959.89px) {
  .c-dl dl:last-child dt {
    border-bottom: none;
  }
}

.c-dl dd {
  flex: 1;
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: normal;
  color: #000;
  line-height: 1.875;
  border-top: 1px solid rgba(0, 0, 0, 0.25);
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (max-width: 959.89px) {
  .c-dl dd {
    border-top: none;
    padding-top: 0;
    padding-bottom: 30px;
  }
}

.c-dl dl:last-child dd {
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}
@media (max-width: 959.89px) {
  .c-dl dl:last-child dd {
    border-bottom: none;
  }
}

.c-dl__career {
  width: 100%;
  border-collapse: collapse;
}
.c-dl__career td {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: normal;
  color: #000;
  line-height: 1.875;
  padding: 0;
  vertical-align: top;
  white-space: nowrap;
}
@media (max-width: 959.89px) {
  .c-dl__career td {
    font-size: 1.5rem;
  }
}
.c-dl__career td:first-child {
  width: 6em;
  padding-right: 1em;
}
@media (max-width: 959.89px) {
  .c-dl__career td:first-child {
    width: 5.5em;
    padding-right: 0.5em;
  }
}
.c-dl__career td:last-child {
  white-space: normal;
}

.c-dl__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.c-dl__list li {
  position: relative;
  padding-left: 1em;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: normal;
  color: #000;
  line-height: 1.875;
}
.c-dl__list li::before {
  content: "・";
  position: absolute;
  left: 0;
}
@media (max-width: 959.89px) {
  .c-dl__list li {
    font-size: 1.5rem;
  }
}

.p-doctors-cooperation {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 959.89px) {
  .p-doctors-cooperation {
    padding-top: var(--section-gap-sp);
    padding-bottom: var(--section-gap-sp);
  }
}

.p-doctors-cooperation__inner {
  max-width: 1230px;
  padding-left: var(--padding-pc);
  padding-right: var(--padding-pc);
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 959.89px) {
  .p-doctors-cooperation__inner {
    max-width: 600px;
    padding-left: var(--padding-sp);
    padding-right: var(--padding-sp);
  }
}

.p-doctors-cooperation__head {
  border-top: 1px solid #ddd;
  padding-top: 60px;
}
@media (max-width: 959.89px) {
  .p-doctors-cooperation__head {
    padding-top: 40px;
  }
}

.p-doctors-cooperation__ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.2rem;
  font-weight: 600;
  color: #002A9A;
  line-height: 90%;
  padding-left: 22px;
  position: relative;
}
@media (max-width: 959.89px) {
  .p-doctors-cooperation__ttl {
    font-size: 2.4rem;
    padding-left: 18px;
  }
}

.p-doctors-cooperation__ttl::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: #ED712F;
}

.p-doctors-cooperation__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #000;
  line-height: 200%;
  margin-top: 30px;
}
@media (max-width: 959.89px) {
  .p-doctors-cooperation__text {
    font-size: 1.4rem;
    margin-top: 20px;
  }
}

.p-doctors-cooperation__list {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}
@media (max-width: 959.89px) {
  .p-doctors-cooperation__list {
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
  }
}

.p-doctors-cooperation__item {
  flex: 1;
  display: block;
  text-decoration: none;
  color: inherit;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}
@media (min-width: 960px) {
  .p-doctors-cooperation__item:hover {
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.14);
    transform: translateY(-4px);
  }
}

.p-doctors-cooperation__img {
  width: 100%;
  height: 250px;
  overflow: hidden;
}
@media (max-width: 959.89px) {
  .p-doctors-cooperation__img {
    height: 180px;
  }
}

.p-doctors-cooperation__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
@media (min-width: 960px) {
  .p-doctors-cooperation__item:hover .p-doctors-cooperation__img img {
    transform: scale(1.05);
  }
}

.p-doctors-cooperation__body {
  padding: 24px 22px 28px;
}
@media (max-width: 959.89px) {
  .p-doctors-cooperation__body {
    padding: 20px 18px 24px;
  }
}

.p-doctors-cooperation__name {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #002A9A;
  line-height: 150%;
  margin-bottom: 12px;
}
@media (max-width: 959.89px) {
  .p-doctors-cooperation__name {
    font-size: 1.7rem;
    margin-bottom: 10px;
  }
}

.p-doctors-cooperation__link-label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #002A9A;
  transition: gap 0.3s;
}
.p-doctors-cooperation__link-label i {
  font-size: 1.8rem;
  transition: transform 0.3s;
}
@media (min-width: 960px) {
  .p-doctors-cooperation__item:hover .p-doctors-cooperation__link-label {
    gap: 8px;
  }
  .p-doctors-cooperation__item:hover .p-doctors-cooperation__link-label i {
    transform: translateX(2px);
  }
}
@media (max-width: 959.89px) {
  .p-doctors-cooperation__link-label {
    font-size: 1.3rem;
  }
}

@media (max-width: 959.89px) {
  .p-access-top ~ .p-access-top,
  main > .c-ttl:first-child {
    padding-top: 30px;
  }
}

.p-access-top {
  padding: 0 60px 80px;
}
@media (max-width: 959.89px) {
  .p-access-top {
    padding: 0 var(--padding-sp) 40px;
  }
}

.p-access-top__inner {
  margin: 0 auto;
  background-color: #f8f8ff;
  border: 1px solid #ddd;
  padding: 60px 0;
  border-radius: 10px;
}
@media (max-width: 959.89px) {
  .p-access-top__inner {
    padding: 40px 20px;
    border-radius: 8px;
  }
}

.p-access-top__row {
  display: flex;
  gap: 30px;
  align-items: stretch;
  width: min(90%, 1250px);
  margin-inline: auto;
}
@media (max-width: 959.89px) {
  .p-access-top__row {
    width: 100%;
    flex-direction: column;
    gap: 40px;
  }
}

.p-access-top__col {
  flex: 1;
  min-width: 0;
}

.p-access-hours {
  padding: 0;
}
@media (max-width: 959.89px) {
  .p-access-hours {
    padding: 0 20px;
  }
}

.p-access-hours__inner {
  max-width: 1230px;
  margin: 0 auto;
  padding: 0 var(--padding-pc);
}
@media (max-width: 959.89px) {
  .p-access-hours__inner {
    padding: 0 var(--padding-sp);
  }
}

.p-access-hours__placeholder {
  background-color: #f1f1f1;
  border: 1px solid #ccc;
  border-radius: 3px;
  text-align: center;
  margin-top: 20px;
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 959.89px) {
  .p-access-hours__placeholder {
    height: 250px;
    margin-top: 16px;
  }
}

.p-access-hours__placeholder-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: #999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.p-access-hours__placeholder-text i {
  font-size: 2.4rem;
}

.p-access-map {
  padding: 0;
  display: flex;
  flex-direction: column;
}
@media (max-width: 959.89px) {
  .p-access-map {
    padding: 0 20px;
  }
}

.p-access-map__inner {
  max-width: 1230px;
  margin: 0 auto;
  padding: 0 var(--padding-pc);
}
@media (max-width: 959.89px) {
  .p-access-map__inner {
    padding: 0 var(--padding-sp);
  }
}

.p-access-map__body {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}
@media (max-width: 959.89px) {
  .p-access-map__body {
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
  }
}

.p-access-map__gmap {
  flex: 1;
  margin-top: 10px;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid #ddd;
}
@media (max-width: 959.89px) {
  .p-access-map__gmap {
    min-height: 280px;
    margin-top: 10px;
  }
}
.p-access-map__gmap iframe {
  display: block;
  width: 100%;
  height: 100%;
}
@media (max-width: 959.89px) {
  .p-access-map__gmap iframe {
    height: 280px;
  }
}

.p-access-map__img {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.08);
}
.p-access-map__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p-access-mapimg {
  width: min(90%, 1250px);
  margin: 80px auto 0;
  padding-top: 50px;
  border-top: 1px solid #ddd;
}
@media (max-width: 959.89px) {
  .p-access-mapimg {
    width: 100%;
    margin-top: 50px;
    padding-top: 30px;
  }
}

.p-access-mapimg__row {
  display: flex;
  gap: 30px;
  margin: 20px auto 0;
  width: 850px;
}
@media (max-width: 959.89px) {
  .p-access-mapimg__row {
    flex-direction: column;
    gap: 20px;
    margin-top: 0px;
    width: 100%;
  }
}

.p-access-mapimg__col {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.p-access-mapimg__col img {
  width: 100%;
  height: auto;
  display: block;
}

.p-access-info {
  padding: var(--section-gap-pc) 0 80px;
  padding-top: 0;
}
@media (max-width: 959.89px) {
  .p-access-info {
    padding: var(--section-gap-sp) 0 40px;
    padding-top: 0;
  }
}

.p-access-info__inner {
  width: min(90%, 1250px);
  margin: 0 auto;
}
@media (max-width: 959.89px) {
  .p-access-info__inner {
    width: 100%;
    padding: 0 var(--padding-sp);
  }
}

.p-access-info__card {
  background-color: #fff;
  border-radius: 12px;
  border: 1px solid #ddd;
  padding: 60px 100px;
  margin-top: 40px;
}
@media (max-width: 959.89px) {
  .p-access-info__card {
    padding: 30px 20px;
    margin-top: 30px;
  }
}

.p-access-info__address {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #eee;
}
@media (max-width: 959.89px) {
  .p-access-info__address {
    margin-bottom: 24px;
    padding-bottom: 24px;
  }
}

.p-access-info__zip {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #666;
  margin-bottom: 4px;
}

.p-access-info__addr {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: #000;
  letter-spacing: 0.06em;
  margin-top: 10px;
}
@media (max-width: 959.89px) {
  .p-access-info__addr {
    font-size: 1.8rem;
  }
}

.p-access-info__floors {
  display: flex;
  gap: 60px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #eee;
}
@media (max-width: 959.89px) {
  .p-access-info__floors {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
    padding-bottom: 24px;
  }
}

.p-access-info__floor {
  flex: 1;
}

.p-access-info__floor-label {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #002A9A;
  margin-bottom: 12px;
}
@media (max-width: 959.89px) {
  .p-access-info__floor-label {
    font-size: 1.6rem;
  }
}

.p-access-info__floor-name {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #000;
  line-height: 2;
}

.p-access-info__floor-tel {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #000;
  margin-top: 10px;
}
@media (max-width: 959.89px) {
  .p-access-info__floor-tel {
    font-size: 1.8rem;
  }
}
.p-access-info__floor-tel a {
  color: #002A9A;
  text-decoration: none;
}
@media (min-width: 960px) {
  .p-access-info__floor-tel a:hover {
    text-decoration: underline;
  }
}

.p-access-info__note {
  display: flex;
  gap: 30px;
}
@media (max-width: 959.89px) {
  .p-access-info__note {
    flex-direction: column;
    gap: 8px;
  }
}
.p-access-info__note p {
  display: flex;
  gap: 6px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #555;
}
.p-access-info__note p i {
  font-size: 2rem;
  color: #002A9A;
}

.p-access-station {
  padding: 80px 0;
  background-color: #f8f8ff;
}
@media (max-width: 959.89px) {
  .p-access-station {
    padding: var(--section-gap-sp) 0;
  }
}

.p-access-station__inner {
  max-width: 1230px;
  margin: 0 auto;
  padding: 0 var(--padding-pc);
}
@media (max-width: 959.89px) {
  .p-access-station__inner {
    padding: 0 var(--padding-sp);
  }
}

.p-access-station__head {
  border-top: 1px solid #ddd;
  padding-top: 60px;
}
@media (max-width: 959.89px) {
  .p-access-station__head {
    padding-top: 40px;
  }
}

.p-access-station__ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.2rem;
  font-weight: 600;
  color: #002A9A;
  line-height: 90%;
  padding-left: 22px;
  position: relative;
}
@media (max-width: 959.89px) {
  .p-access-station__ttl {
    font-size: 2.4rem;
    padding-left: 18px;
  }
}
.p-access-station__ttl::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: #ED712F;
}

.p-access-station__body {
  margin-top: 40px;
}
@media (max-width: 959.89px) {
  .p-access-station__body {
    margin-top: 30px;
  }
}

.p-access-station__item {
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.08);
  padding: 30px 40px;
}
@media (max-width: 959.89px) {
  .p-access-station__item {
    padding: 24px 20px;
    gap: 16px;
  }
}

.p-access-station__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #002A9A;
  color: #fff;
  flex-shrink: 0;
}
@media (max-width: 959.89px) {
  .p-access-station__icon {
    width: 48px;
    height: 48px;
  }
}
.p-access-station__icon i {
  font-size: 2.8rem;
}
@media (max-width: 959.89px) {
  .p-access-station__icon i {
    font-size: 2.2rem;
  }
}

.p-access-station__route {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #555;
  margin-bottom: 4px;
}

.p-access-station__time {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #000;
}
@media (max-width: 959.89px) {
  .p-access-station__time {
    font-size: 1.8rem;
  }
}

.p-access-station__min {
  font-family: "Open Sans", sans-serif;
  font-size: 3.6rem;
  font-weight: 700;
  color: #002A9A;
  margin: 0 2px;
}
@media (max-width: 959.89px) {
  .p-access-station__min {
    font-size: 2.8rem;
  }
}

.p-access-facility {
  padding: 0 0 80px 0;
}
@media (max-width: 959.89px) {
  .p-access-facility {
    padding: 0 0 40px 0;
  }
}

.p-access-facility__inner {
  width: min(90%, 1250px);
  margin: 0 auto;
}
@media (max-width: 959.89px) {
  .p-access-facility__inner {
    width: 100%;
    padding: 0 var(--padding-sp);
  }
}

.p-access-facility__ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.2rem;
  font-weight: 600;
  color: #002A9A;
  line-height: 90%;
  padding-left: 22px;
  position: relative;
}
@media (max-width: 959.89px) {
  .p-access-facility__ttl {
    font-size: 2.4rem;
    padding-left: 18px;
  }
}
.p-access-facility__ttl::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: #ED712F;
}

.p-access-facility__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 959.89px) {
  .p-access-facility__grid {
    grid-template-columns: 1fr;
    gap: 7px;
    margin-top: 30px;
  }
}

.p-access-facility__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background-color: #f8f8ff;
  border-radius: 12px;
  padding: 28px 24px;
}
@media (max-width: 959.89px) {
  .p-access-facility__item {
    padding: 22px 20px;
  }
}

.p-access-facility__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #002A9A;
  color: #fff;
  flex-shrink: 0;
}
.p-access-facility__icon i {
  font-size: 2rem;
}

.p-access-facility__name {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #002A9A;
  line-height: 1.4;
  margin-top: 6px;
  margin-bottom: 6px;
}
@media (max-width: 959.89px) {
  .p-access-facility__name {
    font-size: 1.6rem;
  }
}

.p-access-facility__desc {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #555;
  line-height: 180%;
}

.p-access-shuttle {
  padding: 0;
}

.p-access-shuttle__inner {
  width: min(90%, 1250px);
  margin: 0 auto;
}
@media (max-width: 959.89px) {
  .p-access-shuttle__inner {
    width: 100%;
    padding: 0 var(--padding-sp);
  }
}

.p-access-shuttle__card {
  background-color: #EBF1FF;
  border-radius: 5px;
  padding: 60px 70px;
}
@media (max-width: 959.89px) {
  .p-access-shuttle__card {
    padding: 30px 20px;
    border-radius: 4px;
  }
}

.p-access-shuttle__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.p-access-shuttle__head-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #002A9A;
  color: #fff;
  flex-shrink: 0;
}
@media (max-width: 959.89px) {
  .p-access-shuttle__head-icon {
    width: 48px;
    height: 48px;
  }
}
.p-access-shuttle__head-icon i {
  font-size: 2.6rem;
}
@media (max-width: 959.89px) {
  .p-access-shuttle__head-icon i {
    font-size: 2.2rem;
  }
}

.p-access-shuttle__head-ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #002A9A;
}
@media (max-width: 959.89px) {
  .p-access-shuttle__head-ttl {
    font-size: 2.2rem;
  }
}

.p-access-shuttle__lead {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 24px;
}
@media (max-width: 959.89px) {
  .p-access-shuttle__lead {
    font-size: 1.6rem;
  }
}

.p-access-shuttle__target {
  background-color: #fff;
  border-radius: 12px;
  padding: 24px 30px;
  margin-bottom: 24px;
}
@media (max-width: 959.89px) {
  .p-access-shuttle__target {
    padding: 20px;
  }
}

.p-access-shuttle__target-ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #002A9A;
  margin-bottom: 10px;
}

.p-access-shuttle__target-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #000;
  line-height: 200%;
}

.p-access-shuttle__notes {
  margin-bottom: 30px;
}

.p-access-shuttle__notes-list {
  list-style: none;
}
.p-access-shuttle__notes-list li {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #555;
  line-height: 200%;
  padding-left: 18px;
  position: relative;
}
.p-access-shuttle__notes-list li::before {
  content: "※";
  position: absolute;
  left: 0;
  color: #002A9A;
}

.p-access-shuttle__cta {
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: #fff;
  border-radius: 12px;
  padding: 24px 30px;
}
@media (max-width: 959.89px) {
  .p-access-shuttle__cta {
    flex-direction: column;
    padding: 20px;
    gap: 12px;
  }
}

.p-access-shuttle__cta-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #000;
}

.p-access-shuttle__cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Open Sans", sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: #002A9A;
  text-decoration: none;
  white-space: nowrap;
}
@media (max-width: 959.89px) {
  .p-access-shuttle__cta-phone {
    font-size: 2.2rem;
  }
}
.p-access-shuttle__cta-phone i {
  font-size: 2.2rem;
}
@media (min-width: 960px) {
  .p-access-shuttle__cta-phone:hover {
    opacity: 0.7;
  }
}

.p-access-info__card .p-index-access__badges {
  grid-template-columns: repeat(4, 1fr);
  margin: 20px 0 0 0;
}
@media (max-width: 959.89px) {
  .p-access-info__card .p-index-access__badges {
    grid-template-columns: repeat(2, 1fr);
  }
}

.c-about.--helper {
  padding-top: 120px;
}
@media (max-width: 959.89px) {
  .c-about.--helper {
    padding-top: 60px;
  }
}

.c-about.--helper ~ .c-symptom,
.p-access-top + .c-symptom {
  padding-top: 40px;
  padding-bottom: 0;
}
@media (max-width: 959.89px) {
  .c-about.--helper ~ .c-symptom,
  .p-access-top + .c-symptom {
    padding-top: 24px;
    padding-bottom: 0;
  }
}

.p-wd-target + .c-symptom {
  padding-top: 80px;
  padding-bottom: 20px;
}
@media (max-width: 959.89px) {
  .p-wd-target + .c-symptom {
    padding-top: var(--section-gap-sp);
    padding-bottom: 12px;
  }
}

.p-wd-cta {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 60px;
  padding-right: 60px;
}
@media (max-width: 959.89px) {
  .p-wd-cta {
    padding-left: var(--padding-sp);
    padding-right: var(--padding-sp);
  }
}

.p-wd-cta .c-inner {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.p-wd-cta__box {
  background: linear-gradient(135deg, #002A9A 0%, #1a4fc9 100%);
  border-radius: 10px;
  padding: 70px 40px;
  text-align: center;
}
@media (max-width: 959.89px) {
  .p-wd-cta__box {
    padding: 36px 20px;
  }
}
.p-wd-cta__box .c-section-ttl__bg {
  color: rgba(255, 255, 255, 0.2);
}
.p-wd-cta__box .c-section-ttl__ja {
  color: #fff;
}

.p-wd-cta__lead {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 30px;
}
@media (max-width: 959.89px) {
  .p-wd-cta__lead {
    font-size: 1.8rem;
    margin-bottom: 24px;
  }
}

.p-wd-cta__buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 959.89px) {
  .p-wd-cta__buttons {
    flex-direction: column;
    gap: 14px;
  }
}

.p-wd-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 30px 15px;
  border-radius: 60px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.3s, transform 0.3s;
  width: 400px;
}
@media (max-width: 959.89px) {
  .p-wd-cta__btn {
    font-size: 1.6rem;
    padding: 20px 15px;
    width: 100%;
  }
}
@media (min-width: 960px) {
  .p-wd-cta__btn:hover {
    opacity: 0.85;
    transform: translateY(-2px);
  }
}

.p-wd-cta__btn.--primary {
  background-color: #ED712F;
  color: #fff;
}

.p-wd-cta__btn.--primary i {
  font-size: 2.2rem;
}
@media (max-width: 959.89px) {
  .p-wd-cta__btn.--primary i {
    font-size: 1.8rem;
  }
}

.p-wd-cta__btn.--phone {
  background-color: #fff;
  color: #002A9A;
}

.p-wd-cta__btn.--phone i {
  font-size: 2.5rem;
}
@media (max-width: 959.89px) {
  .p-wd-cta__btn.--phone i {
    font-size: 2rem;
  }
}

.p-wd-cta__btn.--phone span small {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  margin-top: 0px;
  color: #002A9A;
}

.p-wd-cta.--bottom {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 959.89px) {
  .p-wd-cta.--bottom {
    padding-top: var(--section-gap-sp);
    padding-bottom: var(--section-gap-sp);
  }
}

.p-wd-target {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #f8f8ff;
}
@media (max-width: 959.89px) {
  .p-wd-target {
    padding-top: var(--section-gap-sp);
    padding-bottom: var(--section-gap-sp);
  }
}

.p-access-top__col.p-wd-target,
.p-access-top__col.p-wd-care {
  padding: 0;
  background-color: transparent;
  display: flex;
  flex-direction: column;
}

.p-access-top__col .p-wd-target__card,
.p-access-top__col .p-wd-recommend__card,
.p-access-top__col .p-wd-care__grid {
  flex: 1;
}

.p-wd-target__card {
  max-width: 900px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.08);
  padding: 50px 60px;
}
@media (max-width: 959.89px) {
  .p-wd-target__card {
    padding: 30px 20px;
    border-radius: 8px;
  }
}

.p-access-top__col .p-wd-target__card {
  max-width: 100%;
}

.p-wd-target__card p {
  line-height: 200%;
}

.p-wd-target__badges {
  display: flex;
  gap: 20px;
  margin-top: 24px;
  margin-bottom: 24px;
}
@media (max-width: 959.89px) {
  .p-wd-target__badges {
    flex-direction: column;
    gap: 12px;
  }
}

.p-wd-target__badge {
  flex: 1;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  background-color: #002A9A;
  color: #fff;
}
@media (max-width: 959.89px) {
  .p-wd-target__badge {
    padding: 16px;
  }
}

.p-wd-target__badge__label {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
@media (max-width: 959.89px) {
  .p-wd-target__badge__label {
    font-size: 1.6rem;
  }
}

.p-wd-target__badge__desc {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
}
@media (max-width: 959.89px) {
  .p-wd-target__badge__desc {
    font-size: 1.4rem;
  }
}

.p-wd-recommend {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 959.89px) {
  .p-wd-recommend {
    padding-top: var(--section-gap-sp);
    padding-bottom: var(--section-gap-sp);
  }
}

.p-wd-recommend__card {
  max-width: 800px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.14);
  padding: 70px 98px;
}
@media (max-width: 959.89px) {
  .p-wd-recommend__card {
    padding: 30px 20px;
  }
}

.p-access-top__col .p-wd-recommend__card {
  max-width: 100%;
}

.p-wd-recommend__list {
  list-style: none;
}

.p-wd-recommend__list li {
  display: flex;
  align-items: baseline;
  gap: 7px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: #000;
  line-height: 35px;
}
@media (max-width: 959.89px) {
  .p-wd-recommend__list li {
    font-size: 1.5rem;
    line-height: 30px;
  }
}

.p-wd-recommend__list li i {
  color: #ED712F;
  font-size: 2rem;
  flex-shrink: 0;
}
@media (max-width: 959.89px) {
  .p-wd-recommend__list li i {
    font-size: 1.6rem;
  }
}

.p-wd-care {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 959.89px) {
  .p-wd-care {
    padding-top: var(--section-gap-sp);
    padding-bottom: var(--section-gap-sp);
  }
}

.p-wd-care__lead {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  color: #555;
  line-height: 200%;
  margin-bottom: 40px;
}
@media (max-width: 959.89px) {
  .p-wd-care__lead {
    font-size: 1.4rem;
    text-align: left;
    margin-bottom: 30px;
  }
}

.p-wd-care__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 959.89px) {
  .p-wd-care__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

.p-access-top__col .p-wd-care__grid {
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
}
@media (max-width: 959.89px) {
  .p-access-top__col .p-wd-care__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.p-wd-care__item {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
  padding: 30px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 959.89px) {
  .p-wd-care__item {
    padding: 24px 12px;
  }
}

.p-wd-care__item__inner {
  width: 100%;
}

.p-wd-care__item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(0, 42, 154, 0.08);
  margin: 0 auto 16px;
}
@media (max-width: 959.89px) {
  .p-wd-care__item__icon {
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
  }
}

.p-wd-care__item__icon i {
  font-size: 2.8rem;
  color: #002A9A;
}
@media (max-width: 959.89px) {
  .p-wd-care__item__icon i {
    font-size: 2.4rem;
  }
}

.p-wd-care__item__name {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #002A9A;
  line-height: 1.5;
  margin-bottom: 10px;
}
@media (max-width: 959.89px) {
  .p-wd-care__item__name {
    font-size: 2rem;
    margin-bottom: 6px;
  }
}

.p-wd-care__note {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  color: #797979;
  line-height: 200%;
  margin-top: 30px;
}
@media (max-width: 959.89px) {
  .p-wd-care__note {
    font-size: 1.3rem;
    text-align: left;
    margin-top: 24px;
  }
}

.p-wd-equipment {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 959.89px) {
  .p-wd-equipment {
    padding-top: var(--section-gap-sp);
    padding-bottom: var(--section-gap-sp);
  }
}

.p-wd-equipment__category {
  margin-bottom: 50px;
}
.p-wd-equipment__category:last-child {
  margin-bottom: 0;
}
@media (max-width: 959.89px) {
  .p-wd-equipment__category {
    margin-bottom: 36px;
  }
}

.p-wd-equipment__category.--has-photo {
  display: flex;
  gap: 0;
  align-items: stretch;
}
@media (max-width: 959.89px) {
  .p-wd-equipment__category.--has-photo {
    flex-direction: column;
    gap: 0;
  }
}

.p-wd-equipment__category__photo {
  width: 40%;
  flex-shrink: 0;
  border-radius: 5px 0 0 5px;
  overflow: hidden;
}
@media (max-width: 959.89px) {
  .p-wd-equipment__category__photo {
    width: 100%;
    height: 200px;
    border-radius: 5px 5px 0 0;
  }
}
.p-wd-equipment__category__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-wd-equipment__category.--has-photo .p-wd-equipment__category__card {
  width: 60%;
}
@media (max-width: 959.89px) {
  .p-wd-equipment__category.--has-photo .p-wd-equipment__category__card {
    border-radius: 0 0 4px 4px;
    width: 100%;
  }
}

.p-wd-equipment__category.--has-photo .p-wd-equipment__category__grid {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 959.89px) {
  .p-wd-equipment__category.--has-photo .p-wd-equipment__category__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.p-wd-equipment__category__card {
  background-color: #EBF1FF;
  border-radius: 0 5px 5px 0;
  padding: 30px 40px;
}
@media (max-width: 959.89px) {
  .p-wd-equipment__category__card {
    padding: 30px 20px;
    border-radius: 4px;
  }
}

.p-wd-equipment__category__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.p-wd-equipment__category__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #002A9A;
  color: #fff;
  flex-shrink: 0;
}
@media (max-width: 959.89px) {
  .p-wd-equipment__category__icon {
    width: 48px;
    height: 48px;
  }
}
.p-wd-equipment__category__icon i {
  font-size: 2.6rem;
}
@media (max-width: 959.89px) {
  .p-wd-equipment__category__icon i {
    font-size: 2.2rem;
  }
}

.p-wd-equipment__category__ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #002A9A;
}
@media (max-width: 959.89px) {
  .p-wd-equipment__category__ttl {
    font-size: 2.2rem;
  }
}

.p-wd-equipment__category__lead {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #000;
  margin-bottom: 24px;
}
@media (max-width: 959.89px) {
  .p-wd-equipment__category__lead {
    font-size: 1.6rem;
  }
}

.p-wd-equipment__category__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 959.89px) {
  .p-wd-equipment__category__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

.p-wd-equipment__card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.p-wd-equipment__card__img {
  width: 100%;
  height: 160px;
  overflow: hidden;
}
@media (max-width: 959.89px) {
  .p-wd-equipment__card__img {
    height: 120px;
  }
}

.p-wd-equipment__card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-wd-equipment__card__body {
  padding: 16px;
}
@media (max-width: 959.89px) {
  .p-wd-equipment__card__body {
    padding: 16px;
  }
}

.p-wd-equipment__card__name {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #002A9A;
  margin-bottom: 6px;
}
@media (max-width: 959.89px) {
  .p-wd-equipment__card__name {
    font-size: 1.6rem;
    margin-bottom: 4px;
  }
}

.p-wd-equipment__card__desc {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.3rem;
  color: #555;
  line-height: 180%;
}
@media (max-width: 959.89px) {
  .p-wd-equipment__card__desc {
    font-size: 1.4rem;
  }
}

.p-wd-schedule {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #f8f8ff;
}
@media (max-width: 959.89px) {
  .p-wd-schedule {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.p-wd-schedule__lead {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 200%;
  margin-bottom: 40px;
}
@media (max-width: 959.89px) {
  .p-wd-schedule__lead {
    font-size: 1.6rem;
    text-align: left;
    margin-bottom: 30px;
  }
}

.p-wd-schedule__columns {
  display: flex;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 959.89px) {
  .p-wd-schedule__columns {
    flex-direction: column;
    gap: 24px;
  }
}

.p-wd-schedule__column {
  flex: 1;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
  padding: 30px;
  overflow: hidden;
}
@media (max-width: 959.89px) {
  .p-wd-schedule__column {
    padding: 24px 20px;
    border-radius: 8px;
  }
}

.p-wd-schedule__column__ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #002A9A;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #002A9A;
}
@media (max-width: 959.89px) {
  .p-wd-schedule__column__ttl {
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
  }
}

.p-wd-schedule__column__ttl i {
  font-size: 2.4rem;
  color: #ED712F;
}
@media (max-width: 959.89px) {
  .p-wd-schedule__column__ttl i {
    font-size: 2rem;
  }
}

.p-wd-schedule__column__ttl small {
  font-size: 1.3rem;
  font-weight: 400;
  color: #797979;
}
@media (max-width: 959.89px) {
  .p-wd-schedule__column__ttl small {
    font-size: 1.2rem;
  }
}

.p-wd-schedule__timeline {
  list-style: none;
}

.p-wd-schedule__timeline li {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px dashed #e0e0e0;
}
.p-wd-schedule__timeline li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
@media (max-width: 959.89px) {
  .p-wd-schedule__timeline li {
    gap: 12px;
    padding: 10px 0;
  }
}

.p-wd-schedule__time {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #002A9A;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 70px;
}
@media (max-width: 959.89px) {
  .p-wd-schedule__time {
    font-size: 1.4rem;
    min-width: 60px;
  }
}

.p-wd-schedule__desc {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  color: #000;
  line-height: 1.6;
}
@media (max-width: 959.89px) {
  .p-wd-schedule__desc {
    font-size: 1.4rem;
  }
}

.p-wd-schedule__note {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  color: #777;
  margin-top: 30px;
}
@media (max-width: 959.89px) {
  .p-wd-schedule__note {
    font-size: 1.4rem;
    margin-top: 24px;
  }
}

.p-index-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  border-radius: 0;
}
@media (max-width: 959.89px) {
  .p-index-hero {
    height: 400px;
  }
}

.p-index-hero__bg {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  height: calc(100% - 20px);
  border-radius: 0;
  overflow: hidden;
}
@media (max-width: 959.89px) {
  .p-index-hero__bg {
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    height: calc(100% - 10px);
  }
}

.p-index-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-index-hero__bg.slick-initialized .slick-list,
.p-index-hero__bg.slick-initialized .slick-track {
  height: 100% !important;
}
.p-index-hero__bg.slick-initialized .slick-slide {
  height: 100% !important;
}
.p-index-hero__bg.slick-initialized .slick-slide > div {
  height: 100% !important;
}

.p-index-hero__slide {
  width: 100%;
  height: 100%;
}

.p-index-hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.p-index-hero__overlay-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 240px;
  background: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.87) 20%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.7;
  z-index: 1;
}

.p-index-hero__overlay-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 340px;
  background: linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.5;
  z-index: 1;
}

.p-index-hero__catch {
  position: absolute;
  left: 100px;
  bottom: 100px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 5.5rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #002A9A;
  text-shadow: white 1px 0px, white -1px 0px, white 0px -1px, white 0px 1px, white 1px 1px, white -1px 1px, white 1px -1px, white -1px -1px, white 1px 1px, white -1px 1px, white 1px -1px, white -1px -1px, white 1px 1px, white -1px 1px, white 1px -1px, white -1px -1px;
  z-index: 2;
}
@media (max-width: 959.89px) {
  .p-index-hero__catch {
    left: 20px;
    bottom: 20px;
    font-size: 2.8rem;
  }
}

.p-index-hero__card {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 436px;
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.12);
  padding: 20px;
  z-index: 2;
}
@media (max-width: 959.89px) {
  .p-index-hero__card {
    display: none;
  }
}

.p-index-hero__dept {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.p-index-hero__dept__item {
  display: flex;
  align-items: center;
  height: 80px;
  border-radius: 5px;
  border: 1px solid #002A9A;
  background-color: #F2FBFC;
  text-decoration: none;
  overflow: hidden;
  transition: opacity 0.3s var(--easing);
}
@media (min-width: 960px) {
  .p-index-hero__dept__item:hover {
    opacity: 0.7;
  }
}

.p-index-hero__dept__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 81px;
  height: 100%;
  background-color: #fff;
  border-right: 1px solid #002A9A;
  flex-shrink: 0;
}

.p-index-hero__dept__icon img {
  width: 100%;
  height: auto;
}

.p-index-hero__dept__text {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 18px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #002A9A;
}

.p-index-hero__dept__sub {
  font-size: 1.5rem;
  font-weight: 600;
  color: #002A9A;
  letter-spacing: -0.05em;
}

.p-index-hero__shortcuts {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.p-index-hero__shortcut {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: opacity 0.3s var(--easing);
}
@media (min-width: 960px) {
  .p-index-hero__shortcut:hover {
    opacity: 0.7;
  }
}

.p-index-hero__shortcut__circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #002A9A;
  color: #fff;
  font-size: 2.4rem;
}

.p-index-hero__shortcut__label {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #000;
  text-align: center;
}

.p-index-info {
  background-color: #F8F8F8;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (max-width: 959.89px) {
  .p-index-info {
    padding-top: 30px;
    padding-bottom: 40px;
  }
}

.p-index-info__inner {
  max-width: 1230px;
  padding-left: var(--padding-pc);
  padding-right: var(--padding-pc);
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 959.89px) {
  .p-index-info__inner {
    padding-left: var(--padding-sp);
    padding-right: var(--padding-sp);
  }
}

.p-index-info__content {
  display: flex;
  gap: 50px;
}
@media (max-width: 1360px) {
  .p-index-info__content {
    gap: 20px;
  }
}
@media (max-width: 1025px) {
  .p-index-info__content {
    flex-direction: column;
    gap: 40px;
  }
}
@media (max-width: 959.89px) {
  .p-index-info__content {
    flex-direction: column;
    gap: 40px;
  }
}

.p-index-info__news {
  flex: 0 1 535px;
}
@media (max-width: 1360px) {
  .p-index-info__news {
    flex: 0 1 480px;
  }
}
@media (max-width: 1025px) {
  .p-index-info__news {
    flex: 1;
  }
}
@media (max-width: 959.89px) {
  .p-index-info__news {
    flex: 1;
  }
}

.p-index-info__news__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 30px;
}

.p-index-info__news__header .c-ttl {
  margin-bottom: 0;
}

.p-index-info__news__more {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #000;
  letter-spacing: 0.05em;
  transition: opacity 0.3s var(--easing);
}
@media (min-width: 960px) {
  .p-index-info__news__more:hover {
    opacity: 0.7;
  }
}

.p-index-info__news__more__circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00248A, #004BE5);
  color: #fff;
  font-size: 2rem;
}
@media (max-width: 959.89px) {
  .p-index-info__news__more__circle {
    width: 40px;
    height: 40px;
  }
}

.p-index-info__news__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.p-index-info__news__item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.12);
}

.p-index-info__news__link {
  display: block;
  padding: 28px 32px;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s var(--easing);
}
@media (min-width: 960px) {
  .p-index-info__news__link:hover {
    opacity: 0.7;
  }
}
@media (max-width: 959.89px) {
  .p-index-info__news__link {
    padding: 20px 20px;
  }
}

.p-index-info__news__date {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  color: #777;
  letter-spacing: 0.03em;
  margin-bottom: 0;
}

.p-index-info__news__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  color: #000;
}

.p-index-info__schedule {
  flex: 1;
  align-self: flex-start;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 5px 0 0 5px;
  box-shadow: none;
  padding: 40px 50px;
  margin-right: calc((100vw - 1230px) / 2 * -1 - var(--padding-pc));
  padding-right: 100px;
}
@media (max-width: 1360px) {
  .p-index-info__schedule {
    padding-right: 50px;
  }
}
@media (max-width: 1135px) {
  .p-index-info__schedule {
    margin-right: calc(-1 * var(--padding-pc));
    padding: 40px 25px;
  }
}
@media (max-width: 1025px) {
  .p-index-info__schedule {
    align-self: stretch;
    border-radius: 5px;
    margin-right: 0;
    padding: 40px 25px;
  }
}
@media (max-width: 959.89px) {
  .p-index-info__schedule {
    align-self: stretch;
    border-radius: 5px;
    margin: 0;
    padding: 30px 20px;
    margin-right: var(--padding-sp);
    padding-right: var(--padding-sp);
    width: 100%;
  }
}

.p-index-info__schedule__ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #002A9A;
  margin-bottom: 20px;
}

.p-index-info__schedule__table-wrap {
  overflow-x: auto;
}

.p-index-info__schedule__table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border: 1px solid #DDD;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  text-align: center;
}
@media (max-width: 959.89px) {
  .p-index-info__schedule__table {
    font-size: 1.4rem;
  }
}

.p-index-info__schedule__table thead tr {
  background-color: #002A9A;
  color: #fff;
}

.p-index-info__schedule__table thead th {
  padding: 16px 8px;
  font-weight: 400;
  border: 1px solid #DDD;
}
@media (max-width: 959.89px) {
  .p-index-info__schedule__table thead th {
    padding: 5px 2px;
  }
}

.p-index-info__schedule__th-label {
  width: 160px;
}
@media (max-width: 959.89px) {
  .p-index-info__schedule__th-label {
    width: 130px;
  }
}

.p-index-info__schedule__table tbody tr {
  background-color: #F7F7F7;
}

.p-index-info__schedule__table tbody td {
  padding: 14px 8px;
  border: 1px solid #DDD;
  color: #002A9A;
  font-weight: 500;
}
@media (max-width: 959.89px) {
  .p-index-info__schedule__table tbody td {
    padding: 5px 2px;
  }
}

.p-index-info__schedule__td-label {
  background-color: #002A9A;
  color: #fff !important;
  font-weight: 400 !important;
  text-align: center;
}

.p-index-info__schedule__note {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  color: #000;
  margin-top: 16px;
}

.p-index-info__schedule__dept {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.p-index-info__schedule__dept__label {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  color: #484848;
  letter-spacing: 0.03em;
  background-color: #DEDEDE;
  border-radius: 3px;
  padding: 4px 16px;
}
@media (max-width: 959.89px) {
  .p-index-info__schedule__dept__label {
    display: block;
    width: 100%;
    text-align: center;
  }
}

.p-index-info__schedule__dept__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  color: #000;
}

.p-index-info__links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 80px;
}
@media (max-width: 959.89px) {
  .p-index-info__links {
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px 0;
    margin-bottom: 60px;
  }
}

.p-index-info__links__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 220px;
  height: 160px;
  background-color: #fff;
  border-radius: 5px;
  /*box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);*/
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s var(--easing), box-shadow 0.3s var(--easing);
}
@media (min-width: 960px) {
  .p-index-info__links__item:hover {
    opacity: 0.7;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }
}
@media (max-width: 959.89px) {
  .p-index-info__links__item {
    width: 32%;
    height: 100px;
  }
}

.p-index-info__links__icon {
  font-size: 2.8rem;
  color: #002A9A;
}
@media (max-width: 959.89px) {
  .p-index-info__links__icon {
    font-size: 3rem;
  }
}

.p-index-info__links__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #002A9A;
}
@media (max-width: 959.89px) {
  .p-index-info__links__text {
    font-size: 1.4rem;
  }
}

.p-index-medical {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (max-width: 959.89px) {
  .p-index-medical {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.p-index-medical__inner {
  max-width: 1110px;
  padding-left: var(--padding-pc);
  padding-right: var(--padding-pc);
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 959.89px) {
  .p-index-medical__inner {
    padding-left: var(--padding-sp);
    padding-right: var(--padding-sp);
  }
}

.p-index-medical__header {
  margin-bottom: 50px;
}
@media (max-width: 959.89px) {
  .p-index-medical__header {
    margin-bottom: 30px;
  }
}

.p-index-medical__header .c-ttl {
  margin-bottom: 25px;
}

.p-index-medical__desc {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  color: #000;
  text-align: center;
  line-height: 2;
}
@media (max-width: 959.89px) {
  .p-index-medical__desc {
    font-size: 1.6rem;
    text-align: left;
  }
  .p-index-medical__desc br {
    display: none;
  }
}

.p-index-medical__cards {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}
@media (max-width: 959.89px) {
  .p-index-medical__cards {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
  }
}

.p-index-medical__card-lg {
  flex: 1;
  background-color: #fff;
  border: 1px solid #DDD;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  padding: 15px;
  transition: box-shadow 0.3s, transform 0.3s;
}
@media (min-width: 960px) {
  .p-index-medical__card-lg:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
  }
}

.p-index-medical__card-lg__img {
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 0;
}

.p-index-medical__card-lg__img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 5px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.12);
}
@media (max-width: 959.89px) {
  .p-index-medical__card-lg__img img {
    height: 180px;
  }
}

.p-index-medical__card-lg__body {
  padding: 0 5px;
}

.p-index-medical__card-lg__catch {
  display: flex;
  align-items: flex-end;
  gap: 7px;
  margin-top: -35px;
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
}

.p-index-medical__card-lg__icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  flex-shrink: 0;
}

.p-index-medical__card-lg__icon-circle img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  border-radius: 100px;
}

.p-index-medical__card-lg__catch-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  color: #000;
}

.p-index-medical__card-lg__title-row {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.p-index-medical__card-lg__name {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #002A9A;
  line-height: 0.9;
  margin-right: 5px;
}

.p-index-medical__card-lg__badge {
  display: inline-block;
  background-color: #002A9A;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  padding: 3px 12px;
  border-radius: 100px;
  line-height: 1.5;
}

.p-index-medical__card-lg__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  color: #777;
  line-height: 1.8;
}
@media (max-width: 959.89px) {
  .p-index-medical__card-lg__text br {
    display: none;
  }
}

.p-index-medical__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1399.89px) {
  .p-index-medical__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 959.89px) {
  .p-index-medical__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

.p-index-medical__card-sm {
  background-color: #fff;
  border: 1px solid #DDD;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  padding: 14px;
  transition: box-shadow 0.3s, transform 0.3s;
}
@media (min-width: 960px) {
  .p-index-medical__card-sm:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
  }
}

.p-index-medical__card-sm__img {
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 0;
}

.p-index-medical__card-sm__img img {
  width: 100%;
  height: 106px;
  object-fit: cover;
  display: block;
  border-radius: 5px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.12);
}
@media (max-width: 959.89px) {
  .p-index-medical__card-sm__img img {
    height: 90px;
  }
}

.p-index-medical__card-sm__body {
  text-align: center;
  padding: 0 2px;
}

.p-index-medical__card-sm__icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 47px;
  height: 47px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  margin: -24px auto 8px;
  position: relative;
  z-index: 1;
}

.p-index-medical__card-sm__icon-circle img {
  width: 100%;
  object-fit: contain;
  height: 100%;
  border-radius: 100px;
}

.p-index-medical__card-sm__name {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #002A9A;
  line-height: 0.9;
  margin-bottom: 8px;
}
@media (max-width: 959.89px) {
  .p-index-medical__card-sm__name {
    font-size: 1.4rem;
  }
}

.p-index-medical__card-sm__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  color: #777;
  line-height: 1.8;
  text-align: left;
}
@media (max-width: 959.89px) {
  .p-index-medical__card-sm__text {
    font-size: 1.3rem;
  }
}

.p-index-about {
  position: relative;
  /* overflow: hidden; */
  padding-top: 80px;
  padding-bottom: 160px;
}
@media (max-width: 959.89px) {
  .p-index-about {
    padding-top: 0px;
    padding-bottom: 80px;
  }
}

.p-index-about__bg {
  position: absolute;
  top: -150px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.p-index-about__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-index-about__overlay-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 333px;
  background: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.87) 87%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}

.p-index-about__overlay-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 333px;
  background: linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.87) 87%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}

.p-index-about__inner {
  position: relative;
  z-index: 2;
  /* max-width: 1230px; */
  padding-left: var(--padding-pc);
  padding-right: var(--padding-pc);
  /* margin-left: auto; */
  /* margin-right: auto; */
  width: min(90%, 1450px);
  margin-inline: auto;
}
@media (max-width: 959.89px) {
  .p-index-about__inner {
    width: 100%;
    padding-left: var(--padding-sp);
    padding-right: var(--padding-sp);
  }
}

.p-index-about__head {
  margin-bottom: 60px;
}
@media (max-width: 959.89px) {
  .p-index-about__head {
    margin-bottom: 40px;
  }
}

.p-index-about__ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 6.5rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #002A9A;
  margin-bottom: 28px;
}
@media (max-width: 959.89px) {
  .p-index-about__ttl {
    font-size: 3rem;
    margin-bottom: 20px;
  }
}

.p-index-about__lead {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  line-height: 2.2;
  color: #000;
}
@media (max-width: 959.89px) {
  .p-index-about__lead {
    font-size: 1.6rem;
  }
  .p-index-about__lead br {
    display: none;
  }
}

.p-index-about__body {
  display: flex;
  justify-content: space-between;
  /* gap: 48px; */
}
@media (max-width: 959.89px) {
  .p-index-about__body {
    flex-direction: column;
    gap: 30px;
  }
}

.p-index-about__images {
  display: flex;
  gap: 0;
  flex-shrink: 0;
  position: relative;
  width: 48%;
  height: 450px;
}
@media (max-width: 959.89px) {
  .p-index-about__images {
    width: 100%;
    height: auto;
    flex-direction: column;
    gap: 16px;
  }
}

.p-index-about__img-sub {
  /* position: absolute; */
  /* left: 0; */
  /* bottom: 0; */
  /* width: 376px; */
  /* z-index: 1; */
  position: absolute;
  left: -100px;
  right: 0px;
  /* bottom: 0; */
  /* width: calc(100% + 50px); */
  z-index: 1;
}
@media (max-width: 959.89px) {
  .p-index-about__img-sub {
    position: relative;
    left: 0;
    right: auto;
    width: 100%;
  }
}

.p-index-about__img-sub img {
  width: 100%;
  height: auto;
  display: block;
  /* box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16); */
}

.p-index-about__img-main {
  position: absolute;
  right: 0;
  top: 0;
  width: 435px;
  z-index: 0;
}
@media (max-width: 959.89px) {
  .p-index-about__img-main {
    position: relative;
    width: 80%;
    margin-left: auto;
    margin-top: -40px;
  }
}

.p-index-about__img-main img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 5px 5px 3px rgba(0, 0, 0, 0.55);
}

.p-index-about__features {
  /* flex: 1; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 50px;
  width: 48%;
}
@media (max-width: 959.89px) {
  .p-index-about__features {
    width: 100%;
    gap: 30px;
  }
}

.p-index-about__feature__ttl {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #002A9A;
  line-height: 1.6;
  margin-bottom: 18px;
}
@media (max-width: 959.89px) {
  .p-index-about__feature__ttl {
    font-size: 2.4rem;
    margin-bottom: 12px;
  }
}

.p-index-about__feature__dot {
  display: inline-block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: #ED712F;
  flex-shrink: 0;
}

.p-index-about__feature__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.5;
  color: #000;
}
@media (max-width: 959.89px) {
  .p-index-about__feature__text {
    font-size: 1.4rem;
    line-height: 2;
  }
  .p-index-about__feature__text br {
    display: none;
  }
}

.p-index-endoscopy {
  position: relative;
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 0;
}
@media (max-width: 959.89px) {
  .p-index-endoscopy {
    padding-top: 60px;
    padding-bottom: 0;
  }
}

.p-index-endoscopy__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 60px;
  width: 100%;
  /* height: 100%; */
  z-index: 0;
}
@media (max-width: 959.89px) {
  .p-index-endoscopy__bg {
    bottom: auto;
    height: 370px;
  }
}

.p-index-endoscopy__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-index-endoscopy__overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 60px;
  width: 100%;
  /* height: 100%; */
  background-color: rgba(7, 47, 150, 0.9);
  z-index: 1;
}

.p-index-endoscopy__inner {
  position: relative;
  z-index: 2;
  /* max-width: 1230px; */
  padding-left: var(--padding-pc);
  padding-right: var(--padding-pc);
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 959.89px) {
  .p-index-endoscopy__inner {
    padding-left: var(--padding-sp);
    padding-right: var(--padding-sp);
  }
}

.p-index-endoscopy__head {
  margin-bottom: 50px;
  width: min(90%, 1050px);
  margin-inline: auto;
}
@media (max-width: 959.89px) {
  .p-index-endoscopy__head {
    width: 100%;
    margin-bottom: 30px;
  }
}

.p-index-endoscopy__en {
  font-family: "Inter", sans-serif;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 4px;
}

.p-index-endoscopy__ttl {
  font-family: "LINE Seed JP_TTF", "Noto Sans JP", sans-serif;
  font-size: 5.2rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 24px;
}
@media (max-width: 959.89px) {
  .p-index-endoscopy__ttl {
    font-size: 3.2rem;
    margin-bottom: 16px;
  }
}

.p-index-endoscopy__lead {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 2;
  color: #fff;
}
@media (max-width: 959.89px) {
  .p-index-endoscopy__lead {
    font-size: 1.4rem;
  }
  .p-index-endoscopy__lead br {
    display: none;
  }
}

.p-index-endoscopy__cards {
  display: flex;
  gap: 26px;
  width: min(90%, 1450px);
  margin-inline: auto;
}
@media (max-width: 959.89px) {
  .p-index-endoscopy__cards {
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }
}

.p-index-endoscopy__card {
  flex: 1;
  background-color: #fff;
  border: 1px solid #DDD;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 45px 30px 30px;
}
@media (max-width: 959.89px) {
  .p-index-endoscopy__card {
    padding: 24px 20px 24px;
  }
}

.p-index-endoscopy__card__ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.6rem;
  font-weight: 600;
  color: #002A9A;
  /* text-shadow: 0 3px 6px rgba(0, 0, 0, 0.16); */
  margin-bottom: 20px;
  text-align: center;
}
@media (max-width: 959.89px) {
  .p-index-endoscopy__card__ttl {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 2rem;
    margin-bottom: 0;
    cursor: pointer;
  }
}

.p-index-endoscopy__card__ttl__icon {
  display: none;
}
@media (max-width: 959.89px) {
  .p-index-endoscopy__card__ttl__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    color: #002A9A;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 8px;
  }
}

@media (max-width: 959.89px) {
  .p-index-endoscopy__card.is-open .p-index-endoscopy__card__ttl {
    margin-bottom: 16px;
  }
}

.p-index-endoscopy__card__links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (max-width: 959.89px) {
  .p-index-endoscopy__card__links {
    grid-template-columns: 1fr;
    gap: 8px;
    display: none;
  }
}

.p-index-endoscopy__card__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #F6F6F6;
  border-radius: 5px;
  padding: 16px 16px 16px 20px;
  text-decoration: none;
  color: #000;
  transition: background-color 0.3s var(--easing), opacity 0.3s var(--easing);
}
@media (min-width: 960px) {
  .p-index-endoscopy__card__link:hover {
    background-color: #EBEBEB;
  }
}
@media (max-width: 959.89px) {
  .p-index-endoscopy__card__link {
    padding: 14px 14px 14px 16px;
  }
}

.p-index-endoscopy__card__link__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
}
@media (max-width: 959.89px) {
  .p-index-endoscopy__card__link__text {
    font-size: 1.6rem;
  }
}

.p-index-endoscopy__card__link__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #002A9A;
  font-size: 1.8rem;
  flex-shrink: 0;
  margin-left: 8px;
}

.p-index-flow {
  padding-top: 160px;
  padding-bottom: 40px;
}
@media (max-width: 959.89px) {
  .p-index-flow {
    padding-top: 96px;
    padding-bottom: 30px;
  }
}

.p-index-flow__inner {
  display: flex;
  gap: 45px;
  align-items: flex-start;
  padding-left: calc((100% - min(90%, 1450px)) / 2);
  padding-right: 0;
}
@media (max-width: 959.89px) {
  .p-index-flow__inner {
    flex-direction: column;
    gap: 30px;
    padding-left: var(--padding-sp);
    padding-right: var(--padding-sp);
  }
}

.p-index-flow__left {
  flex: 0 0 430px;
}
@media (max-width: 959.89px) {
  .p-index-flow__left {
    flex: 1;
    width: 100%;
  }
}

.p-index-flow__line {
  position: relative;
  width: 100%;
  height: 4px;
  border-top: 4px solid #EEEEEE;
  margin-bottom: 64px;
}
.p-index-flow__line::after {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 320px;
  height: 4px;
  background-color: #002A9A;
}
@media (max-width: 959.89px) {
  .p-index-flow__line {
    margin-bottom: 40px;
  }
  .p-index-flow__line::after {
    width: 100px;
  }
}

.p-index-flow__en {
  font-family: "Inter", sans-serif;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #002A9A;
  margin-bottom: 4px;
}

.p-index-flow__ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 4rem;
  font-weight: 600;
  line-height: 0.9;
  color: #000;
  margin-bottom: 25px;
}
@media (max-width: 959.89px) {
  .p-index-flow__ttl {
    font-size: 2.8rem;
    margin-bottom: 16px;
  }
}

.p-index-flow__lead {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 2;
  color: #000;
}
@media (max-width: 959.89px) {
  .p-index-flow__lead {
    font-size: 1.4rem;
  }
  .p-index-flow__lead br {
    display: none;
  }
}

.p-index-flow__right {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.p-index-flow__slider .slick-slide {
  padding: 0 10px;
}
.p-index-flow__slider .slick-list {
  overflow: visible;
}

@media (max-width: 959.89px) {
  .p-index-flow__slide {
    margin-bottom: 30px;
  }
}

.p-index-flow__slide__img {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 7px;
}
@media (max-width: 959.89px) {
  .p-index-flow__slide__img {
    margin-bottom: 12px;
  }
}

.p-index-flow__slide__img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media (max-width: 959.89px) {
  .p-index-flow__slide__img img {
    height: 200px;
  }
}

.p-index-flow__slide__body {
  padding: 0 2px;
}

.p-index-flow__slide__num-row {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 4px;
}

.p-index-flow__slide__num {
  font-family: "Open Sans", sans-serif;
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #002A9A;
  line-height: 1.25;
}

.p-index-flow__slide__name {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.9rem;
  font-weight: 600;
  color: #002A9A;
  line-height: 0.9;
}

.p-index-flow__slide__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  line-height: 2;
  color: #000;
}

.p-index-flow__slider .slick-dots {
  position: relative;
  bottom: auto;
  margin-top: 20px;
  text-align: left;
  padding-left: 10px;
}
.p-index-flow__slider .slick-dots li {
  width: 20px;
  height: 20px;
  margin: 0 5px;
}
.p-index-flow__slider .slick-dots li button {
  width: 20px;
  height: 20px;
  padding: 0;
}
.p-index-flow__slider .slick-dots li button::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #C7C7C7;
  opacity: 1;
  font-size: 0;
}
.p-index-flow__slider .slick-dots li.slick-active button::before {
  background-color: #002A9A;
}

.p-index-care {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #fff;
}
@media (max-width: 959.89px) {
  .p-index-care {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.p-index-care__inner {
  /* max-width: 1230px; */
  width: min(90%, 1550px);
  padding-left: var(--padding-pc);
  padding-right: var(--padding-pc);
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 959.89px) {
  .p-index-care__inner {
    width: 100%;
    padding-left: var(--padding-sp);
    padding-right: var(--padding-sp);
  }
}

.p-index-care__header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 959.89px) {
  .p-index-care__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 30px;
  }
}

.p-index-care__ttl {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 4rem;
  font-weight: 600;
  line-height: 1.45;
  color: #002A9A;
  white-space: nowrap;
  flex-shrink: 0;
}
@media (max-width: 959.89px) {
  .p-index-care__ttl {
    font-size: 2.2rem;
    line-height: 150%;
    white-space: normal;
  }
}

.p-index-care__line {
  display: block;
  flex: 1;
  height: 1px;
  background-color: #DDDDDD;
  margin-right: calc((100vw - min(90vw, 1550px)) / -2 - var(--padding-pc));
}
@media (max-width: 959.89px) {
  .p-index-care__line {
    width: 100%;
    margin-right: calc(var(--padding-sp) * -1);
  }
}

.p-index-care__body {
  display: flex;
  justify-content: space-between;
  gap: 0 20px;
}
@media (max-width: 959.89px) {
  .p-index-care__body {
    flex-direction: column;
    gap: 20px;
  }
}

.p-index-care__card-lg {
  /* flex: 0 0 700px; */
  text-decoration: none;
  color: inherit;
  display: block;
  transition: opacity 0.3s var(--easing);
  width: 50%;
}
@media (min-width: 960px) {
  .p-index-care__card-lg:hover {
    opacity: 0.7;
  }
}
@media (max-width: 959.89px) {
  .p-index-care__card-lg {
    width: 100%;
  }
}

.p-index-care__card-lg__img {
  border-radius: 7px;
  overflow: hidden;
  margin-bottom: 18px;
}

.p-index-care__card-lg__img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  border-radius: 7px;
}
@media (max-width: 959.89px) {
  .p-index-care__card-lg__img img {
    height: 220px;
  }
}

.p-index-care__card-lg__cat {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
  color: #000;
  margin-bottom: 4px;
}

.p-index-care__card-lg__name {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.45;
  color: #002A9A;
}

.p-index-care__cards-sm {
  /* flex: 1; */
  display: flex;
  /* flex-direction: column; */
  gap: 20px;
}
@media (max-width: 959.89px) {
  .p-index-care__cards-sm {
    flex-direction: column;
    gap: 20px;
  }
}

.p-index-care__card-sm {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: opacity 0.3s var(--easing);
}
@media (min-width: 960px) {
  .p-index-care__card-sm:hover {
    opacity: 0.7;
  }
}

.p-index-care__card-sm__img {
  border-radius: 7px;
  overflow: hidden;
  margin-bottom: 18px;
}

.p-index-care__card-sm__img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  border-radius: 7px;
}
@media (max-width: 959.89px) {
  .p-index-care__card-sm__img img {
    height: 220px;
  }
}

.p-index-care__card-sm__cat {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
  color: #000;
  margin-bottom: 4px;
}

.p-index-care__card-sm__name {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.45;
  color: #002A9A;
}
@media (max-width: 959.89px) {
  .p-index-care__card-sm__name {
    font-size: 2rem;
  }
}

.p-index-access {
  position: relative;
  overflow: hidden;
}

.p-index-access__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 200px;
  width: 100%;
  /* height: 100%; */
  z-index: 0;
}
@media (max-width: 959.89px) {
  .p-index-access__bg {
    bottom: 120px;
  }
}

.p-index-access__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-index-access__overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 200px;
  width: 100%;
  /* height: 100%; */
  background-color: rgba(18, 49, 72, 0.27);
  z-index: 1;
}
@media (max-width: 959.89px) {
  .p-index-access__overlay {
    bottom: 120px;
  }
}

.p-index-access__inner {
  position: relative;
  z-index: 2;
  /* max-width: 1230px; */
  padding-left: var(--padding-pc);
  padding-right: var(--padding-pc);
  margin-left: auto;
  margin-right: auto;
  max-width: 1350px;
}
@media (max-width: 959.89px) {
  .p-index-access__inner {
    width: 100%;
    padding-left: var(--padding-sp);
    padding-right: var(--padding-sp);
  }
}

.p-index-access__ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 4.6rem;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  color: #fff;
  padding-top: 100px;
  padding-bottom: 60px;
}
@media (max-width: 959.89px) {
  .p-index-access__ttl {
    font-size: 2.4rem;
    padding-top: 60px;
    padding-bottom: 40px;
  }
}

.p-index-access__card {
  width: 100%;
  background-color: #E3EAF0;
  border: 1px solid #E3E3E3;
  border-radius: 12px;
  padding: 50px;
  margin-bottom: 0px;
  position: relative;
  z-index: 3;
}
@media (max-width: 1240px) {
  .p-index-access__card {
    background-color: #fff;
    border: 1px solid #fff;
    padding: 0px;
  }
}
@media (max-width: 959.89px) {
  .p-index-access__card {
    padding: 0px;
    margin-bottom: 0px;
  }
}

.p-index-access__card-inner {
  background-color: #fff;
  border-radius: 12px;
  padding: 27px 40px 40px;
  display: flex;
  gap: 50px;
  width: 1050px;
  margin-inline: auto;
}
@media (max-width: 1240px) {
  .p-index-access__card-inner {
    width: 100%;
    padding: 40px 30px 30px;
    gap: 30px;
  }
}
@media (max-width: 959.89px) {
  .p-index-access__card-inner {
    width: 100%;
    flex-direction: column;
    gap: 24px;
    padding: 24px 20px;
  }
}

.p-index-access__info {
  flex: 0 0 475px;
}
@media (max-width: 959.89px) {
  .p-index-access__info {
    flex: 1;
  }
}

.p-index-access__name-block {
  text-align: center;
  margin-bottom: 16px;
}
.p-index-access__name-block img {
  height: 65px;
  width: auto;
  display: block;
  margin: 0 auto;
}
@media (max-width: 959.89px) {
  .p-index-access__name-block img {
    height: 45px;
  }
}

.p-index-access__corp {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #002A9A;
  margin-bottom: 4px;
}

.p-index-access__clinic-name {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: #002A9A;
  letter-spacing: 0.05em;
}

.p-index-access__phones {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}
@media (max-width: 959.89px) {
  .p-index-access__phones {
    flex-direction: column;
    gap: 12px;
  }
}

.p-index-access__phone {
  flex: 1;
}

.p-index-access__phone-label {
  display: block;
  background-color: #002A9A;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
  padding: 5px 10px;
  margin-bottom: 8px;
}

.p-index-access__phone-number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: "Open Sans", sans-serif;
  font-size: 2.7rem;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  line-height: 1.25;
  transition: opacity 0.3s var(--easing);
}
@media (min-width: 960px) {
  .p-index-access__phone-number:hover {
    opacity: 0.7;
  }
}
.p-index-access__phone-number i {
  color: #002A9A;
  font-size: 2.2rem;
}

.p-index-access__divider {
  border: none;
  border-top: 1px solid #DDDDDD;
  margin: 20px 0;
}

.p-index-access__row {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
}
@media (max-width: 959.89px) {
  .p-index-access__row {
    flex-direction: column;
    gap: 8px;
  }
}

.p-index-access__row-label {
  flex-shrink: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #002A9A;
  line-height: 1.6;
  white-space: nowrap;
}

.p-index-access__row-body {
  flex: 1;
}

.p-index-access__address {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.7rem;
  font-weight: 500;
  color: #000;
  line-height: 1.6;
  margin-bottom: 12px;
}

.p-index-access__dept-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.7rem;
  font-weight: 500;
  color: #000;
  line-height: 1.9;
}

.p-index-access__badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 959.89px) {
  .p-index-access__badges {
    gap: 10px;
  }
}

.p-index-access__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background-color: #fff;
  border: 1px solid #DDDDDD;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 16px 10px;
}

.p-index-access__badge-icon {
  font-size: 2.8rem;
  color: #002A9A;
  line-height: 1;
}

.p-index-access__badge-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #002A9A;
  text-align: center;
  line-height: 1.45;
}
@media (max-width: 959.89px) {
  .p-index-access__badge-text {
    font-size: 1.3rem;
  }
}

.p-index-access__line-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 341px;
  height: 60px;
  margin: 30px auto 0;
  background-color: #00B900;
  border-radius: 100px;
  text-decoration: none;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  transition: opacity 0.3s var(--easing);
}
@media (min-width: 960px) {
  .p-index-access__line-btn:hover {
    opacity: 0.8;
  }
}
@media (max-width: 959.89px) {
  .p-index-access__line-btn {
    width: 100%;
    max-width: 341px;
  }
}
.p-index-access__line-btn i {
  font-size: 2.4rem;
}

.p-index-access__map {
  flex: 1;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}
@media (max-width: 959.89px) {
  .p-index-access__map {
    min-height: 250px;
  }
}

.p-index-access__map-placeholder {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.1rem;
  font-weight: 500;
  color: #ACACAC;
}

.is-home main {
  padding-bottom: 0px;
}

.is-home .l-footer {
  border: none;
}

.c-questionnaire {
  padding-top: 80px;
  padding-bottom: 0px;
}
@media (max-width: 959.89px) {
  .c-questionnaire {
    padding-top: var(--section-gap-sp);
    padding-bottom: 0;
  }
}

.c-questionnaire .c-inner {
  width: min(100%, 1050px);
}

.c-questionnaire__lead {
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 959.89px) {
  .c-questionnaire__lead {
    margin-bottom: 40px;
    text-align: left;
  }
}
.c-questionnaire__lead p {
  font-size: 1.6rem;
  line-height: 200%;
  color: #000;
}
@media (max-width: 959.89px) {
  .c-questionnaire__lead p {
    font-size: 1.4rem;
  }
}

.c-questionnaire__form {
  max-width: 800px;
  margin: 0 auto;
}

.c-questionnaire__group {
  padding: 30px 0;
  border-bottom: 1px solid #e5e5e5;
}
.c-questionnaire__group:first-child {
  border-top: 1px solid #e5e5e5;
}
@media (max-width: 959.89px) {
  .c-questionnaire__group {
    padding: 24px 0;
  }
}

.c-questionnaire__label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
@media (max-width: 959.89px) {
  .c-questionnaire__label {
    flex-wrap: wrap;
    margin-bottom: 12px;
  }
}
.c-questionnaire__label label {
  font-size: 1.6rem;
  font-weight: 600;
  color: #000;
  line-height: 1.5;
}
@media (max-width: 959.89px) {
  .c-questionnaire__label label {
    font-size: 1.5rem;
  }
}

.c-questionnaire__required {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  background-color: var(--color-error);
  border-radius: 3px;
  padding: 2px 10px;
  line-height: 1.5;
  flex-shrink: 0;
  order: -1;
}

.c-questionnaire__note {
  font-size: 1.4rem;
  color: #666;
  margin-bottom: 10px;
  line-height: 1.6;
}
@media (max-width: 959.89px) {
  .c-questionnaire__note {
    font-size: 1.3rem;
  }
}

.c-questionnaire__field input[type=text],
.c-questionnaire__field input[type=email],
.c-questionnaire__field input[type=tel],
.c-questionnaire__field textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  background-color: #f7f8fa;
  border: 1px solid #dcdfe3;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
@media (max-width: 959.89px) {
  .c-questionnaire__field input[type=text],
  .c-questionnaire__field input[type=email],
  .c-questionnaire__field input[type=tel],
  .c-questionnaire__field textarea {
    padding: 12px 14px;
    font-size: 1.5rem;
  }
}
.c-questionnaire__field input[type=text]::placeholder,
.c-questionnaire__field input[type=email]::placeholder,
.c-questionnaire__field input[type=tel]::placeholder,
.c-questionnaire__field textarea::placeholder {
  color: #aab0bb;
}
.c-questionnaire__field input[type=text]:focus,
.c-questionnaire__field input[type=email]:focus,
.c-questionnaire__field input[type=tel]:focus,
.c-questionnaire__field textarea:focus {
  border-color: #002A9A;
  box-shadow: 0 0 0 3px rgba(0, 42, 154, 0.1);
  background-color: #fff;
}
.c-questionnaire__field textarea {
  resize: vertical;
  min-height: 100px;
}

.c-questionnaire__field--inline {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 959.89px) {
  .c-questionnaire__field--inline {
    gap: 8px;
  }
}
.c-questionnaire__field--inline > div {
  display: flex;
  align-items: center;
  gap: 6px;
}
.c-questionnaire__field--inline > div input {
  width: 100px;
}
@media (max-width: 959.89px) {
  .c-questionnaire__field--inline > div input {
    width: 70px;
  }
}
.c-questionnaire__field--inline > div > span {
  font-size: 1.5rem;
  color: #555;
  white-space: nowrap;
}

.c-questionnaire__field--radio {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
@media (max-width: 959.89px) {
  .c-questionnaire__field--radio {
    gap: 12px;
  }
}
.c-questionnaire__field--radio > label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.c-questionnaire__field--radio > label input[type=radio] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.c-questionnaire__field--radio > label input[type=radio]:checked {
  border-color: #002A9A;
}
.c-questionnaire__field--radio > label input[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #002A9A;
}
.c-questionnaire__field--radio > label input[type=radio]:focus {
  box-shadow: 0 0 0 3px rgba(0, 42, 154, 0.1);
}
.c-questionnaire__field--radio > label > span {
  font-size: 1.5rem;
  color: #000;
  line-height: 1.4;
}

.c-questionnaire__field--checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
}
@media (max-width: 959.89px) {
  .c-questionnaire__field--checkbox {
    gap: 12px 16px;
  }
}
.c-questionnaire__field--checkbox > label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.c-questionnaire__field--checkbox > label input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  border-radius: 4px;
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.c-questionnaire__field--checkbox > label input[type=checkbox]:checked {
  border-color: #002A9A;
  background-color: #002A9A;
}
.c-questionnaire__field--checkbox > label input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.c-questionnaire__field--checkbox > label input[type=checkbox]:focus {
  box-shadow: 0 0 0 3px rgba(0, 42, 154, 0.1);
}
.c-questionnaire__field--checkbox > label > span {
  font-size: 1.5rem;
  color: #000;
  line-height: 1.4;
}
.c-questionnaire__field--checkbox > div {
  width: 100%;
  padding-left: 28px;
}
@media (max-width: 959.89px) {
  .c-questionnaire__field--checkbox > div {
    padding-left: 28px;
  }
}
.c-questionnaire__field--checkbox > div input[type=text] {
  max-width: 400px;
}

.c-questionnaire__field--radio-with-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.c-questionnaire__field--radio-with-text > label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.c-questionnaire__field--radio-with-text > label input[type=radio] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.c-questionnaire__field--radio-with-text > label input[type=radio]:checked {
  border-color: #002A9A;
}
.c-questionnaire__field--radio-with-text > label input[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #002A9A;
}
.c-questionnaire__field--radio-with-text > label input[type=radio]:focus {
  box-shadow: 0 0 0 3px rgba(0, 42, 154, 0.1);
}
.c-questionnaire__field--radio-with-text > label > span {
  font-size: 1.5rem;
  color: #000;
  line-height: 1.4;
}
.c-questionnaire__field--radio-with-text > div {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 28px;
}
@media (max-width: 959.89px) {
  .c-questionnaire__field--radio-with-text > div {
    padding-left: 28px;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}
.c-questionnaire__field--radio-with-text > div > label {
  font-size: 1.4rem;
  color: #555;
  white-space: nowrap;
  font-weight: 500;
}
.c-questionnaire__field--radio-with-text > div input[type=text] {
  flex: 1;
  padding: 10px 14px;
  font-size: 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  background-color: #f7f8fa;
  border: 1px solid #dcdfe3;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
@media (max-width: 959.89px) {
  .c-questionnaire__field--radio-with-text > div input[type=text] {
    width: 100%;
  }
}
.c-questionnaire__field--radio-with-text > div input[type=text]:focus {
  border-color: #002A9A;
  box-shadow: 0 0 0 3px rgba(0, 42, 154, 0.1);
  background-color: #fff;
}

.c-questionnaire__field--address > div {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.c-questionnaire__field--address > div > span {
  font-size: 1.5rem;
  color: #555;
  white-space: nowrap;
}
.c-questionnaire__field--address > div input {
  width: 100px;
}
@media (max-width: 959.89px) {
  .c-questionnaire__field--address > div input {
    width: 80px;
  }
}

.c-questionnaire__field--tel {
  display: flex;
  align-items: center;
  gap: 8px;
}
.c-questionnaire__field--tel > span {
  font-size: 1.6rem;
  color: #555;
}
.c-questionnaire__field--tel input {
  width: 140px;
}
@media (max-width: 959.89px) {
  .c-questionnaire__field--tel input {
    width: 100%;
    flex: 1;
  }
}

.c-questionnaire__submit {
  margin-top: 50px;
  text-align: center;
}
@media (max-width: 959.89px) {
  .c-questionnaire__submit {
    margin-top: 40px;
  }
}

.c-questionnaire__submit--confirm {
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 959.89px) {
  .c-questionnaire__submit--confirm {
    flex-direction: column-reverse;
    gap: 16px;
    align-items: center;
  }
}

.c-questionnaire__submit__btn {
  display: inline-block;
  appearance: none;
  -webkit-appearance: none;
  min-width: 280px;
  padding: 18px 40px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  background-color: #002A9A;
  border: 2px solid #002A9A;
  border-radius: 60px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  letter-spacing: 0.05em;
}
@media (max-width: 959.89px) {
  .c-questionnaire__submit__btn {
    min-width: 240px;
    padding: 16px 32px;
    font-size: 1.6rem;
  }
}
@media (min-width: 960px) {
  .c-questionnaire__submit__btn:hover {
    background-color: #fff;
    color: #002A9A;
  }
}

.c-questionnaire__submit__btn--back {
  background-color: #999;
  border-color: #999;
  color: #fff;
}
@media (min-width: 960px) {
  .c-questionnaire__submit__btn--back:hover {
    background-color: #fff;
    color: #999;
  }
}

.c-questionnaire__confirm {
  max-width: 800px;
  margin: 0 auto;
}

.c-questionnaire__confirm__group {
  display: flex;
  padding: 24px 0;
  border-bottom: 1px solid #e5e5e5;
}
.c-questionnaire__confirm__group:first-child {
  border-top: 1px solid #e5e5e5;
}
@media (max-width: 959.89px) {
  .c-questionnaire__confirm__group {
    flex-direction: column;
    gap: 8px;
    padding: 20px 0;
  }
}

.c-questionnaire__confirm__label {
  width: 280px;
  flex-shrink: 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: #000;
  line-height: 1.6;
  padding-top: 2px;
}
@media (max-width: 959.89px) {
  .c-questionnaire__confirm__label {
    width: 100%;
    font-size: 1.4rem;
  }
}

.c-questionnaire__confirm__value {
  flex: 1;
  font-size: 1.5rem;
  color: #333;
  line-height: 1.8;
}
@media (max-width: 959.89px) {
  .c-questionnaire__confirm__value {
    font-size: 1.4rem;
  }
}

.c-questionnaire--thanks .c-inner {
  max-width: 800px;
}

.c-questionnaire__thanks {
  text-align: center;
  padding: 0px 0;
}
@media (max-width: 959.89px) {
  .c-questionnaire__thanks {
    padding: 40px 0;
  }
}

.c-questionnaire__thanks__icon {
  margin-bottom: 24px;
}
.c-questionnaire__thanks__icon i {
  font-size: 6.4rem;
  color: var(--color-success);
}
@media (max-width: 959.89px) {
  .c-questionnaire__thanks__icon i {
    font-size: 4.8rem;
  }
}

.c-questionnaire__thanks__ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: #002A9A;
  margin-bottom: 24px;
}
@media (max-width: 959.89px) {
  .c-questionnaire__thanks__ttl {
    font-size: 2.4rem;
    margin-bottom: 20px;
  }
}

.c-questionnaire__thanks__text {
  font-size: 1.6rem;
  line-height: 200%;
  color: #333;
  margin-bottom: 50px;
}
@media (max-width: 959.89px) {
  .c-questionnaire__thanks__text {
    font-size: 1.4rem;
    margin-bottom: 40px;
    text-align: left;
  }
}

.c-questionnaire__thanks__btn-wrap {
  display: flex;
  justify-content: center;
}

.c-questionnaire__thanks__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 40px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #002A9A;
  background-color: #fff;
  border: 2px solid #002A9A;
  border-radius: 60px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media (max-width: 959.89px) {
  .c-questionnaire__thanks__btn {
    padding: 14px 32px;
    font-size: 1.5rem;
  }
}
.c-questionnaire__thanks__btn i {
  font-size: 2rem;
}
@media (min-width: 960px) {
  .c-questionnaire__thanks__btn:hover {
    background-color: #002A9A;
    color: #fff;
  }
}

.wpcf7-response-output {
  display: none;
}

#autozip {
  display: none !important;
}

.u-pb0 {
  padding-bottom: 0 !important;
}

.u-pb10 {
  padding-bottom: 10px !important;
}

.u-pb20 {
  padding-bottom: 20px !important;
}
@media (max-width: 959.89px) {
  .u-pb20 {
    padding-bottom: 16px !important;
  }
}

.u-pb30 {
  padding-bottom: 30px !important;
}
@media (max-width: 959.89px) {
  .u-pb30 {
    padding-bottom: 20px !important;
  }
}

.u-pb40 {
  padding-bottom: 40px !important;
}
@media (max-width: 959.89px) {
  .u-pb40 {
    padding-bottom: 24px !important;
  }
}

.u-pb50 {
  padding-bottom: 50px !important;
}
@media (max-width: 959.89px) {
  .u-pb50 {
    padding-bottom: 30px !important;
  }
}

.u-pb60 {
  padding-bottom: 60px !important;
}
@media (max-width: 959.89px) {
  .u-pb60 {
    padding-bottom: 36px !important;
  }
}

.u-pb70 {
  padding-bottom: 70px !important;
}
@media (max-width: 959.89px) {
  .u-pb70 {
    padding-bottom: 42px !important;
  }
}

.u-pb80 {
  padding-bottom: 80px !important;
}
@media (max-width: 959.89px) {
  .u-pb80 {
    padding-bottom: 48px !important;
  }
}

.u-pb90 {
  padding-bottom: 90px !important;
}
@media (max-width: 959.89px) {
  .u-pb90 {
    padding-bottom: 54px !important;
  }
}

.u-pb100 {
  padding-bottom: 100px !important;
}
@media (max-width: 959.89px) {
  .u-pb100 {
    padding-bottom: 60px !important;
  }
}

.u-pb120 {
  padding-bottom: 120px !important;
}
@media (max-width: 959.89px) {
  .u-pb120 {
    padding-bottom: 70px !important;
  }
}

.u-pb140 {
  padding-bottom: 140px !important;
}
@media (max-width: 959.89px) {
  .u-pb140 {
    padding-bottom: 84px !important;
  }
}

.u-pb160 {
  padding-bottom: 160px !important;
}
@media (max-width: 959.89px) {
  .u-pb160 {
    padding-bottom: 96px !important;
  }
}

.u-pb180 {
  padding-bottom: 180px !important;
}
@media (max-width: 959.89px) {
  .u-pb180 {
    padding-bottom: 108px !important;
  }
}

.u-pb200 {
  padding-bottom: 200px !important;
}
@media (max-width: 959.89px) {
  .u-pb200 {
    padding-bottom: 120px !important;
  }
}

.u-pt0 {
  padding-top: 0 !important;
}

.u-pt10 {
  padding-top: 10px !important;
}

.u-pt20 {
  padding-top: 20px !important;
}
@media (max-width: 959.89px) {
  .u-pt20 {
    padding-top: 16px !important;
  }
}

.u-pt30 {
  padding-top: 30px !important;
}
@media (max-width: 959.89px) {
  .u-pt30 {
    padding-top: 20px !important;
  }
}

.u-pt40 {
  padding-top: 40px !important;
}
@media (max-width: 959.89px) {
  .u-pt40 {
    padding-top: 24px !important;
  }
}

.u-pt50 {
  padding-top: 50px !important;
}
@media (max-width: 959.89px) {
  .u-pt50 {
    padding-top: 30px !important;
  }
}

.u-pt60 {
  padding-top: 60px !important;
}
@media (max-width: 959.89px) {
  .u-pt60 {
    padding-top: 36px !important;
  }
}

.u-pt70 {
  padding-top: 70px !important;
}
@media (max-width: 959.89px) {
  .u-pt70 {
    padding-top: 42px !important;
  }
}

.u-pt80 {
  padding-top: 80px !important;
}
@media (max-width: 959.89px) {
  .u-pt80 {
    padding-top: 48px !important;
  }
}

.u-pt90 {
  padding-top: 90px !important;
}
@media (max-width: 959.89px) {
  .u-pt90 {
    padding-top: 54px !important;
  }
}

.u-pt100 {
  padding-top: 100px !important;
}
@media (max-width: 959.89px) {
  .u-pt100 {
    padding-top: 60px !important;
  }
}

.u-pt120 {
  padding-top: 120px !important;
}
@media (max-width: 959.89px) {
  .u-pt120 {
    padding-top: 70px !important;
  }
}

.u-pt140 {
  padding-top: 140px !important;
}
@media (max-width: 959.89px) {
  .u-pt140 {
    padding-top: 84px !important;
  }
}

.u-pt160 {
  padding-top: 160px !important;
}
@media (max-width: 959.89px) {
  .u-pt160 {
    padding-top: 96px !important;
  }
}

.u-pt180 {
  padding-top: 180px !important;
}
@media (max-width: 959.89px) {
  .u-pt180 {
    padding-top: 108px !important;
  }
}

.u-pt200 {
  padding-top: 200px !important;
}
@media (max-width: 959.89px) {
  .u-pt200 {
    padding-top: 120px !important;
  }
}

.u-mt0 {
  margin-top: 0 !important;
}

.u-mt10 {
  margin-top: 10px !important;
}

.u-mt20 {
  margin-top: 20px !important;
}
@media (max-width: 959.89px) {
  .u-mt20 {
    margin-top: 16px !important;
  }
}

.u-mt30 {
  margin-top: 30px !important;
}
@media (max-width: 959.89px) {
  .u-mt30 {
    margin-top: 20px !important;
  }
}

.u-mt40 {
  margin-top: 40px !important;
}
@media (max-width: 959.89px) {
  .u-mt40 {
    margin-top: 24px !important;
  }
}

.u-mt50 {
  margin-top: 50px !important;
}
@media (max-width: 959.89px) {
  .u-mt50 {
    margin-top: 30px !important;
  }
}

.u-mt60 {
  margin-top: 60px !important;
}
@media (max-width: 959.89px) {
  .u-mt60 {
    margin-top: 36px !important;
  }
}

.u-mt70 {
  margin-top: 70px !important;
}
@media (max-width: 959.89px) {
  .u-mt70 {
    margin-top: 42px !important;
  }
}

.u-mt80 {
  margin-top: 80px !important;
}
@media (max-width: 959.89px) {
  .u-mt80 {
    margin-top: 48px !important;
  }
}

.u-mt90 {
  margin-top: 90px !important;
}
@media (max-width: 959.89px) {
  .u-mt90 {
    margin-top: 54px !important;
  }
}

.u-mt100 {
  margin-top: 100px !important;
}
@media (max-width: 959.89px) {
  .u-mt100 {
    margin-top: 60px !important;
  }
}

.u-mt120 {
  margin-top: 120px !important;
}
@media (max-width: 959.89px) {
  .u-mt120 {
    margin-top: 70px !important;
  }
}

.u-mt140 {
  margin-top: 140px !important;
}
@media (max-width: 959.89px) {
  .u-mt140 {
    margin-top: 84px !important;
  }
}

.u-mt160 {
  margin-top: 160px !important;
}
@media (max-width: 959.89px) {
  .u-mt160 {
    margin-top: 96px !important;
  }
}

.u-mt180 {
  margin-top: 180px !important;
}
@media (max-width: 959.89px) {
  .u-mt180 {
    margin-top: 108px !important;
  }
}

.u-mt200 {
  margin-top: 200px !important;
}
@media (max-width: 959.89px) {
  .u-mt200 {
    margin-top: 120px !important;
  }
}

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

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

.u-mb20 {
  margin-bottom: 20px !important;
}
@media (max-width: 959.89px) {
  .u-mb20 {
    margin-bottom: 16px !important;
  }
}

.u-mb30 {
  margin-bottom: 30px !important;
}
@media (max-width: 959.89px) {
  .u-mb30 {
    margin-bottom: 20px !important;
  }
}

.u-mb40 {
  margin-bottom: 40px !important;
}
@media (max-width: 959.89px) {
  .u-mb40 {
    margin-bottom: 24px !important;
  }
}

.u-mb50 {
  margin-bottom: 50px !important;
}
@media (max-width: 959.89px) {
  .u-mb50 {
    margin-bottom: 30px !important;
  }
}

.u-mb60 {
  margin-bottom: 60px !important;
}
@media (max-width: 959.89px) {
  .u-mb60 {
    margin-bottom: 36px !important;
  }
}

.u-mb70 {
  margin-bottom: 70px !important;
}
@media (max-width: 959.89px) {
  .u-mb70 {
    margin-bottom: 42px !important;
  }
}

.u-mb80 {
  margin-bottom: 80px !important;
}
@media (max-width: 959.89px) {
  .u-mb80 {
    margin-bottom: 48px !important;
  }
}

.u-mb90 {
  margin-bottom: 90px !important;
}
@media (max-width: 959.89px) {
  .u-mb90 {
    margin-bottom: 54px !important;
  }
}

.u-mb100 {
  margin-bottom: 100px !important;
}
@media (max-width: 959.89px) {
  .u-mb100 {
    margin-bottom: 60px !important;
  }
}

.u-mb120 {
  margin-bottom: 120px !important;
}
@media (max-width: 959.89px) {
  .u-mb120 {
    margin-bottom: 70px !important;
  }
}

.u-mb140 {
  margin-bottom: 140px !important;
}
@media (max-width: 959.89px) {
  .u-mb140 {
    margin-bottom: 84px !important;
  }
}

.u-mb160 {
  margin-bottom: 160px !important;
}
@media (max-width: 959.89px) {
  .u-mb160 {
    margin-bottom: 96px !important;
  }
}

.u-mb180 {
  margin-bottom: 180px !important;
}
@media (max-width: 959.89px) {
  .u-mb180 {
    margin-bottom: 108px !important;
  }
}

.u-mb200 {
  margin-bottom: 200px !important;
}
@media (max-width: 959.89px) {
  .u-mb200 {
    margin-bottom: 120px !important;
  }
}
