@charset "utf-8";
:root {
  --primary-color: #ef6241;
  --secondary-color: #ea6572;
  --tertiary-color: #dc2772;
  --primary-background-color: #fcf6f0;
  --secondary-background-color: #f9e6e6;
  --text-color: #515151;
  --heading-color: #786234;
  --gray: #cecece;
  --wrapper-space: clamp(1.25rem, 0.066rem + 5.26vw, 3.75rem);
  --header-height: clamp(5.625rem, 4.914rem + 3.16vw, 7.125rem);
  /*
  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-behavior: smooth;
  scroll-padding-top: var(--header-height);
  &: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: #fff;
  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 {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.4s;
  &:hover {
    opacity: 0.7;
  }
}
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="button"], input[type="submit"], button {
  cursor: pointer;
  background-color: rgb(255, 255, 255, 0);
  transition: opacity 0.4s;
  &:hover {
    opacity: 0.7;
  }
}
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: 0.9375rem 1.25rem;
  background-color: #fff;
  border: 1px solid #878787;
  border-radius: 0.1875rem;
}
::placeholder {
  color: #b5b5b5;
}
::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) {
  .fadeIn {
    opacity: 0;
    &.show {
      animation: fadeIn 1s both;
    }
  }
  .fadeUp {
    opacity: 0;
    translate: 0 50px;
    &.show {
      animation: fadeUp 1s both;
    }
  }
  .fadeLeft {
    opacity: 0;
    translate: 50px 0;
    &.show {
      animation: fadeLeft 1s both;
    }
  }
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
@keyframes fadeUp {
  to {
    opacity: 1;
    translate: none;
  }
}
@keyframes fadeLeft {
  to {
    opacity: 1;
    translate: none;
  }
}
.logo {
  line-height: 1;
  a {
    display: inline-block;
  }
}
.break_sm {
  display: none;
}
.wrapper_m {
  width: min(62.5rem + var(--wrapper-space) * 2, 100%);
  margin-inline: auto;
  padding-inline: var(--wrapper-space);
}
.wrapper_s {
  width: min(55rem + var(--wrapper-space) * 2, 100%);
  margin-inline: auto;
  padding-inline: var(--wrapper-space);
}
.contact {
  font-weight: 700;
}
.contact-title {
  color: var(--tertiary-color);
  font-size: 1.25rem;
  text-align: center;
  &::before {
    content: "［";
    margin-right: 0.5em;
  }
  &::after {
    content: "］";
    margin-left: 0.5em;
  }
}
.contact-text {
  margin-top: 0.9375rem;
  width: fit-content;
  margin-inline: auto;
  line-height: 1.6;
}
.contact-list {
  margin-top: 1.25rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.625rem;
}
.contact-item {
  width: min(17.25rem, 100%);
}
.contact-tel, .contact-mail {
  display: block;
  border: 1px solid var(--primary-color);
  border-radius: 1.75rem;
  font-weight: 700;
  line-height: 3.375rem;
}
.contact-tel {
  background-color: #fff;
  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(--primary-color);
  color: #fff;
  font-size: 1.375rem;
}
header {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 1.5rem var(--wrapper-space);
  background-color: #fff;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0 var(--wrapper-space);
}
.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.25rem;
  font-weight: 700;
}
.globalNav-link {
  display: block;
  padding: 0.625rem 0.3125rem;
  position: relative;
  &::before {
    content: "";
    display: inline-block;
    height: 2px;
    scale: 0 0.5;
    background-color: var(--tertiary-color);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    transition: scale 0.4s;
  }
  &:hover, &.current {
    &::before {
      scale: 1 0.5;
    }
  }
}
@media screen and (max-width: 80rem) {
  header {
    display: block;
    .logo {
      max-width: 75%;
    }
  }
  .globalNav-toggle {
    display: inline;
  }
  .globalNav-button {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70%;
    aspect-ratio: 1/1;
    background-color: var(--secondary-color);
    position: absolute;
    top: 15%;
    right: 0.9375rem;
    z-index: 11;
    cursor: pointer;
  }
  .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: #fff;
    }
    &::before, &::after {
      content: "";
      transition: translate 0.4s, rotate 0.4s;
    }
    &::before {
      translate: 0 calc(-1*var(--bar-decoration-height)/2)
    }
    &::after {
      translate: 0 calc(var(--bar-decoration-height)/2);
      width: 60%;
      transition: translate 0.4s, rotate 0.4s, width 0.4s;
    }
    span {
      transition: opacity 0.4s;
    }
  }
  .globalNav-overlay {
    display: inline;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9;
    background-color: rgb(0, 0, 0, 0.4);
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.4s, opacity 0.4s;
  }
  .globalNav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    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.4s, opacity 0.4s, translate 0.4s;
    .contact {
      display: block;
      margin-top: 2.5rem;
    }
    .contact-title {
      color: #fff;
    }
    .contact-tel, .contact-mail {
      border: 1px solid #fff;
      background-color: #fff;
      color: var(--primary-color);
    }
  }
  .globalNav-inner {
    width: 100%;
  }
  .globalNav-list {
    display: block;
    text-align: center;
  }
  .globalNav-link {
    color: #fff;
    &::before {
      width: 5rem;
      scale: 1 0.5;
      background-color: #fff;
      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 {
  margin-top: 3.125rem;
  background-color: var(--primary-background-color);
  padding-block: 2.1875rem;
  position: sticky;
  top: 100vh;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--wrapper-space);
  flex-wrap: wrap;
}
.footer-address {
  line-height: 1.6;
}
.footer-address-tel {
  text-transform: uppercase;
  font-size: 1.125rem;
  span {
    font-weight: 700;
    font-size: 1.5rem;
  }
}
.section-title {
  padding-block: 0.625rem;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  &::before {
    content: "";
    display: inline-block;
    width: 5.75rem;
    aspect-ratio: 1/1;
    background-color: #f7dad9;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
  }
}
.section-title-sub, .section-title-main {
  display: block;
  position: relative;
}
.section-title-sub {
  color: var(--secondary-color);
  font-weight: 400;
  font-size: clamp(1.125rem, 1.066rem + 0.26vw, 1.25rem);
}
.section-title-main {
  color: var(--heading-color);
  font-weight: 500;
  font-size: clamp(1.375rem, 1.079rem + 1.32vw, 2rem);
}
.section-lead {
  color: var(--primary-color);
  font-size: clamp(1.375rem, 1.197rem + 0.79vw, 1.75rem);
  line-height: 1.6;
  text-align: center;
  margin-bottom: clamp(1.875rem, 1.579rem + 1.32vw, 2.5rem);
  span {
    display: inline-block;
  }
}
.archive_link {
  display: block;
  width: min(9.125rem, 100%);
  padding: 0.125rem;
  background-color: #fff;
  border: 1px solid var(--heading-color);
  border-radius: 0.625rem;
  color: var(--heading-color);
  text-align: center;
}
.web {
  text-transform: uppercase;
  margin-right: 0.5em;
}
.home-hero {
  padding-block: clamp(3.125rem, 2.533rem + 2.63vw, 4.375rem);
  background-color: var(--primary-background-color);
  position: relative;
  &::before, &::after {
    content: "";
    display: inline-block;
    height: 6px;
    background-color: var(--tertiary-color);
    position: absolute;
    left: 0;
    right: 0;
    transition: scale 0.4s;
    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 {
  width: min(70rem + var(--wrapper-space) * 2, 100%);
  margin-inline: auto;
  padding-inline: var(--wrapper-space);
  display: flex;
  justify-content: space-between;
}
.home-hero-image {
  flex-shrink: 0;
}
.home-hero-content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 1.875rem;
}
.home-hero-title {
  color: var(--heading-color);
  font-weight: 500;
  font-size: clamp(1.5rem, 1.263rem + 1.05vw, 2rem);
  line-height: 1.6;
}
.information-date {
  color: var(--tertiary-color);
}
.home-information {
  margin-block: 3.125rem;
  display: flex;
  gap: 0 var(--wrapper-space);
  position: relative;
  .archive_link {
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
.home-information-title {
  margin-bottom: 3.125rem;
  color: var(--primary-color);
  text-transform: uppercase;
  line-height: 1.2;
}
.home-information-list {
  line-height: 1.6;
}
.home-information-item {
  +.home-information-item {
    margin-top: 0.625rem;
  }
}
.home-information-link {
  display: flex;
  gap: 0.9375rem;
}
.home-lead {
  padding-block: 3.75rem;
  background-color: var(--secondary-background-color);
  background-image: url(./img/home/lead-bg.jpg);
  background-size: contain;
  background-position: center;
}
.home-lead-text {
  p+p {
    margin-top: 0.625rem;
  }
}
.medicalInfo {
  padding-block: 4.375rem 3.75rem;
}
.medicalInfo-lead {
  max-width: 37.5rem;
  margin-inline: auto;
  margin-bottom: 1.875rem;
}
.medicalInfo-item {
  background-color: var(--primary-background-color);
  padding-block: 2.5rem;
  +.medicalInfo-item {
    margin-top: 2.5rem;
  }
}
.medicalInfo-title {
  text-underline-offset: 0.3em;
  &, span {
    text-decoration: underline var(--secondary-color) 0.15em;
  }
}
.medicalInfo-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0 2.5rem;
}
p+.medicalInfo-content {
  margin-top: 1.875rem;
}
.medicalInfo-content>li {
  width: 50%;
}
.medicalInfo-item:nth-child(3) .medicalInfo-content {
  flex-direction: row-reverse;
}
.medicalInfo-content-title {
  background-color: var(--secondary-color);
  padding: 0.5rem;
  border-radius: 0.9375rem;
  color: #fff;
  font-weight: 500;
  font-size: 1.125rem;
  text-align: center;
  margin-bottom: 1.25rem;
}
.medicalInfo-content-list {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(2, 12.25rem);
  gap: 1.25rem;
}
.medicalInfo-content-item {
  background-color: #fff;
  padding: 0.5rem;
  border: 1px solid var(--secondary-color);
  border-radius: 0.9375rem;
  color: var(--secondary-color);
  font-size: 1.125rem;
  text-align: center;
}
.greeting {
  background-color: var(--secondary-background-color);
  padding-block: 4.375rem 2.5rem;
}
.greeting-content {
  background-color: #fff;
  padding-block: 2.5rem;
  border-radius: 0.9375rem;
}
.greeting-content-inner {
  margin-top: 1.875rem;
  display: flex;
  align-items: flex-end;
  gap: 0 1.875rem;
}
.greeting-doctor-name {
  display: flex;
  flex-wrap: wrap;
  gap: 0 1em;
  font-weight: 700;
  font-size: 1.25rem;
}
.greeting-doctor-profile {
  margin-top: 0.625rem;
  padding: 1.25rem;
  border: 3px solid var(--secondary-background-color);
  dl {
    margin-top: 0.3125rem;
  }
  dt {
    color: var(--secondary-color);
  }
}
.greeting-image {
  flex-shrink: 0;
}
.column-category {
  display: block;
  width: min(10.5rem, 100%);
  padding: 0.125rem;
  background-color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  border-radius: 0.625rem;
  color: #fff;
  text-align: center;
}
.home-column {
  max-width: 1120px;
  margin-inline: auto;
  padding-block: 4.375rem 2.5rem;
  position: relative;
  .column-category {
    flex-shrink: 0;
  }
  .archive_link {
    margin-bottom: calc(290px + 1.875rem);
  }
}
.home-column-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0 var(--wrapper-space);
}
.home-column-list {
  width: min(40rem, 100%);
}
.home-column-item {
  padding-block: 1.125rem;
  display: flex;
  align-items: flex-start;
  gap: 0 1.25rem;
  border-bottom: 1px dotted var(--gray);
}
.home-column-title {
  flex-grow: 1;
}
.home-column-link {
  display: block;
  padding-block: 0.125rem;
}
.home-column-image {
  position: absolute;
  bottom: 2.5rem;
  right: 0;
  z-index: -1;
}
.medicalHours {
  padding-top: 4.375rem;
}
.medicalHours-table {
  font-weight: 700;
  font-size: clamp(1rem, 0.941rem + 0.26vw, 1.125rem);
  line-height: 1.6;
  thead, th {
    background-color: var(--secondary-background-color);
  }
  th, td {
    padding: 0.625rem 0.3125rem;
    border: 1px solid var(--gray);
  }
  th {
    &:first-child {
      width: 23%;
    }
  }
  td {
    color: var(--secondary-color);
    text-align: center;
    &[aria-label="休診"] {
      color: var(--heading-color);
    }
  }
  tbody {
    td {
      padding: 1.5625rem 0;
    }
  }
}
td:has(.medicalHours-table-doctor) {
  position: relative;
}
.medicalHours-table-doctor {
  color: var(--heading-color);
  font-size: clamp(0.75rem, 0.632rem + 0.53vw, 1rem);
  position: absolute;
  bottom: 0.1875rem;
  left: 50%;
  translate: -50%;
  white-space: nowrap;
}
.medicalHours-note {
  margin-top: 0.625rem;
  color: var(--secondary-color);
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0 1em;
}
.medicalHours-closed {
  margin-top: 1.25rem;
  background-color: var(--secondary-background-color);
  padding: 0.9375rem;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.6;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3125rem 1em;
  dt {
    color: var(--primary-color);
  }
  dd {
    color: var(--heading-color);
  }
}
.bottom_contact {
  margin-block: 4.375rem 2.5rem;
  padding: 1.875rem var(--wrapper-space);
  border: 12px solid var(--secondary-background-color);
  .contact-list {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .contact-text {
    font-size: 1.125rem;
  }
}
.bottom_link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(31.25rem, 100%);
  margin-inline: auto;
  padding: 0.9375rem;
  background-color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  border-radius: 0.3125rem;
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
  transition: background-color 0.4s, color 0.4s;
  &::after {
    content: "→";
    margin-left: 1em;
  }
  &:hover {
    background-color: #fff;
    color: var(--secondary-color);
  }
  &.back {
    &::before {
      content: "←";
      margin-right: 1em;
    }
    &::after {
      content: normal;
    }
  }
}
.child-hero {
  background-color: var(--primary-color);
  padding: clamp(1.25rem, 0.717rem + 2.37vw, 2.375rem) var(--wrapper-space);
  margin-bottom: clamp(3.125rem, 2.533rem + 2.63vw, 4.375rem);
  color: #fff;
  font-size: clamp(1.375rem, 1.138rem + 1.05vw, 1.875rem);
  text-align: center;
}
.article-inner {
  display: flex;
  gap: 0 2.5rem;
}
.article-main {
  flex-grow: 1;
}
.article-list:is(ul), .article-item:is(article), .article-main:is(article) {
  padding: clamp(1.875rem, 1.579rem + 1.32vw, 2.5rem) clamp(1.5rem, 0.73rem + 3.42vw, 3.125rem);
  border: 2px solid var(--gray);
  +.article-item {
    margin-top: 3.125rem;
  }
  .article-item+.article-item {
    margin-top: 2.5rem;
  }
}
.article-title {
  margin-top: 0.625rem;
  padding-bottom: 0.9375rem;
  border-bottom: 1px dotted var(--gray);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.6;
  +.article-content {
    margin-top: 1.5625rem;
  }
  >a {
    display: block;
  }
}
.article-content {
  overflow-wrap: break-word;
  p, h4, h5, h6, blockquote, ul, ol, table {
    &:first-child {
      margin-top: 0;
    }
    &:last-child {
      margin-bottom: 0;
    }
  }
  p, blockquote, ul, ol, table {
    margin-block: 0.5em;
  }
  h4 {
    margin-block: 1.4em 0.6em;
    padding: 0.3em 0.8em;
    background-color: #e0dcdc;
    color: var(--secondary-color);
    font-size: 1.125rem;
    line-height: 1.6;
  }
  h5 {
    margin-block: 1.2em 0.6em;
    width: fit-content;
    padding: 0.1em 0.6em;
    background-color: #fcf349;
    font-size: 1.0625rem;
    line-height: 1.6;
  }
  h6 {
    margin-block: 0.7em 0.5em;
    color: var(--primary-color);
    font-size: 1rem;
    text-indent: -1em;
    margin-left: 1em;
    &::before {
      content: "●";
    }
  }
  a {
    color: var(--primary-color);
    text-decoration: underline;
    text-underline-offset: 0.2em;
  }
  span[style="text-decoration: underline;"] {
    text-underline-offset: 0.2em;
  }
  blockquote {
    background-color: #f4f4f4;
    padding: 0.625rem 0.9375rem;
    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.3125rem;
      border: 1px solid var(--gray);
    }
  }
  hr {
    margin-block: 1.25rem;
  }
}
.alignleft {
  float: left;
}
.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.alignright {
  float: right;
}
.wp-pagenavi {
  margin-top: 2.5rem;
  margin-inline: auto;
  max-width: 25rem;
  padding-inline: 2.1em;
  font-size: clamp(1.625rem, 1.566rem + 0.26vw, 1.75rem);
  line-height: 2.1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  .page, .current, .extend {
    color: var(--gray);
  }
  .page, .current {
    padding-inline: 0.35em;
  }
  .current {
    color: var(--primary-color);
  }
  .extend {
    font-size: clamp(1.125rem, 0.947rem + 0.79vw, 1.5rem);
  }
}
.previouspostslink, .nextpostslink {
  position: absolute;
  display: block;
  height: 100%;
  aspect-ratio: 1/1;
  background-color: #ececec;
  border: 2px solid var(--gray);
  border-radius: 0.9375rem;
  &::before {
    content: url(./img/common/arrow-primary.svg);
    line-height: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
  }
}
.previouspostslink {
  left: 0;
  &::before {
    rotate: 180deg;
  }
}
.nextpostslink {
  right: 0;
}
.article-aside {
  width: min(11.5625rem, 100%);
  flex-shrink: 0;
}
.article-aside-title {
  max-width: 10rem;
  padding: 0.3125rem 0.9375rem;
  background-color: var(--primary-color);
  border-radius: 0.3125rem;
  color: #fff;
  font-weight: 500;
  font-size: 0.875rem;
}
.article-aside-list {
  margin-top: 0.9375rem;
}
.article-aside-list {
  font-size: 0.9375rem;
  line-height: 1.6;
}
.article-aside-item {
  +.article-aside-item {
    margin-top: 0.625rem;
  }
  >a {
    display: flex;
    gap: 0 0.3125rem;
    &::before {
      content: "";
      display: inline-block;
      width: 12px;
      background-image: url(./img/common/article-aside-item.svg);
      background-position: top 0.5em left;
      flex-shrink: 0;
    }
  }
}
@media screen and (max-width: 56.25rem) {
  .home-hero-inner {
    display: block;
  }
  .home-hero-image {
    text-align: center;
  }
  .home-hero-title {
    margin-top: 2.5rem;
    width: fit-content;
    margin-inline: auto;
  }
  .medicalInfo-content {
    display: block;
  }
  .medicalInfo-content>li {
    width: auto;
    +li {
      margin-top: 2.5rem;
    }
  }
  .medicalInfo-content-list {
    grid-template-columns: repeat(auto-fit, 12.25rem);
  }
  .medicalInfo-image {
    margin-top: 2.5rem;
    text-align: center;
  }
  .greeting-content-inner {
    display: block;
  }
  .greeting-image {
    margin-top: 1.875rem;
    text-align: center;
  }
  .home-column-inner {
    display: block;
    .archive_link {
      margin-top: 1.875rem;
      margin-left: auto;
      margin-bottom: 0;
    }
  }
  .home-column-list {
    width: auto;
  }
  .home-column-image {
    margin-top: 0.625rem;
    position: static;
    text-align: center;
  }
  .article-inner {
    display: block;
  }
  .article-aside {
    width: auto;
    margin-top: 2.5rem;
  }
}
@media screen and (max-width: 37.5rem) {
  .break_sm {
    display: inline;
  }
  body:has(#globalNavToggle:checked) {
    overflow: hidden;
  }
  .globalNav {
    left: 0;
    width: auto;
  }
  .home-hero-inner {
    display: block;
  }
  .home-information {
    display: block;
    .archive_link {
      position: static;
      margin-top: 1.25rem;
      margin-left: auto;
    }
  }
  .home-information-title {
    margin-bottom: 1.25rem;
  }
  .home-information-item {
    .information-date+p {
      margin-top: 0.3125rem;
    }
  }
  .home-information-link {
    display: block;
  }
  .home-lead {
    background-size: auto;
    background-position: center right -110px;
  }
  .home-column-item {
    display: block;
  }
  .home-column-link {
    padding-block: 0;
    margin-top: 0.625rem;
  }
}
