@charset "utf-8";
:root {
  --primary-color: #e35680;
  --primary-background-color: #ffe9e8;
  --secondary-color: #008000;
  --secondary-background-color: #ecf4eb;
  --tertiary-color: #a70d7d;
  --tertiary-background-color: #fef6f9;
  --text-color: #222;
  --white: #fff;
  --gray: #a4a4a4;
  --brown: #80601e;
  --background-yellow: #ffffe0;
  --inline-space: clamp(1.25rem, 0.066rem + 5.26vw, 3.75rem);
  /* --inline-space => 20px～60px */
  --block-space: clamp(2.5rem, 1.908rem + 2.63vw, 3.75rem);
  /* --block-space => 40px～60px */
  --font-size-28px: clamp(1.375rem, 1.197rem + 0.79vw, 1.75rem);
  --font-size-23px: clamp(1.25rem, 1.161rem + 0.39vw, 1.438rem);
  /* clamp:viewport min:360px max:1120px */
}
html {
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  tab-size: 4;
  -moz-tab-size: 4;
  box-sizing: border-box;
  scroll-padding-top: 6.75rem;
  &:has(#globalNavToggle:focus-within) {
    scroll-padding-top: 0;
  }
}
*, ::before, ::after {
  background-repeat: no-repeat;
  box-sizing: inherit;
}
* {
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  background-color: var(--white);
  color: var(--text-color);
  font-style: normal;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.8;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  letter-spacing: 0.05em;
}
a, button {
  transition: opacity 0.35s;
  &:hover {
    opacity: 0.7;
  }
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
}
ul, ol {
  list-style-type: none;
}
summary {
  list-style: none;
  cursor: pointer;
}
abbr[title] {
  text-decoration: none;
}
code, kbd, pre, samp {
  font-family: monospace, monospace;
}
sub, sup {
  line-height: 0;
}
table {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
}
img, video, audio, iframe, textarea {
  vertical-align: bottom;
}
iframe {
  border: none;
}
address {
  font-style: inherit;
}
fieldset {
  border: none;
}
input, textarea, select, button {
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  border: none;
}
textarea {
  resize: vertical;
}
input[type="checkbox"], input[type="radio"], select {
  appearance: none;
}
input[type="checkbox"], input[type="radio"] {
  display: block;
}
input[type="button"], input[type="submit"], button {
  cursor: pointer;
  background-color: rgb(255, 255, 255, 0);
}
input[type="text"], input[type="email"], input[type="tel"], input[type="url"], input[type="password"], input[type="number"], input[type="search"], select, textarea {
  width: 100%;
  padding: 1.5em 2em;
  background-color: var(--white);
  border-radius: 2em;
}
::placeholder {
  color: var(--gray);
}
::file-selector-button {
  margin: 0;
  padding: 0;
  cursor: pointer;
  background-color: rgb(255, 255, 255, 0);
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  border: none;
}
html:not(.no-js) {
  @media (prefers-reduced-motion: no-preference) {
    .fadeIn {
      opacity: 0;
      &.show {
        animation: fadeIn 0.65s both;
      }
    }
    .fadeUp {
      scroll-margin-top: 30px;
      opacity: 0;
      translate: 0 30px;
      &.show {
        animation: fadeUp 0.65s both;
      }
    }
  }
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
@keyframes fadeUp {
  to {
    scroll-margin-top: 0;
    opacity: 1;
    translate: none;
  }
}
.logo {
  line-height: 1;
  >a {
    display: inline-block;
  }
}
.break {
  display: inline-block;
}
.wrapper_m, .wrapper_s {
  margin-inline: auto;
  padding-inline: var(--inline-space);
}
.wrapper_m {
  width: min(62.5rem + var(--inline-space) * 2, 100%);
}
.wrapper_s {
  width: min(55rem + var(--inline-space) * 2, 100%);
}
.archive_link {
  display: block;
  width: min(9em, 100%);
  padding: 0.1em;
  background-color: var(--white);
  border: 1px solid var(--brown);
  border-radius: 0.6em;
  color: var(--brown);
  text-align: center;
}
.strong {
  color: var(--tertiary-color);
}
.primary_heading {
  margin-bottom: 1em;
  padding-top: calc(52px + 0.5em);
  background-image: url(./img/common/icon-logo.svg);
  background-position: center top;
  color: var(--brown);
  font-size: var(--font-size-28px);
  line-height: 1.4;
  text-align: center;
}
.secondary_heading {
  margin-bottom: 0.7em;
  color: var(--secondary-color);
  font-size: var(--font-size-23px);
  line-height: 1.4;
  text-align: center;
}
.secondary_background_heading {
  margin-bottom: 0.7em;
  background-color: var(--secondary-background-color);
  padding: 0.2em 0.7em;
  color: var(--brown);
  font-size: var(--font-size-28px);
  line-height: 1.4;
}
p+.table_basic {
  margin-top: 1.5em;
}
.table_basic-row {
  display: flex;
  border-bottom: 1px solid var(--brown);
  &:first-child {
    border-top: 1px solid var(--brown);
  }
}
.table_basic-header {
  flex-shrink: 0;
  width: 13.75rem;
  padding: 1em 0.5em;
  background-color: var(--tertiary-background-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
.table_basic-data {
  flex-grow: 1;
  padding-block: 1em;
  padding-inline: 1.5em;
}
.list_disc {
  line-height: 1.6;
  >li {
    margin-left: 1.2em;
    text-indent: -1.2em;
    &::before {
      content: "●";
      color: var(--primary-color);
      margin-right: 0.2em;
    }
    +li {
      margin-top: 0.2em;
    }
  }
}
.list_doubleCircle {
  line-height: 1.6;
  >li {
    margin-left: 1.5em;
    text-indent: -1.5em;
    &::before {
      content: "◎";
      margin-right: 0.5em;
    }
    +li {
      margin-top: 0.2em;
    }
  }
}
.contact {
  font-weight: 700;
  line-height: 1.6;
}
p+.contact {
  margin-top: calc(var(--block-space) / 2);
}
.contact-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1em 1.5em;
}
.contact-heading {
  width: fit-content;
  padding: 0.2em 1.5em;
  background-color: var(--white);
  border: 1px solid var(--tertiary-color);
  color: var(--tertiary-color);
  font-size: 1.125rem;
  text-align: center;
  flex-shrink: 0;
}
.contact-text {
  text-align: center;
}
.contact-list {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.contact-item {
  width: min(17.25rem, 100%);
}
.contact-tel, .contact-mail {
  display: block;
  border-radius: 1.75rem;
  color: var(--white);
  line-height: 3.375rem;
  text-align: center;
}
.contact-tel {
  background-color: var(--primary-color);
  font-size: 1.625rem;
  &::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url(./img/common/icon-tel.svg);
    margin-bottom: -0.05em;
    margin-right: 0.4em;
  }
}
.contact-mail {
  background-color: var(--secondary-color);
  font-size: 1.375rem;
}
.header {
  position: sticky;
  top: 0;
  z-index: 10;
  padding-block: calc(var(--block-space) / 3);
  padding-inline: var(--inline-space);
  background-color: var(--white);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0 calc(var(--inline-space) * 2/3);
}
.globalNav {
  .contact {
    display: none;
  }
}
.globalNav-toggle, .globalNav-button, .globalNav-overlay {
  display: none;
}
.globalNav-list {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0 1.25em;
  font-weight: 700;
}
.globalNav-link {
  display: block;
  padding: 0.6em 0.3em;
  position: relative;
  &::before {
    content: "";
    display: inline-block;
    height: 2px;
    scale: 0 0.5;
    background-color: var(--secondary-color);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    transition: scale 0.35s;
  }
  &:hover, &.current {
    &::before {
      scale: 1 0.5;
    }
  }
}
@media screen and (max-width: 90rem) {
  .header {
    display: block;
    .logo {
      max-width: 80%;
    }
  }
  .globalNav-toggle {
    display: inline;
    position: fixed;
  }
  .globalNav-button {
    cursor: pointer;
    position: absolute;
    z-index: 11;
    top: 15%;
    bottom: 15%;
    right: calc(var(--inline-space) / 2);
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1/1;
    background-color: var(--secondary-color);
  }
  .globalNav-button-bar {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 1.875rem;
    --bar-box-height: 1.25rem;
    height: var(--bar-box-height);
    &::before, &::after, span {
      --bar-decoration-height: 0.1875rem;
      height: calc(var(--bar-decoration-height) * 2);
      scale: 1 0.5;
      background-color: var(--white);
    }
    &::before, &::after {
      content: "";
      transition: translate 0.35s, rotate 0.35s;
    }
    &::before {
      translate: 0 calc(-1*var(--bar-decoration-height) / 2)
    }
    &::after {
      translate: 0 calc(var(--bar-decoration-height) / 2);
      width: 60%;
      transition: translate 0.35s, rotate 0.35s, width 0.35s;
    }
    span {
      transition: opacity 0.35s;
    }
  }
  .globalNav-overlay {
    display: inline;
    position: fixed;
    z-index: 9;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgb(0, 0, 0, 0.4);
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.15s, opacity 0.15s;
  }
  .globalNav {
    position: fixed;
    z-index: 10;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(22.5rem, 100%);
    overflow-y: auto;
    padding: 1.25rem;
    background-color: var(--secondary-color);
    display: grid;
    place-items: center;
    visibility: hidden;
    opacity: 0;
    translate: 100%;
    transition: visibility 0.35s, opacity 0.35s, translate 0.35s;
    .contact {
      margin-top: calc(var(--block-space) * 2/3);
      display: grid;
      place-items: center;
    }
    .contact-list {
      width: 100%;
    }
    .contact-title {
      color: var(--white);
    }
    .contact-mail {
      background-color: var(--primary-color);
    }
  }
  .globalNav-inner {
    width: 100%;
  }
  .globalNav-list {
    display: block;
    text-align: center;
  }
  .globalNav-link {
    color: var(--white);
    &::before {
      width: 5em;
      scale: 1 0.5;
      background-color: var(--white);
      left: 50%;
      translate: -50% 0;
    }
  }
  #globalNavToggle:checked {
    ~.globalNav-button>.globalNav-button-bar {
      &::before {
        translate: 0 calc(var(--bar-box-height) / 2 - var(--bar-decoration-height));
        rotate: 45deg;
      }
      &::after {
        translate: 0 calc(-1 * (var(--bar-box-height) / 2 - var(--bar-decoration-height)));
        rotate: -45deg;
        width: 100%;
      }
      span {
        opacity: 0;
      }
    }
    ~.globalNav-overlay {
      visibility: visible;
      opacity: 1;
    }
    ~.globalNav {
      visibility: visible;
      opacity: 1;
      translate: none;
    }
  }
}
.footer {
  position: sticky;
  top: 100vh;
  margin-top: var(--block-space);
  padding-block: calc(var(--block-space) * 2/3);
  background-color: var(--primary-background-color);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--inline-space);
  flex-wrap: wrap;
}
.footer-address {
  line-height: 1.6;
}
.footer-address-tel {
  text-transform: uppercase;
  font-size: 1.125rem;
}
.footer-address-tel-num {
  font-weight: 700;
  font-size: 1.5rem;
}
.home-hero {
  padding-block: 6px;
  position: relative;
  &::before, &::after {
    content: "";
    display: inline-block;
    height: 6px;
    background-color: var(--secondary-color);
    position: absolute;
    left: 0;
    right: 0;
    transition: scale 0.35s;
    animation: scaleXIn 1s 0.2s both;
  }
  &::before {
    top: 0;
  }
  &::after {
    bottom: 0;
  }
}
@keyframes scaleXIn {
  from {
    scale: 0 1;
    opacity: 0;
  }
  to {
    scale: 1;
    opacity: 1;
  }
}
.home-hero-inner {
  display: flex;
  align-items: center;
}
.home-hero-slider {
  max-width: 1152px;
  .splide__slide {
    max-width: 100%;
    height: 100%;
    aspect-ratio: 1152 / 768;
  }
}
.home-hero-content {
  flex-grow: 1;
  display: grid;
  place-items: center;
  padding: var(--block-space) var(--inline-space);
}
.home-hero-content-inner {
  min-width: 22rem;
}
.home-hero-heading {
  margin-bottom: 0.5em;
  color: var(--brown);
  font-size: var(--font-size-28px);
  line-height: 1.4;
}
.home-information {
  padding-block: calc(var(--block-space) * 5/6);
  background-color: var(--primary-background-color);
}
.home-information-inner {
  display: flex;
  gap: 0 var(--inline-space);
  position: relative;
  .archive_link {
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
.home-information-heading {
  width: min(9rem, 100%);
  margin-bottom: var(--block-space);
  color: var(--secondary-color);
  font-size: 1.625rem;
  /* text-transform: uppercase; */
  line-height: 1.2;
}
.home-information-list {
  flex-grow: 1;
  line-height: 1.6;
}
.home-information-item {
  +.home-information-item {
    margin-top: 0.6em;
  }
}
.home-information-link {
  display: flex;
  gap: 1em;
}
.information-date {
  color: var(--secondary-color);
}
.features, .medicalInfo, .screening, .message, .home-column, .medicalHours {
  padding-block: calc(var(--block-space) * 7/6);
}
.features-list {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(auto-fit, 16.875rem);
  gap: calc(var(--block-space) * 2/3) var(--inline-space);
}
.features-item-image {
  margin-bottom: 1rem;
  text-align: center;
}
.medicalInfo {
  background-image: linear-gradient(to right, var(--primary-background-color) 1px, rgb(255, 233, 232, 0) 2px), linear-gradient(to bottom, var(--primary-background-color) 1px, rgb(255, 233, 232, 0) 2px);
  background-size: 16px 16px;
  background-repeat: repeat;
  background-position: center, top;
}
.medicalInfo-box {
  margin-top: calc(var(--block-space) * 2/3);
  padding: calc(var(--block-space) / 2) 1.25rem;
  background-color: var(--white);
  border: 6px solid var(--secondary-color);
  border-radius: 1rem;
}
.medicalInfo-box-heading, .medicalInfo-box-subheading {
  margin-block: 1.2em 0.7em;
  color: var(--white);
  line-height: 1.4;
}
.medicalInfo-box-heading {
  padding: 0.2em 0.7em;
  background-color: var(--secondary-color);
  font-size: var(--font-size-23px);
}
.medicalInfo-box-subheading {
  width: fit-content;
  padding: 0.2em 0.6em;
  background-color: var(--primary-color);
  font-size: 1.125rem;
  text-align: center;
}
.medicalInfo-case {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5em;
}
.medicalInfo-case-item {
  padding-left: 2em;
  background-image: url(./img/common/icon-check.svg);
  background-position: left top 0.2em;
}
.screening-lead {
  margin-top: calc(var(--block-space) * 2/3);
  padding: calc(var(--block-space) / 2) calc(var(--inline-space) / 2);
  background-color: var(--background-yellow);
}
.screening-lead-heading {
  margin-bottom: 0.7em;
  margin-inline: auto;
  padding-inline: 2rem;
  width: fit-content;
  font-size: var(--font-size-23px);
  line-height: 1.4;
  text-align: center;
  position: relative;
  &::before, &::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 3.25rem;
    background-color: var(--gray);
    position: absolute;
    bottom: -0.3em;
  }
  &::before {
    left: 1rem;
    rotate: -30deg;
  }
  &::after {
    right: 1rem;
    rotate: 30deg;
  }
}
.screening-lead-list {
  display: flex;
  gap: calc(var(--block-space) / 2) calc(var(--inline-space) / 2);
}
.screening-lead-item {
  width: 50%;
  padding: 1.25rem;
  background-color: var(--white);
  border: 8px solid var(--secondary-color);
  border-radius: 1.25rem;
}
.screening-lead-item-heading {
  margin-bottom: 0.7em;
  padding: 0.2em;
  background-color: var(--primary-color);
  color: var(--white);
  font-size: var(--font-size-23px);
  line-height: 1.4;
  text-align: center;
}
.screening-list {
  margin-top: var(--block-space);
}
.screening-item {
  +.screening-item {
    margin-top: var(--block-space);
  }
}
.message {
  background-color: var(--primary-background-color);
}
.message-inner {
  padding-block: calc(var(--block-space) * 2/3);
  background-color: var(--white);
  border-radius: 1.25rem;
}
.message-lead {
  margin-bottom: 0.7em;
  color: var(--secondary-color);
  font-size: var(--font-size-28px);
  line-height: 1.4;
}
/* .message-content {
  display: flex;
  align-items: center;
  gap: calc(var(--block-space) / 2) calc(var(--inline-space) / 2);
}
.message-image {
  flex-shrink: 0;
  img {
    border-radius: 50%;
  }
} */
.message-text {
  p+p {
    margin-top: 0.3em;
  }
}
.message-doctor {
  margin-top: calc(var(--block-space) / 2);
  padding: calc(var(--block-space) / 2) calc(var(--inline-space) * 2/3);
  border: 6px solid var(--secondary-color);
}
.message-doctor-name {
  margin-bottom: 0.5em;
  display: flex;
  gap: 0 1em;
  flex-wrap: wrap;
  font-weight: 700;
  font-size: 1.25rem;
}
.message-doctor-profile {
  display: flex;
  gap: 1em;
}
.message-doctor-profile-item {
  width: 50%;
}
.message-doctor-profile-heading {
  margin-bottom: 0.3em;
  color: var(--secondary-color);
  font-weight: 700;
}
.home-column-inner {
  position: relative;
  .archive_link {
    position: absolute;
    top: -3.75rem;
    right: 0;
  }
}
.column-item {
  padding-block: 1.2em;
  display: flex;
  align-items: flex-start;
  gap: 0 1.2em;
  border-bottom: 1px dotted var(--gray);
  &:first-child {
    border-top: 1px dotted var(--gray);
  }
}
.column-category {
  flex-shrink: 0;
  display: block;
  width: min(10.5em, 100%);
  padding-block: calc(0.1em + 1px);
  padding-inline: 1em;
  background-color: var(--secondary-color);
  border-radius: 0.6em;
  color: var(--white);
  text-align: center;
}
.column-heading {
  flex-grow: 1;
}
.column-link {
  display: block;
  padding-block: calc(0.1em + 1px);
}
.medicalHours {
  font-weight: 700;
}
.medicalHours-table {
  font-size: 1.125rem;
  line-height: 1.6;
  th, td {
    border: 1px solid var(--secondary-color);
  }
  th {
    padding: 0.6em 0.3em;
    background-color: var(--secondary-background-color);
    &:first-child {
      width: 23%;
    }
  }
  td {
    padding: 1em 0.3em;
    color: var(--secondary-color);
    text-align: center;
    &[aria-label="休診"] {
      color: var(--brown);
    }
    abbr {
      color: var(--tertiary-color);
    }
  }
}
.medicalHours-note {
  margin-block: 1em 0.6em;
  color: var(--tertiary-color);
}
.medicalHours-closed {
  margin-top: 1.2em;
  background-color: var(--secondary-background-color);
  padding: 1em 1.5em;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.6;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3em 1em;
  dt {
    color: var(--secondary-color);
  }
}
.bottom_contact {
  padding: calc(var(--block-space) / 2) var(--inline-space);
  border: 8px solid var(--secondary-color);
  .contact-top {
    flex-direction: row;
  }
  .contact-text {
    font-size: 1.125rem;
  }
  .contact-list {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.bottom_link {
  margin-top: calc(var(--block-space) * 2/3);
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(31.25rem, 100%);
  margin-inline: auto;
  padding: 0.9em;
  background-color: var(--secondary-background-color);
  border: 1px solid var(--secondary-color);
  border-radius: 0.3em;
  font-weight: 700;
  font-size: 1.125rem;
  transition: background-color 0.35s, color 0.35s;
  &::after {
    content: "→";
    margin-left: 1em;
  }
  &:hover {
    opacity: 1;
    background-color: var(--secondary-color);
    color: var(--white);
  }
  &.back {
    &::before {
      content: "←";
      margin-right: 1em;
    }
    &::after {
      content: normal;
    }
  }
}
.child-hero {
  background-color: var(--secondary-color);
  padding: calc(var(--block-space) * 2/3) var(--inline-space);
  margin-bottom: calc(var(--block-space) * 7/6);
  color: var(--white);
  font-size: var(--font-size-28px);
  text-align: center;
}
.article-inner {
  display: flex;
  gap: 0 calc(var(--inline-space) * 2/3);
}
.article-main {
  flex-grow: 1;
}
.article-item {
  padding: calc(var(--block-space) * 2/3) var(--inline-space);
  border: 2px solid var(--gray);
  +.article-item {
    margin-top: calc(var(--block-space) * 2/3);
  }
}
.article-heading {
  margin-top: 0.5em;
  padding-bottom: 0.8em;
  border-bottom: 1px dotted var(--gray);
  color: var(--brown);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.6;
  +.article-content {
    margin-top: 1.4em;
  }
}
.article-content {
  overflow-wrap: break-word;
  p, h4, h5, h6, blockquote, ul, ol, table, hr {
    &:first-child {
      margin-top: 0;
    }
    &:last-child {
      margin-bottom: 0;
    }
  }
  blockquote, table {
    margin-block: 1em;
  }
  ul, ol {
    margin-block: 0.5em;
  }
  p {
    margin-block: 0.2em;
  }
  h4 {
    margin-block: 1.2em 0.6em;
    padding: 0.4em 0.8em;
    background-color: var(--primary-background-color);
    color: var(--secondary-color);
    font-size: 1.125rem;
    line-height: 1.4;
  }
  h5 {
    margin-block: 1.2em 0.6em;
    width: fit-content;
    padding: 0.2em 0.6em;
    background-color: var(--primary-background-color);
    color: var(--tertiary-color);
    font-size: 1.0625rem;
    line-height: 1.6;
  }
  h6 {
    margin-block: 0.6em 0.3em;
    color: var(--secondary-color);
    font-size: 1rem;
    line-height: 1.6;
    text-indent: -1em;
    margin-left: 1em;
    &::before {
      content: "●";
    }
  }
  [style="text-decoration: underline;"] {
    text-underline-offset: 0.2em;
  }
  blockquote {
    background-color: var(--secondary-background-color);
    padding: 0.6em 1em;
    font-size: 0.9375rem;
  }
  ul {
    >li {
      text-indent: -1em;
      margin-left: 1em;
      &::before {
        content: "・";
        color: var(--secondary-color);
      }
    }
  }
  ol {
    list-style-type: decimal;
    >li {
      list-style-position: inside;
      text-indent: -1.25em;
      margin-left: 1.25em;
      &::marker {
        color: var(--secondary-color);
      }
    }
  }
  table {
    line-height: 1.6;
    thead, th {
      background-color: var(--secondary-background-color);
    }
    th, td {
      padding: 0.5em;
      border: 1px solid var(--secondary-color);
    }
  }
  hr {
    margin-block: 1rem;
  }
}
.alignleft {
  float: left;
}
.aligncenter {
  display: block;
  margin-inline: auto;
}
.alignright {
  float: right;
}
.wp-pagenavi {
  margin-top: calc(var(--block-space) * 2/3);
  margin-inline: auto;
  max-width: 25rem;
  padding-inline: 2em;
  font-size: var(--font-size-28px);
  line-height: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  .page, .current, .extend {
    color: var(--gray);
  }
  .page, .current {
    padding-inline: 0.4em;
  }
  .current {
    color: var(--secondary-color);
  }
  .extend {
    font-size: var(--font-size-23px);
  }
}
.previouspostslink, .nextpostslink {
  position: absolute;
  display: block;
  height: 100%;
  aspect-ratio: 1/1;
  background-color: #dedede;
  border: 2px solid var(--gray);
  border-radius: 1rem;
  background-image: url(./img/common/arrow-primary.svg);
  background-position: center;
}
.previouspostslink {
  left: 0;
  rotate: 180deg;
}
.nextpostslink {
  right: 0;
}
.article-aside {
  width: min(11.5rem, 100%);
  flex-shrink: 0;
}
.article-aside-heading {
  max-width: 10em;
  padding: 0.3em 1em;
  background-color: var(--secondary-color);
  border-radius: 0.3em;
  color: var(--white);
  font-weight: 500;
  font-size: 0.875rem;
}
.article-aside-list {
  margin-top: 1em;
  font-size: 0.9375rem;
  line-height: 1.6;
}
.article-aside-item {
  +.article-aside-item {
    margin-top: 0.6em;
  }
  >a {
    display: block;
    padding-left: calc(0.6em + 0.75rem);
    position: relative;
    &::before, &::after {
      content: "";
      display: inline-block;
      width: 0.75rem;
      height: 0.125rem;
      background-color: var(--gray);
      position: absolute;
      top: 0.9em;
      left: 0;
    }
    &::before {
      scale: 1 0.5;
    }
    &::after {
      transform-origin: right;
      scale: 0.6 0.5;
      rotate: 50deg;
    }
  }
}
@media screen and (max-width: 60rem) {
  .home-hero-inner {
    display: block;
  }
  .home-hero-content-inner {
    min-width: 0;
  }
  .medicalInfo-case {
    grid-template-columns: repeat(1, 1fr);
  }
  .screening-lead-list {
    flex-direction: column;
  }
  .screening-lead-item {
    width: auto;
    max-width: 400px;
    margin-inline: auto;
  }
  .message-doctor-profile {
    flex-direction: column;
  }
  .message-doctor-profile-item {
    width: auto;
  }
  .home-column-inner {
    .archive_link {
      position: static;
      margin-top: 1.5em;
      margin-left: auto;
    }
  }
  .article-inner {
    display: block;
  }
  .article-aside {
    width: auto;
    margin-top: 2.5rem;
  }
}
@media screen and (max-width: 40rem) {
  input[type="text"], input[type="email"], input[type="tel"], input[type="url"], input[type="password"], input[type="number"], input[type="search"], select, textarea {
    padding: 1em;
  }
  body:has(#globalNavToggle:checked) {
    overflow: hidden;
  }
  .globalNav {
    left: 0;
    width: auto;
  }
  .table_basic-row {
    display: block;
  }
  .table_basic-header {
    width: auto;
  }
  .table_basic-data {
    padding-inline: 1em;
  }
  .home-information-inner {
    display: block;
    .archive_link {
      position: static;
      margin-top: 1.25em;
      margin-left: auto;
    }
  }
  .home-information-heading {
    margin-bottom: 0.7em;
  }
  .home-information-item {
    .information-date+p {
      margin-top: 0.3em;
    }
  }
  .home-information-link {
    display: block;
  }
  /* .message-content {
    flex-direction: column;
  } */
  .column-item {
    display: block;
  }
  .column-link {
    padding-block: 0;
    margin-top: 0.6em;
  }
  .medicalHours-table {
    font-size: 1rem;
  }
  .bottom_contact {
    .contact-top {
      flex-direction: column;
    }
  }
}
