@charset "UTF-8";
@import "https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap";
:root {
  --brand-main-50: #f3f7fd;
  --brand-main-100: #cedff7;
  --brand-main-400: #3e5ea0;
  --brand-main-500: #122a62;
  --brand-accent-blue: #b5c8fc;
  --brand-accent-red: #f5bed2;
  --brand-black-50: #f0f1f5;
  --brand-black-100: #e6e7eb;
  --brand-black-300: #bebfc3;
  --brand-black-500: #6d6e72;
  --brand-black-900: #323232;
  --brand-white: #fff;
  --brand-gray: var(--brand-black-50);
  --error: #c00;
  --color-border: var(--brand-black-100);
  --color-border-transparent: rgb(0 0 0 / 0.07);
  --color-bg: var(--brand-gray);
  --color-bg-main: var(--brand-main-50);
  --color-bg-transparent: rgb(0 0 0 / 0.03);
  --color-bg-light: var(--brand-black-300);
  --color-bg-disabled: var(--brand-black-100);
  --gradient-brand: linear-gradient(90deg, #b5c8fc 0%, #f5bed2 100%);
  --gradient-brand-transparent: linear-gradient(90deg, rgb(181 200 252 / 0.6) 0%, rgb(245 190 210 / 0.6) 100%);
  --gradient-white-transparent: linear-gradient(rgb(255 255 255 / 0.8) 0%, rgb(255 255 255 / 0.7) 100%);
  --gradient-gray-transparent: linear-gradient(rgb(240 241 245 / 0.8) 0%, rgb(240 241 245 / 0.7) 100%);
  --text: var(--brand-black-900);
  --text-support: var(--brand-black-500);
  --text-link: var(--brand-main-400);
  --input-border: var(--brand-black-100);
  --input-placeholder: var(--brand-black-300);
}

:root {
  --font-base: 13px;
  --font-sm: 11px;
  --font-heading-xxl: 24px;
  --font-heading-xl: 20px;
  --font-heading-lg: 18px;
  --font-heading-md: 15px;
  --font-heading-sm: 14px;
  --font-pc-base: 16px;
  --font-pc-sm: 14px;
  --font-pc-heading-xxl: 48px;
  --font-pc-heading-xl: 42px;
  --font-pc-heading-lg: 36px;
  --font-pc-heading-md: 26px;
  --font-pc-heading-sm: 20px;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 600;
  --line-height-lg: 2;
  --line-height-base: 1.8;
  --line-height-sm: 1.6;
  --line-height-xs: 1.5;
  --line-height-2xs: 1.4;
  --letter-spacing-base: 0.01em;
  --letter-spacing-lg: 0.02em;
  --letter-spacing-en: 0.06em;
  --font-family-jp: "Noto Sans JP", sans-serif;
  --font-family-en: "OptimaNovaLTPro-Light", serif;
  --font-family-mix: "OptimaNovaLTPro-Light", "Noto Sans JP", sans-serif;
}

:root {
  --site-max-width: 1280px;
}

/* ------------------------------
  base
------------------------------ */
html {
  container-type: inline-size;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
html.is-fixed {
  height: 100%;
  overflow-y: scroll;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--color-bg);
  color: var(--brand-black-900);
  font-family: var(--font-family-jp);
  font-size: var(--font-base);
  -webkit-font-smoothing: antialiased;
  font-weight: var(--font-weight-regular);
  font-feature-settings: "palt";
  letter-spacing: var(--letter-spacing-base);
  line-height: var(--line-height-base);
  container-type: inline-size;
  container-name: body;
  text-rendering: optimizelegibility;
}
@container (min-width: 768px) {
  body {
    font-size: var(--font-pc-base);
  }
}
.is-fixed body {
  position: fixed;
  width: 100%;
}

div,
section,
article,
aside,
header,
footer,
nav,
main,
a {
  box-sizing: border-box;
}

main {
  position: relative;
  z-index: 1;
}

form {
  display: contents;
}

input,
button {
  font-family: var(--font-family-jp);
  font-size: var(--font-base);
}
@container (min-width: 768px) {
  input,
  button {
    font-size: var(--font-pc-base);
  }
}

::placeholder {
  color: var(--brand-black-300);
}

button {
  cursor: pointer;
}

a:not([class]) {
  color: var(--brand-main-500);
  text-decoration: underline;
}
a:not([class])[target=_blank]::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 4px;
  background-color: var(--brand-main-500);
  mask: url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/icon/ico_blank.svg") no-repeat center/16px;
}
@media (any-hover: hover) {
  a:not([class]):hover {
    text-decoration: none;
  }
}

img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  vertical-align: middle;
  image-rendering: auto;
}

dialog::backdrop {
  background-color: rgba(0, 0, 0, 0.4);
}

@container (min-width: 768px) {
  .only-sp {
    display: none !important;
  }
}
@container (max-width: 767.9px) {
  .only-pc {
    display: none !important;
  }
}
/* ------------------------------
  footer
------------------------------ */
.footer {
  padding-bottom: 80px;
}
.footer__inner {
  padding: 60px 24px 0;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  background-color: var(--brand-white);
}
@container (min-width: 768px) {
  .footer__inner {
    margin-inline: auto;
    padding-inline: 64px;
  }
}
.footer__logo {
  margin-block: 0 24px;
  text-align: center;
}
@container (min-width: 768px) {
  .footer__logo {
    padding-inline: 64px;
    text-align: left;
  }
}
@container (min-width: 1280px) {
  .footer__logo {
    max-width: 1280px;
    margin-inline: auto;
    padding-inline: 0;
  }
}
.footer__logo img {
  height: 44px;
}
@container (min-width: 1280px) {
  .footer__logo img {
    height: 66px;
  }
}
.footer__links {
  padding-inline: 24px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  background-color: var(--brand-white);
}
@container (min-width: 768px) {
  .footer__links {
    display: flex;
    justify-content: space-between;
    max-width: 1280px;
    margin-inline: auto;
    padding: 80px 64px 0;
    background-color: transparent;
  }
}
.footer__copyright {
  display: block;
  padding-block: 20px 40px;
  font-family: var(--font-family-en);
  font-size: 10px;
  letter-spacing: 0.02em;
}
@container (min-width: 768px) {
  .footer__copyright {
    padding-bottom: 0;
    font-size: var(--font-pc-sm);
    text-align: right;
  }
}

/* ------------------------------
  footer-nav
------------------------------ */
.footer-nav {
  margin-block: 0;
  padding-block: 24px;
}
@container (min-width: 768px) {
  .footer-nav {
    padding: 80px 64px;
  }
}
@container (min-width: 1280px) {
  .footer-nav {
    max-width: 1280px;
    margin-inline: auto;
    padding-inline: 0;
  }
}

/* ------------------------------
  footer-nav-primary
------------------------------ */
.footer-nav-primary {
  display: flex;
  flex-direction: column;
  margin-block: 0;
  padding-left: 0;
  list-style: none;
}
@container (min-width: 768px) {
  .footer-nav-primary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 40px;
  }
  .footer-nav-primary + .footer-nav-primary {
    margin-top: 60px;
  }
}
.footer-nav-primary__item--about {
  order: 1;
}
.footer-nav-primary__item--treatment {
  order: 2;
}
.footer-nav-primary__item--price {
  order: 3;
}
.footer-nav-primary__item--seminar {
  order: 4;
}
.footer-nav-primary__item--case {
  order: 5;
}
.footer-nav-primary__item--reserve {
  order: 6;
}
@container (min-width: 768px) {
  .footer-nav-primary__item--reserve {
    order: 10;
  }
}
.footer-nav-primary__item--client {
  order: 7;
}
@container (min-width: 768px) {
  .footer-nav-primary__item--client {
    order: 11;
  }
}
.footer-nav-primary__item--column {
  order: 8;
}
@container (min-width: 768px) {
  .footer-nav-primary__item--column {
    order: 12;
  }
}
.footer-nav-primary__item--contact {
  order: 9;
}
@container (min-width: 768px) {
  .footer-nav-primary__item--contact {
    order: 6;
  }
}
.footer-nav-primary__item--info {
  order: 10;
}
@container (min-width: 768px) {
  .footer-nav-primary__item--info {
    order: 7;
  }
}
.footer-nav-primary__item--diagnosis {
  order: 11;
}
@container (min-width: 768px) {
  .footer-nav-primary__item--diagnosis {
    order: 13;
  }
}
.footer-nav-primary__item--recruit {
  order: 12;
}
@container (min-width: 768px) {
  .footer-nav-primary__item--recruit {
    order: 14;
  }
}
.footer-nav-primary__title {
  display: flex;
  position: relative;
  align-items: center;
  width: 100%;
  min-height: 60px;
  padding: 4px 8px;
  border: 0;
  border-bottom: 1px solid var(--color-border-transparent);
  background-color: transparent;
  color: var(--text);
  font-size: var(--font-heading-sm);
  font-weight: var(--font-weight-bold);
}
@container (min-width: 768px) {
  .footer-nav-primary__title {
    display: none;
  }
}
.footer-nav-primary__title[aria-expanded=true] {
  border-bottom: 0;
  color: var(--brand-main-500);
}
.footer-nav-primary__title[aria-expanded=true]::before {
  content: "";
  margin-right: 8px;
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background-color: var(--brand-accent-red);
}
@container (min-width: 1280px) {
  .footer-nav-primary__title[aria-expanded=true]::before {
    position: absolute;
    left: -12px;
  }
}
.footer-nav-primary__link {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 60px;
  padding: 4px 8px;
  border-bottom: 1px solid var(--color-border-transparent);
  color: var(--text);
  font-size: var(--font-heading-sm);
  font-weight: var(--font-weight-bold);
  text-decoration: none;
}
.footer-nav-primary__link::after {
  content: "";
  display: block;
  width: 44px;
  height: 44px;
  margin-left: auto;
  background: url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/icon/ico_arrow.svg") no-repeat center/10px;
}
@container (min-width: 768px) {
  .footer-nav-primary__link {
    justify-content: flex-start;
    padding-bottom: 28px;
    column-gap: 12px;
    border-bottom: 1px solid var(--color-border);
  }
  .footer-nav-primary__link::after {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    transition: background 0.2s ease;
    border-radius: 100%;
    background: var(--color-bg-main) url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/icon/ico_arrow.svg") no-repeat center/10px;
  }
  @media (any-hover: hover) {
    .footer-nav-primary__link:hover::after {
      background-color: var(--brand-main-500);
      background-image: url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/icon/ico_arrow_white.svg");
    }
  }
  .footer-nav-primary__link::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background-color: var(--brand-accent-red);
  }
}

/* ------------------------------
  footer-nav-secondary
------------------------------ */
.footer-nav-secondary {
  display: none;
  margin-block: 0;
  padding-left: 0;
  list-style: none;
}
@container (min-width: 768px) {
  .footer-nav-secondary {
    display: block;
  }
}
.footer-nav-secondary__list {
  display: grid;
  margin-block: 0;
  padding-inline: 20px;
  column-gap: 4px;
  list-style: none;
}
.footer-nav-secondary__title {
  display: block;
  padding-block: 8px;
  color: var(--brand-main-500);
  text-decoration: none;
}
@container (min-width: 768px) {
  .footer-nav-secondary__item:first-child .footer-nav-secondary__title {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-block: 0 28px;
    column-gap: 12px;
    border-bottom: 1px solid var(--color-border);
    font-weight: var(--font-weight-bold);
  }
  .footer-nav-secondary__item:first-child .footer-nav-secondary__title::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background-color: var(--brand-accent-red);
  }
}
.footer-nav-secondary__link {
  display: block;
  padding-block: 8px;
  color: var(--brand-main-500);
  text-decoration: none;
}
@container (min-width: 768px) {
  .footer-nav-secondary__item:first-child .footer-nav-secondary__link {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-block: 0 28px;
    column-gap: 12px;
    border-bottom: 1px solid var(--color-border);
    font-weight: var(--font-weight-bold);
  }
  .footer-nav-secondary__item:first-child .footer-nav-secondary__link::after {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    transition: background 0.2s ease;
    border-radius: 100%;
    background: var(--color-bg-main) url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/icon/ico_arrow.svg") no-repeat center/10px;
  }
  @media (any-hover: hover) {
    .footer-nav-secondary__item:first-child .footer-nav-secondary__link:hover::after {
      background-color: var(--brand-main-500);
      background-image: url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/icon/ico_arrow_white.svg");
    }
  }
  @media (any-hover: hover) {
    .footer-nav-secondary__item:first-child .footer-nav-secondary__link:hover {
      text-decoration: none;
    }
  }
  .footer-nav-secondary__item:first-child .footer-nav-secondary__link::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background-color: var(--brand-accent-red);
  }
}
@media (any-hover: hover) {
  .footer-nav-secondary__link:hover {
    text-decoration: underline;
  }
}
.footer-nav-secondary__link::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 1px;
  margin-right: 8px;
  border-radius: 1px;
  background-color: var(--brand-black-500);
  vertical-align: middle;
}

/* ------------------------------
  footer-sns
------------------------------ */
.footer-sns {
  display: grid;
  grid-template-columns: repeat(3, 44px);
  justify-content: center;
  margin-block: 0;
  padding-left: 0;
  column-gap: 8px;
  list-style: none;
}
@container (min-width: 768px) {
  .footer-sns {
    grid-template-columns: repeat(3, 64px);
    column-gap: 20px;
  }
  .footer-sns__link {
    display: grid;
    width: 64px;
    height: 64px;
    border-radius: 100%;
    background-color: var(--brand-white);
    place-content: center;
  }
  .footer-sns__link img {
    transition: opacity 0.2s ease;
  }
  @media (any-hover: hover) {
    .footer-sns__link img:hover {
      opacity: 0.6;
    }
  }
}

/* ------------------------------
  footer-support
------------------------------ */
.footer-support {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 22px;
  margin-block: 0 40px;
  padding-left: 0;
  list-style: none;
}
@container (min-width: 768px) {
  .footer-support {
    justify-content: flex-end;
    margin-bottom: 0;
    font-size: var(--font-pc-sm);
  }
}
.footer-support__link {
  color: var(--brand-main-500);
  text-decoration: underline;
}
@container (min-width: 768px) {
  .footer-support__link {
    color: var(--brand-main-500);
    font-weight: var(--font-weight-medium);
  }
}
@media (any-hover: hover) {
  .footer-support__link:hover {
    text-decoration: none;
  }
}

/* ------------------------------
  header
------------------------------ */
.header {
  display: grid;
  position: sticky;
  z-index: 2;
  top: 0;
  grid-template-columns: 247px 1fr;
  padding-block: 13px;
  background-color: var(--color-bg);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}
@container (min-width: 768px) {
  .header {
    grid-template-columns: 325px 1fr;
    padding-block: 20px;
  }
}
.header__logo {
  align-self: center;
  margin-block: 0;
  padding-inline: 20px;
}
@container (min-width: 768px) {
  .header__logo {
    padding-inline: 28px;
  }
}
.header__copyright {
  display: block;
  padding: 28px 32px;
  font-family: var(--font-family-en);
  font-size: 10px;
  letter-spacing: 0.02em;
}
@container (min-width: 1280px) {
  .header__copyright {
    display: none;
  }
}

/* ------------------------------
  header-nav
------------------------------ */
.header-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-inline: 0 12px;
  column-gap: 12px;
}
@container (min-width: 768px) {
  .header-nav {
    padding-inline: 24px 20px;
  }
}
.header-nav__inner {
  visibility: hidden;
  position: absolute;
  top: -100%;
}
.header-nav__inner.is-open {
  visibility: visible;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding: 0 0 20px;
  overflow-y: auto;
  transition: top 0.3s ease;
  background-color: var(--color-bg);
  box-shadow: inset 0 0 16px rgba(0, 0, 0, 0.1);
}
@container (min-width: 1280px) {
  .header-nav__inner {
    display: contents;
    visibility: visible;
  }
}
.header-nav__header {
  display: flex;
  align-items: center;
  height: 70px;
  padding-inline: 20px;
}
@container (min-width: 768px) {
  .header-nav__header {
    height: 100px;
  }
}
@container (min-width: 1280px) {
  .header-nav__header {
    display: none;
  }
}
.header-nav__header-logo {
  height: 29px;
  margin-block: 0;
}
@container (min-width: 768px) {
  .header-nav__header-logo {
    height: 40px;
  }
}

/* ------------------------------
  header-nav-primary
------------------------------ */
.header-nav-primary {
  display: flex;
  flex-direction: column;
  margin-block: 18px 0;
  padding-inline: 24px;
  list-style: none;
}
@container (min-width: 1280px) {
  .header-nav-primary {
    flex-direction: row;
    margin: 0 20px 0 0;
    padding-inline: 0;
    column-gap: 28px;
  }
}
.header-nav-primary__item {
  position: relative;
  overflow-anchor: none;
}
@container (min-width: 1280px) {
  .header-nav-primary__item {
    display: flex;
  }
  .header-nav-primary__item--hide-pc {
    display: none;
  }
}
.header-nav-primary__item--about {
  order: 1;
}
.header-nav-primary__item--treatment {
  order: 2;
}
.header-nav-primary__item--seminar {
  order: 4;
}
.header-nav-primary__item--price {
  order: 3;
}
.header-nav-primary__item--case {
  order: 5;
}
.header-nav-primary__item--reserve {
  order: 6;
}
@container (min-width: 1280px) {
  .header-nav-primary__item--reserve {
    order: 7;
  }
}
.header-nav-primary__item--client {
  order: 7;
}
.header-nav-primary__item--column {
  order: 8;
}
.header-nav-primary__item--contact {
  order: 9;
}
@container (min-width: 1280px) {
  .header-nav-primary__item--contact {
    order: 6;
  }
}
.header-nav-primary__item--info {
  order: 10;
}
.header-nav-primary__title {
  display: flex;
  position: relative;
  align-items: center;
  width: 100%;
  min-height: 60px;
  padding: 4px 8px;
  border: 0;
  border-bottom: 1px solid var(--color-border-transparent);
  background-color: transparent;
  color: var(--text);
  font-size: var(--font-heading-sm);
  font-weight: var(--font-weight-bold);
}
@container (min-width: 1280px) {
  .header-nav-primary__title {
    min-height: 10px;
    margin-block: 0;
    padding: 0 0 6px;
    border: 0;
    font-size: var(--font-pc-sm);
    font-weight: var(--font-weight-medium);
    line-height: var(--line-height-base);
    cursor: pointer;
  }
  .header-nav-primary__title span {
    display: none;
  }
}
.header-nav-primary__title[aria-expanded=true] {
  border-bottom: 0;
  color: var(--brand-main-500);
}
.header-nav-primary__title[aria-expanded=true]::before {
  content: "";
  margin-right: 8px;
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background-color: var(--brand-accent-red);
}
@container (min-width: 1280px) {
  .header-nav-primary__title[aria-expanded=true]::before {
    position: absolute;
    left: -12px;
  }
}
.header-nav-primary__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  transition: width 0.3s ease;
  background-color: var(--brand-main-500);
}
@media (any-hover: hover) {
  .header-nav-primary__title {
    cursor: pointer;
  }
  @container (min-width: 1280px) {
    .header-nav-primary__title[aria-expanded=false]:hover::after {
      width: 100%;
    }
  }
}
.header-nav-primary__link {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 60px;
  padding: 4px 8px;
  border-bottom: 1px solid var(--color-border-transparent);
  background: url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/icon/ico_arrow.svg") no-repeat right 22px center/auto 10px;
  color: var(--text);
  font-size: var(--font-heading-sm);
  font-weight: var(--font-weight-bold);
  text-decoration: none;
}
@container (min-width: 1280px) {
  .header-nav-primary__link {
    display: inline-flex;
    position: relative;
    min-height: 10px;
    margin-block: 0;
    padding: 0 0 6px;
    border-bottom: 0;
    background: none;
    font-size: var(--font-pc-sm);
    font-weight: var(--font-weight-medium);
  }
  .header-nav-primary__link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    transition: width 0.3s ease;
    background-color: var(--brand-main-500);
  }
}
@media (any-hover: hover) {
  .header-nav-primary__link {
    cursor: pointer;
  }
  .header-nav-primary__link:hover::after {
    width: 100%;
  }
}

/* ------------------------------
  header-nav-secondary
------------------------------ */
.header-nav-secondary {
  display: none;
  margin-block: 0;
  padding-left: 0;
  list-style: none;
}
@container (min-width: 1280px) {
  .header-nav-secondary {
    position: absolute;
    top: 55px;
    left: 50%;
    min-width: 320px;
    padding: 36px 32px 28px;
    transform: translateX(-50%);
    border-radius: 6px;
    background-color: var(--brand-white);
    box-shadow: 4px 4px 32px rgba(0, 0, 0, 0.1);
  }
  .header-nav-secondary--content {
    min-width: 720px;
  }
  .header-nav-secondary--price {
    min-width: 420px;
  }
  .header-nav-secondary--support {
    min-width: 340px;
  }
}
.header-nav-secondary__title {
  display: none;
}
@container (min-width: 1280px) {
  .header-nav-secondary__title {
    display: flex;
    align-items: center;
    margin-block: 0;
    padding: 4px 0 4px 4px;
    column-gap: 8px;
    font-size: var(--font-heading-sm);
    font-weight: var(--font-weight-bold);
  }
  .header-nav-secondary__title::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 100%;
    background-color: var(--brand-accent-red);
  }
}
.header-nav-secondary__list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  margin-block: 0;
  padding-inline: 20px;
  row-gap: 4px;
  list-style: none;
}
@container (min-width: 1280px) {
  .header-nav-secondary__list {
    max-height: 470px;
    padding-right: 0;
  }
  .header-nav-secondary--price .header-nav-secondary__list {
    max-height: 550px;
  }
}
.header-nav-secondary__link {
  display: block;
  padding-block: 8px;
  color: var(--brand-main-500);
  text-decoration: none;
}
@container (min-width: 768px) {
  .header-nav-secondary__link {
    min-width: fit-content;
  }
}
@media (any-hover: hover) {
  .header-nav-secondary__link:hover {
    text-decoration: underline;
  }
}
.header-nav-secondary__link::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 1px;
  margin-right: 8px;
  border-radius: 1px;
  background-color: var(--brand-black-500);
  vertical-align: middle;
}

/* ------------------------------
  header-sns
------------------------------ */
.header-sns {
  display: grid;
  grid-template-columns: repeat(3, 48px);
  justify-content: start;
  margin: 0 32px;
  padding-left: 0;
  column-gap: 12px;
  list-style: none;
}
@container (min-width: 1280px) {
  .header-sns {
    display: none;
  }
}
.header-sns__link {
  display: grid;
  width: 48px;
  height: 48px;
  border-radius: 100%;
  background-color: var(--brand-white);
  place-content: center;
}

/* ------------------------------
  header-support
------------------------------ */
.header-support {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 22px;
  margin-block: 18px 40px;
  padding-inline: 24px;
  list-style: none;
}
@container (min-width: 1280px) {
  .header-support {
    display: none;
  }
}
.header-support__link {
  color: var(--text);
  text-decoration: underline;
}

/* ------------------------------
  ly-bottom-nav
------------------------------ */
.ly-bottom-nav {
  position: sticky;
  z-index: 1;
  bottom: 0;
  justify-content: flex-end;
  width: fit-content;
  margin-left: auto;
  padding: 0 20px 20px;
}
@container (min-width: 768px) {
  .ly-bottom-nav {
    display: flex;
    justify-content: flex-start;
    margin-left: 0;
    padding: 0;
  }
}
body:has(.modal-sp.is-open) .ly-bottom-nav {
  z-index: -1;
}
.ly-bottom-nav:has(.button-entry) {
  box-sizing: border-box;
  width: 100%;
}
.ly-bottom-nav:has(.button-entry)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  width: calc(100% - 40px);
  height: 60px;
  border-radius: 100vh;
  background-color: var(--brand-white);
}
@container (min-width: 768px) {
  .ly-bottom-nav:has(.button-entry)::before {
    display: none;
  }
}

/* ------------------------------
  ly-contents
------------------------------ */
.ly-contents {
  width: 100%;
  border-radius: 24px;
  background-color: var(--brand-white);
}
@container (min-width: 1024px) {
  .ly-contents {
    border-radius: 32px;
  }
}
.ly-contents--top {
  background-color: transparent;
}
.ly-contents__inner {
  box-sizing: content-box;
  max-width: var(--site-max-width);
  margin-inline: auto;
  padding: 0 24px 40px;
}
@container (min-width: 768px) {
  .ly-contents__inner {
    padding-inline: 62px;
  }
}
@container (min-width: 1024px) {
  .ly-contents__inner {
    display: grid;
    grid-template-columns: min(22.6%, 290px) 1fr;
    padding-block: 100px;
    column-gap: 40px;
  }
}
@container (min-width: 1280px) {
  .ly-contents__inner {
    max-width: 1280px;
    margin-inline: auto;
  }
}
.ly-contents__inner:has(.article) {
  padding-inline: 0;
}
@container (min-width: 1024px) {
  .ly-contents__inner:has(.article) {
    padding-inline: 62px;
  }
}
.ly-contents--top .ly-contents__inner {
  padding-block: 100px 120px;
}
@container (min-width: 768px) {
  .ly-contents--top .ly-contents__inner {
    padding-inline: 64px;
  }
}
@container (min-width: 1024px) {
  .ly-contents--top .ly-contents__inner {
    display: block;
    padding-inline: 80px;
  }
}
.ly-contents__single {
  box-sizing: content-box;
  max-width: 870px;
  margin-inline: auto;
  padding: 0 24px 40px;
}
@container (min-width: 768px) {
  .ly-contents__single {
    padding-inline: 62px;
  }
}
@container (min-width: 1024px) {
  .ly-contents__single {
    padding-block: 100px;
  }
}

/* ------------------------------
  ly-page-header
------------------------------ */
.ly-page-header {
  width: 100%;
}
@container (min-width: 768px) {
  .ly-page-header {
    padding-inline: 62px;
  }
}
@container (min-width: 1280px) {
  .ly-page-header {
    max-width: 1280px;
    margin-inline: auto;
  }
}
@container (min-width: 1404px) {
  .ly-page-header {
    box-sizing: content-box;
  }
}

/* ------------------------------
  ly-page-footer
------------------------------ */
.ly-page-footer {
  width: 100%;
}
@container (min-width: 768px) {
  .ly-page-footer {
    padding-inline: 62px;
  }
}
@container (min-width: 1280px) {
  .ly-page-footer {
    max-width: 1280px;
    margin-inline: auto;
  }
}
@container (min-width: 1404px) {
  .ly-page-footer {
    box-sizing: content-box;
  }
}

/* ------------------------------
  artcile
------------------------------ */
.article {
  padding-inline: 24px;
}
@container (min-width: 768px) {
  .article {
    padding-inline: 62px;
  }
}
@container (min-width: 1024px) {
  .article {
    padding-inline: 0;
  }
}
.article p:not([class]) {
  margin-block: 0;
  font-size: var(--font-base);
}
@container (min-width: 768px) {
  .article p:not([class]) {
    font-size: var(--font-pc-base);
  }
}
.article > p:not([class]) {
  margin-top: 24px;
}
.article strong {
  font-weight: var(--font-weight-bold);
}
.article a:not([class]) {
  color: var(--brand-main-500);
  text-decoration: underline;
}
@media (any-hover: hover) {
  .article a:not([class]):hover {
    text-decoration: none;
  }
}
.article table:not([class]) {
  margin-top: 32px;
  overflow: hidden;
  table-layout: fixed;
  border-spacing: 1px;
  border-collapse: separate !important;
  border-radius: 6px;
  background-color: var(--brand-black-100);
}
@container (min-width: 768px) {
  .article table:not([class]) {
    margin-top: 40px;
  }
}
.article table:not([class]) th {
  padding: 10px;
  background-color: var(--color-bg);
  color: var(--brand-main-500);
  font-weight: var(--font-weight-regular);
}
@container (min-width: 768px) {
  .article table:not([class]) th {
    padding: 16px;
    font-weight: var(--font-weight-bold);
  }
}
.article table:not([class]) td {
  padding: 10px;
  background-color: var(--brand-white);
  text-align: center;
}
@container (min-width: 768px) {
  .article table:not([class]) td {
    padding: 16px;
    font-weight: var(--font-weight-bold);
  }
}
.article table:not([class]) tr th:first-child {
  border-top-left-radius: 5px; /* 左上の角 */
}
.article table:not([class]) tr th:last-child {
  border-top-right-radius: 5px; /* 右上の角 */
}
.article table:not([class]) tr:last-child td:last-child {
  border-bottom-right-radius: 5px; /* 右下の角 */
}
.article table:not([class]) tr:last-child td:first-child {
  border-bottom-left-radius: 5px; /* 左下の角 */
}
.article table:not([class]) ul {
  margin-top: 0;
}

/* ------------------------------
  article-attention
------------------------------ */
.article-attention {
  margin-top: 32px;
  padding: 24px;
  border: 1px solid var(--brand-main-500);
  border-radius: 10px;
  background-color: var(--color-bg-main);
}
.article-attention__title {
  margin-block: 0 -2px;
  font-size: var(--font-base);
  font-weight: var(--font-weight-bold);
}
@container (min-width: 768px) {
  .article-attention__title {
    margin-bottom: 20px;
    font-size: var(--font-pc-heading-sm);
    font-weight: var(--font-weight-regular);
  }
}
.article-attention__title::before {
  content: "";
  display: inline-block;
  width: 23px;
  height: 21px;
  margin-right: 6px;
  background: url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/icon/ico_attention.svg") no-repeat left top/contain;
  vertical-align: -6px;
}
@container (min-width: 768px) {
  .article-attention__title::before {
    vertical-align: -3px;
  }
}

/* ------------------------------
  article-box-list
------------------------------ */
.article-box-list {
  display: flex;
  flex-direction: column;
  margin-top: 32px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 6px;
}
@container (min-width: 768px) {
  .article-box-list {
    flex-direction: row;
    margin-top: 40px;
  }
}
.article-box-list__box {
  flex-grow: 1;
}
.article-box-list__box:not(:first-child) {
  border-left: 1px solid var(--color-border);
}
.article-box-list__title {
  margin-block: 0;
  padding: 10px;
  background-color: var(--color-bg);
  color: var(--brand-main-500);
  font-weight: var(--font-weight-bold);
  text-align: center;
}
@container (min-width: 768px) {
  .article-box-list__title {
    padding: 16px;
    font-weight: var(--font-weight-regular);
  }
}
.article-box-list__content {
  padding: 16px;
}
@container (min-width: 768px) {
  .article-box-list__content {
    padding: 24px;
  }
}

/* ------------------------------
  article-button
------------------------------ */
.article-button {
  margin: 24px auto 0;
}
.article-button--left {
  margin-inline: 0 auto !important;
}
.article-button--right {
  margin-inline: auto 0 !important;
}
@container (min-width: 768px) {
  .article-button {
    margin: 32px auto 0;
  }
}
.article .article-button {
  display: flex;
}

/* ------------------------------
  article-date
------------------------------ */
.article-date {
  margin: 0 24px 32px;
  color: var(--brand-black-300);
  font-size: var(--font-base);
}
@container (min-width: 768px) {
  .article-date {
    margin: 0 0 40px;
    font-size: var(--font-pc-heading-sm);
  }
}
.article-date time {
  display: inline-block;
}
.article-date time::before {
  content: "";
  margin-inline: 8px;
  vertical-align: middle;
  display: inline-block;
  width: 2px;
  height: 2px;
  border-radius: 100%;
  background-color: var(--brand-black-300);
}
@container (min-width: 768px) {
  .article-date time::before {
    width: 4px;
    height: 4px;
    margin-inline: 10px;
  }
}

/* ------------------------------
  article-doctor
------------------------------ */
.article-doctor {
  display: grid;
  grid-template-areas: "heading heading" "image data";
  grid-template-columns: 60px 1fr;
  margin-top: 40px;
  padding: 24px 28px;
  column-gap: 16px;
  border-radius: 8px;
  background-color: var(--color-bg);
}
@container (min-width: 768px) {
  .article-doctor {
    grid-template-columns: 166px 1fr;
    margin-top: 80px;
    padding: 32px 36px;
    column-gap: 20px;
  }
}
.article-doctor__heading {
  display: flex;
  grid-area: heading;
  align-items: center;
  margin-block: 0 16px;
  column-gap: 8px;
  color: var(--brand-main-500);
  font-size: var(--font-heading-sm);
  font-weight: var(--font-weight-bold);
}
@container (min-width: 768px) {
  .article-doctor__heading {
    margin-bottom: 24px;
    column-gap: 12px;
    font-size: var(--font-pc-base);
  }
}
.article-doctor__heading::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background-color: var(--brand-accent-red);
}
@container (min-width: 768px) {
  .article-doctor__heading::before {
    width: 6px;
    height: 6px;
  }
}
.article-doctor__image {
  display: block;
  grid-area: image;
  width: 60px;
  height: 60px;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid var(--brand-main-500);
  border-radius: 100%;
}
@container (min-width: 768px) {
  .article-doctor__image {
    width: 126px;
    height: 126px;
  }
}
.article-doctor__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-doctor__data {
  grid-area: data;
  font-size: var(--font-sm);
}
@container (min-width: 768px) {
  .article-doctor__data {
    font-size: var(--font-pc-base);
  }
}
.article-doctor__name {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-block: 0 4px;
  column-gap: 8px;
  color: var(--brand-main-500);
  font-size: var(--font-heading-md);
  font-weight: var(--font-weight-bold);
}
@container (min-width: 768px) {
  .article-doctor__name {
    font-size: var(--font-pc-heading-sm);
  }
}
.article-doctor__name span {
  display: inline-block;
  opacity: 0.5;
  font-size: var(--font-base);
  font-weight: var(--font-weight-regular);
}
@container (min-width: 768px) {
  .article-doctor__name span {
    font-size: var(--font-pc-sm);
  }
}
.article-doctor__position {
  margin-block: 0;
  font-size: var(--font-sm);
}
@container (min-width: 768px) {
  .article-doctor__position {
    font-size: var(--font-pc-base);
  }
}
.article-doctor__more {
  display: none;
}
.article-doctor__text {
  margin-block: 8px 0;
}
@container (min-width: 768px) {
  .article-doctor__text {
    margin-top: 20px;
  }
}
.article-doctor__button {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 36px;
  padding-block: 6px;
  column-gap: 4px;
  transition: opacity 0.3s ease, height 0s 0.3s ease;
  border: 0;
  border-radius: 100vh;
  background-color: var(--brand-white);
  color: var(--brand-main-500);
  font-size: var(--font-base);
  font-weight: var(--font-weight-bold);
}
@container (min-width: 768px) {
  .article-doctor__button {
    height: 48px;
    padding-bottom: 8px;
    border-radius: 100vh;
    font-size: var(--font-pc-base);
  }
}
.article-doctor__button::before {
  content: "";
  position: absolute;
  transition: opacity 0.2s ease;
  border-radius: 100vh;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.08);
  pointer-events: none;
  inset: 0;
}
@media (any-hover: hover) {
  .article-doctor__button:hover::before {
    opacity: 1;
  }
}
.is-open .article-doctor__button {
  height: 0;
  opacity: 0;
}

/* ------------------------------
  article-doctor-biography
------------------------------ */
.article-doctor-biography__text {
  margin-block: 8px 0;
}
@container (min-width: 768px) {
  .article-doctor-biography__text {
    margin-top: 20px;
  }
}
.article-doctor-biography ul {
  margin-block: 16px 0;
  padding-left: 0;
  list-style: none;
}
.article-box-list .article-doctor-biography ul {
  margin-top: 0;
}
.article-doctor-biography li {
  font-size: var(--font-base);
}
@container (min-width: 768px) {
  .article-doctor-biography li {
    font-size: var(--font-pc-base);
  }
}
.article-doctor-biography li::before {
  content: "";
  margin-right: 10px;
  vertical-align: 2px;
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background-color: var(--brand-main-500);
}

/* ------------------------------
  article-doctor-license
------------------------------ */
.article-doctor-license {
  display: grid;
  row-gap: 8px;
  margin-block: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--color-border-transparent);
  border-bottom: 1px solid var(--color-border-transparent);
  list-style: none;
}
@container (min-width: 768px) {
  .article-doctor-license {
    margin-block: 20px;
    padding: 20px 0;
  }
}
.article-doctor-license__item {
  font-size: var(--font-base);
}
@container (min-width: 768px) {
  .article-doctor-license__item {
    font-size: var(--font-pc-base);
  }
}
.article-doctor-license__item::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 1px;
  margin-right: 8px;
  border-radius: 1px;
  background-color: var(--brand-black-500);
  vertical-align: middle;
}

/* ------------------------------
  article-heading
------------------------------ */
.article-heading {
  display: grid;
  align-items: left;
  row-gap: 6px;
  margin-block: 40px 24px;
  font-size: var(--font-heading-xl);
  font-weight: var(--font-weight-bold);
}
@container (min-width: 768px) {
  .article-heading {
    row-gap: 8px;
    margin-block: 80px 24px;
    font-size: var(--font-pc-heading-sm);
  }
}
@container (min-width: 1024px) {
  .article-heading:first-child {
    margin-top: 0;
  }
}
.article-heading span {
  display: block;
  position: relative;
  width: fit-content;
  font-family: var(--font-family-en);
  font-size: var(--font-heading-md);
}
@container (min-width: 768px) {
  .article-heading span {
    font-size: var(--font-pc-heading-sm);
  }
}
.article-heading span::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--gradient-brand);
}

/* ------------------------------
  artcile-nav
------------------------------ */
.article-nav {
  padding: 28px 24px 16px;
}
.ly-contents__inner:has(.form) .article-nav {
  padding-inline: 0;
}
@container (min-width: 768px) {
  .article-nav {
    padding-inline: 62px;
  }
}
@container (min-width: 1024px) {
  .article-nav {
    position: sticky;
    top: 100px;
    align-self: flex-start;
    padding: 0 40px 0 0;
  }
}
.article-nav__title {
  margin-bottom: 8px;
  color: var(--brand-main-500);
  font-size: var(--font-heading-sm);
  font-weight: var(--font-weight-bold);
}
@container (min-width: 768px) {
  .article-nav__title {
    font-size: var(--font-pc-base);
  }
}
.article-nav__title::before {
  content: "";
  margin-right: 8px;
  vertical-align: 3px;
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background-color: var(--brand-accent-red);
}
@container (min-width: 768px) {
  .article-nav__title::before {
    width: 6px;
    height: 6px;
    margin-right: 12px;
  }
}
.article-nav__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
  padding: 0;
  column-gap: 20px;
  list-style: none;
}
.article-nav--simple .article-nav__list {
  grid-template-columns: 1fr;
}
@container (min-width: 1024px) {
  .article-nav__list {
    grid-template-columns: 1fr;
  }
}
.article-nav__link {
  display: flex;
  padding-block: 10px;
  border-bottom: 1px solid var(--color-border);
  color: var(--brand-main-500);
  text-decoration: none;
}
@container (min-width: 1024px) {
  .article-nav--simple .article-nav__link {
    border-bottom: none;
  }
}
@container (min-width: 1024px) {
  .article-nav__link {
    color: var(--brand-main-500);
    font-size: var(--font-pc-sm);
  }
  .article-nav__link[href^="#"] {
    color: var(--input-placeholder);
  }
  .article-nav__link.is-active {
    color: var(--brand-main-500);
    font-weight: var(--font-weight-bold);
  }
}
@media (any-hover: hover) {
  .article-nav__link:not(.is-active):hover {
    color: var(--brand-main-500);
    font-weight: var(--font-weight-bold);
  }
}
.article-nav__link::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  margin-left: auto;
  opacity: 0.3;
  background: url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/icon/ico_arrow.svg") no-repeat center/8px;
  rotate: 90deg;
}
@container (min-width: 1024px) {
  .article-nav--simple .article-nav__link::after {
    display: none;
  }
}
.article-nav__link span {
  display: inline-block;
  margin-right: 8px;
  padding-top: 2px;
  font-family: var(--font-family-en);
  font-size: var(--font-base);
  font-weight: var(--font-weight-medium);
  vertical-align: baseline;
}
.article-nav__link span::after {
  content: ".";
  display: inline-block;
}

/* ------------------------------
  article-note
------------------------------ */
.article-note {
  display: flex;
  align-items: flex-start;
  margin-block: 8px 0;
  color: var(--text-support);
  font-size: var(--font-sm);
}
.article--seminar .article-note {
  margin-block: 4px 0;
}
@container (min-width: 768px) {
  .article-note {
    font-size: var(--font-pc-sm);
  }
}
.article-note span {
  min-width: 24px;
}
@container (min-width: 768px) {
  .article-note span {
    min-width: 26px;
    text-align: center;
  }
}

/* ------------------------------
  article-numbering
------------------------------ */
.article-numbering {
  display: grid;
  row-gap: 8px;
  margin-block: 16px 0;
  padding-left: 0;
  list-style: none;
  counter-reset: count;
}
.article-numbering[start="1"] {
  counter-reset: count 0;
}
.article-numbering[start="2"] {
  counter-reset: count 1;
}
.article-numbering[start="3"] {
  counter-reset: count 2;
}
.article-numbering[start="4"] {
  counter-reset: count 3;
}
.article-numbering[start="5"] {
  counter-reset: count 4;
}
.article-numbering[start="6"] {
  counter-reset: count 5;
}
.article-numbering[start="7"] {
  counter-reset: count 6;
}
.article-numbering[start="8"] {
  counter-reset: count 7;
}
.article-numbering[start="9"] {
  counter-reset: count 8;
}
.article-numbering[start="10"] {
  counter-reset: count 9;
}
.article-numbering[start="11"] {
  counter-reset: count 10;
}
.article-numbering[start="12"] {
  counter-reset: count 11;
}
.article-numbering[start="13"] {
  counter-reset: count 12;
}
.article-numbering[start="14"] {
  counter-reset: count 13;
}
.article-numbering[start="15"] {
  counter-reset: count 14;
}
.article-numbering[start="16"] {
  counter-reset: count 15;
}
.article-numbering[start="17"] {
  counter-reset: count 16;
}
.article-numbering[start="18"] {
  counter-reset: count 17;
}
.article-numbering[start="19"] {
  counter-reset: count 18;
}
.article-numbering[start="20"] {
  counter-reset: count 19;
}
.article-numbering li {
  display: flex;
  column-gap: 5px;
  color: var(--brand-main-500);
  font-size: var(--font-base);
  font-weight: var(--font-weight-bold);
}
@container (min-width: 768px) {
  .article-numbering li {
    font-size: var(--font-pc-base);
    font-weight: var(--font-weight-regular);
  }
}
.article-numbering li::before {
  content: counter(count);
  display: grid;
  place-content: center;
  box-sizing: border-box;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 0.35ch;
  border: 1px solid var(--brand-main-500);
  border-radius: 50%;
  font-family: var(--font-family-en);
  font-weight: var(--font-weight-medium);
  line-height: 1;
  text-align: center;
  counter-increment: count;
}
@container (min-width: 768px) {
  .article-numbering li::before {
    width: 24px;
    height: 24px;
    font-size: var(--font-pc-base);
  }
}
.article-numbering li p {
  color: var(--text);
}

/* ------------------------------
  article-relations
------------------------------ */
.article-relations {
  display: grid;
  margin-top: 40px;
  padding: 28px;
  row-gap: 16px;
  border-radius: 8px;
  background-color: var(--color-bg);
}
@container (min-width: 768px) {
  .article-relations {
    margin-top: 80px;
    padding: 32px 36px;
    row-gap: 24px;
  }
}
.article-relations__title {
  display: flex;
  align-items: center;
  margin-block: 0;
  column-gap: 8px;
  color: var(--brand-main-500);
  font-size: var(--font-heading-sm);
  font-weight: var(--font-weight-bold);
}
@container (min-width: 768px) {
  .article-relations__title {
    column-gap: 12px;
    font-size: var(--font-pc-base);
  }
}
.article-relations__title::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background-color: var(--brand-accent-red);
}
@container (min-width: 768px) {
  .article-relations__title::before {
    width: 6px;
    height: 6px;
  }
}
.article-relations__content {
  margin-left: 0;
}
.article-relations__content:not(:last-child) {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border-transparent);
}

/* ------------------------------
  attention
------------------------------ */
.attention {
  margin-block: 16px 0;
  padding: 20px;
  border: 2px solid var(--error);
  border-radius: 6px;
  font-size: var(--font-base);
}
@container (min-width: 768px) {
  .attention {
    margin-top: 32px;
    padding: 40px;
    font-size: var(--font-pc-base);
  }
}
.attention__text {
  margin-block: 0;
  color: var(--error);
  font-size: var(--font-base);
}
@container (min-width: 768px) {
  .attention__text {
    font-size: var(--font-pc-base);
  }
}

/* ------------------------------
  attention-list
------------------------------ */
.attention-list {
  margin-block: 0;
  padding-left: 0;
  list-style: none;
}
.attention-list__item {
  position: relative;
  padding-left: 20px;
  color: var(--error);
  font-size: var(--font-base);
}
@container (min-width: 768px) {
  .attention-list__item {
    font-size: var(--font-pc-base);
  }
}
.attention-list__item::before {
  content: "•";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

/* ------------------------------
  breadcrumb
------------------------------ */
.breadcrumb {
  display: flex;
  align-items: center;
  height: 56px;
  padding: 12px 20px;
  overflow: auto;
  border-bottom: 1px solid var(--color-border-transparent);
}
@container (min-width: 768px) {
  .breadcrumb {
    height: 68px;
    padding: 0;
  }
}
.ly-page-footer .breadcrumb {
  border-bottom: none;
}
.breadcrumb__list {
  display: flex;
  flex-shrink: 0;
  margin-block: 0;
  padding-left: 0;
  column-gap: 6px;
  list-style: none;
}
@container (min-width: 768px) {
  .breadcrumb__list {
    column-gap: 14px;
  }
}
.breadcrumb__item {
  display: inline-flex;
  align-items: center;
  column-gap: 6px;
  color: var(--text);
  font-size: 12px;
}
@container (min-width: 768px) {
  .breadcrumb__item {
    column-gap: 14px;
    font-size: 13px;
  }
}
.breadcrumb__item:not(:first-child)::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 12px;
  rotate: 30deg;
  background-color: var(--brand-black-500);
}
@container (min-width: 768px) {
  .breadcrumb__item:not(:first-child)::before {
    height: 16px;
  }
}
.breadcrumb__link {
  color: var(--brand-main-500);
}
@media (any-hover: hover) {
  .breadcrumb__link:hover {
    text-decoration: none;
  }
}

/* ------------------------------
  button
------------------------------ */
.button {
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  padding-inline: 34px;
  border: 0;
  border-radius: 100vh;
  background-color: var(--color-bg-main);
  color: var(--brand-main-500);
  font-size: var(--font-base);
  font-weight: var(--font-weight-bold);
  text-decoration: none;
}
@container (min-width: 768px) {
  .button {
    width: fit-content;
    max-width: 100%;
    height: 50px;
    font-size: 15px;
  }
  .modal .button {
    height: 40px;
  }
}
.button::before {
  content: "";
  position: absolute;
  transition: opacity 0.2s ease;
  border-radius: 100vh;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.08);
  pointer-events: none;
  inset: 0;
}
.button::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 8px;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  background-color: var(--brand-main-500);
  mask: url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/icon/ico_arrow.svg") no-repeat center/10px;
}
@container (min-width: 768px) {
  .button::after {
    width: 24px;
    height: 24px;
  }
}
@media (any-hover: hover) {
  .button:hover::before {
    opacity: 1;
  }
}
.button--dark {
  background-color: var(--brand-main-100);
}
.button--white {
  background-color: var(--brand-white);
}
.button--main {
  background-color: var(--brand-main-500);
  color: var(--brand-white);
}
.button--main::before {
  background-color: rgba(255, 255, 255, 0.25);
}
.button--main::after {
  background-color: var(--brand-white);
}
.button--entry {
  padding-right: 42px;
  background: var(--gradient-brand-transparent);
}
.button--entry::before {
  background-color: rgba(255, 255, 255, 0.25);
}
.button--entry::after {
  border-radius: 100%;
  background: var(--brand-white) url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/icon/ico_arrow.svg") no-repeat center/10px;
  mask-image: none;
}
.button--back::after {
  right: auto;
  left: 8px;
  transform: translateY(-50%) rotate(180deg);
}
.button--reset::after {
  display: none;
}
.button[target=_blank]::after {
  mask: url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/icon/ico_blank.svg") no-repeat center/12px;
}
.button.js-modal-trigger::after {
  mask: url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/icon/ico_modal.svg") no-repeat center/14px;
}
.salon-info .button {
  flex-grow: 0;
  width: fit-content;
  margin-inline: auto;
}
.seminar-box .button, .treatment-list .button, .staff-profile .button {
  width: 100%;
}
.list-header .button {
  width: fit-content;
}
@container (min-width: 1024px) {
  .list-header .button {
    display: none;
  }
}

/* ------------------------------
  button-box
------------------------------ */
.button-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  gap: 16px 12px;
}
.button-box:has(> .button:only-child) {
  grid-template-columns: 1fr;
}
@container (max-width: 767.9px) {
  .button-box--reserve {
    grid-template-columns: 1fr;
  }
}
.button-box--single {
  grid-template-columns: 1fr;
}

/* ------------------------------
  button-entry
------------------------------ */
.button-entry {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  padding: 6px 8px 6px 10px;
  column-gap: 4px;
  border: 0;
  border-radius: 100vh;
  background: var(--gradient-brand-transparent);
  color: var(--brand-main-500);
  font-size: var(--font-base);
  font-weight: var(--font-weight-bold);
  text-decoration: none;
}
@container (min-width: 768px) {
  .button-entry {
    padding: 7px 20px;
    font-size: var(--font-pc-base);
  }
}
@container (max-width: 767.9px) {
  .header .button-entry {
    display: none;
  }
}
.button-entry--nav {
  width: 100%;
  padding-block: 18px;
}
@container (max-width: 767.9px) {
  .article-nav .button-entry--nav {
    display: none;
  }
}
@container (min-width: 768px) {
  .button-entry--nav {
    justify-content: flex-start;
    margin-top: 45px;
    padding-block: 20px;
  }
  .ly-bottom-nav .button-entry--nav {
    display: none;
  }
}
.button-entry::before {
  content: "";
  position: absolute;
  transition: opacity 0.2s ease;
  border-radius: 4px;
  opacity: 0;
  background-color: rgba(255, 255, 255, 0.25);
  pointer-events: none;
  inset: 0;
}
.button-entry::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 100%;
  background: var(--brand-white) url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/icon/ico_arrow.svg") no-repeat center/10px;
}
@container (min-width: 768px) {
  .button-entry::after {
    position: absolute;
    top: 50%;
    right: 12px;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    background-size: 12px;
  }
}
.ly-bottom-nav .button-entry::after {
  position: absolute;
  top: 50%;
  right: 12px;
  margin-top: -8px;
}
@media (any-hover: hover) {
  .button-entry:hover::before {
    opacity: 1;
  }
}

/* ------------------------------
  button-guide
------------------------------ */
.button-guide {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  width: 58px;
  padding: 0;
  border: 0;
  background-color: transparent;
  color: var(--brand-main-500);
  font-size: var(--font-sm);
  text-decoration: none;
}
@container (max-width: 767.9px) {
  .article .button-guide {
    flex-direction: row;
    justify-content: center;
    width: 100%;
    height: 40px;
    padding-inline: 16px 20px;
    border: 1.5px solid var(--brand-main-500);
    border-radius: 100vh;
    background-color: var(--brand-white);
    font-size: var(--font-base);
  }
}
@container (min-width: 768px) {
  .button-guide {
    flex-direction: row;
    width: fit-content;
    height: 60px;
    padding-inline: 16px 20px;
    column-gap: 4px;
    border: 1.5px solid var(--brand-main-500);
    border-radius: 100vh;
    background-color: var(--brand-white);
    font-size: var(--font-pc-sm);
    font-weight: var(--font-weight-medium);
  }
}
.button-guide::before {
  content: "";
  display: block;
  position: relative;
  z-index: 2;
  width: 24px;
  height: 24px;
  background-image: url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/icon/ico_tutorial.svg");
}
.button-guide::after {
  content: "";
  position: absolute;
  z-index: 1;
  transition: opacity 0.2s ease;
  border-radius: 100vh;
  opacity: 0;
  background-color: rgba(18, 42, 98, 0.05);
  pointer-events: none;
  inset: 0;
}
@media (any-hover: hover) {
  .button-guide:hover::after {
    opacity: 1;
  }
}

/* ------------------------------
  button-menu
------------------------------ */
.button-menu {
  position: relative;
  width: 44px;
  height: 44px;
  border: 0;
  background-color: transparent;
}
.button-menu[aria-expanded=true] {
  position: relative;
  z-index: 4;
}
.button-menu[aria-expanded=true]::before {
  display: none;
}
.button-menu[aria-expanded=true] span::before {
  width: 24px;
  rotate: 25deg;
}
.button-menu[aria-expanded=true] span::after {
  width: 24px;
  rotate: -25deg;
}
@container (min-width: 768px) {
  .button-menu {
    width: 60px;
    height: 60px;
    border: 1.5px solid var(--brand-main-500);
    border-radius: 100%;
    background-color: var(--brand-white);
  }
}
.button-menu::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 1px;
  transform: translateX(-50%);
  background-color: var(--brand-main-500);
}
.button-menu span {
  display: block;
  position: relative;
  box-sizing: border-box;
  width: 22px;
  height: 11px;
  margin-inline: auto;
  overflow: hidden;
  font-size: 0;
}
.button-menu span::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 1px;
  transform-origin: left top;
  transition: rotate 0.3s ease;
  background-color: var(--brand-main-500);
}
.button-menu span::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 22px;
  height: 1px;
  transform-origin: left bottom;
  transition: rotate 0.3s ease;
  background-color: var(--brand-main-500);
}
@container (min-width: 1280px) {
  .button-menu {
    display: none;
  }
}

/* ------------------------------
  button-reserve
------------------------------ */
.button-reserve {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 48px;
  padding-inline: 16px 20px;
  column-gap: 8px;
  border: 1.5px solid var(--brand-main-500);
  border-radius: 100vh;
  background-color: var(--brand-main-500);
  color: var(--brand-white);
  font-size: var(--font-base);
  font-weight: var(--font-weight-medium);
  text-decoration: none;
}
@container (min-width: 768px) {
  .button-reserve {
    width: 140px;
    height: 60px;
    font-size: var(--font-pc-base);
  }
}
@container (max-width: 767.9px) {
  .header .button-reserve {
    display: none;
  }
}
.button-reserve::before {
  content: "";
  transform: translateY(2px);
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: var(--brand-accent-red);
}
.button-reserve::after {
  content: "";
  position: absolute;
  transition: opacity 0.2s ease;
  border-radius: 100vh;
  opacity: 0;
  background-color: rgba(255, 255, 255, 0.25);
  pointer-events: none;
  inset: 0;
}
@media (any-hover: hover) {
  .button-reserve:hover::after {
    opacity: 1;
  }
}

/* ------------------------------
  button-reserve-large
------------------------------ */
.button-reserve-large {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 58px;
  padding-inline: 16px 20px;
  border: 0;
  border-radius: 4px;
  background-color: var(--brand-main-500);
  color: var(--brand-white);
  font-size: var(--font-heading-md);
  font-weight: var(--font-weight-bold);
  text-decoration: none;
}
@container (min-width: 768px) {
  .button-reserve-large {
    height: 60px;
    font-size: var(--font-pc-base);
  }
  main .button-reserve-large {
    height: 90px;
    padding-inline: 28px 24px;
  }
}
.button-reserve-large::before {
  content: "";
  position: absolute;
  transition: opacity 0.2s ease;
  border-radius: 4px;
  opacity: 0;
  background-color: rgba(255, 255, 255, 0.25);
  pointer-events: none;
  inset: 0;
}
@media (any-hover: hover) {
  .button-reserve-large:hover::before {
    opacity: 1;
  }
}
.button-reserve-large--light {
  background-color: var(--color-bg-main);
  color: var(--brand-main-500);
}
.button-reserve-large--light::before {
  background-color: rgba(0, 0, 0, 0.08);
}
.button-reserve-large__note {
  font-size: var(--font-base);
  font-weight: var(--font-weight-regular);
}
@container (min-width: 768px) {
  .button-reserve-large__note {
    font-size: var(--font-pc-sm);
  }
}

/* ------------------------------
  contents
------------------------------ */
.contents__box {
  margin-top: 40px;
}
@container (min-width: 768px) {
  .contents__box {
    margin-top: 80px;
  }
}
.contents__box:first-child, .recruit .contents__box {
  margin-top: 0;
}

/* ------------------------------
  faq
------------------------------ */
@container (min-width: 768px) {
  .faq {
    border-top: 1px solid var(--color-border);
  }
}
.contents:has(.list-header) .faq {
  border-top: 0;
}
@container (min-width: 768px) {
  .contents:has(.list-header) .faq {
    margin: -24px 0 0 40px;
  }
}
.faq__box {
  transition: background-color 0.2s ease;
  border-bottom: 1px solid var(--color-border);
}
@media (any-hover: hover) {
  .faq__box:has([aria-expanded=false]):hover {
    background-color: var(--color-bg);
  }
}
.faq__title {
  display: grid;
  grid-template-columns: 24px 1fr 24px;
  align-items: flex-start;
  width: 100%;
  padding: 24px 8px;
  column-gap: 10px;
  transition: background-color 0.2s ease;
  border: 0;
  background-color: var(--brand-white);
  color: var(--brand-main-500);
  font-size: var(--font-heading-sm);
  font-weight: var(--font-weight-bold);
  text-align: left;
}
@container (min-width: 768px) {
  .faq__title {
    grid-template-columns: 30px 1fr 30px;
    padding: 30px 12px 30px 0;
    column-gap: 12px;
    font-size: var(--font-pc-base);
  }
}
@media (any-hover: hover) {
  .faq__box:hover .faq__title[aria-expanded=false] {
    background-color: var(--color-bg);
  }
}
.faq__title mark {
  background-color: var(--brand-accent-red);
  color: var(--brand-main-500);
}
.faq__icon-q {
  width: 24px;
  height: 24px;
  border-radius: 100%;
  background: var(--brand-main-500) url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/icon/ico_q.svg") no-repeat center/8px 10px;
  font-size: 0;
}
@container (min-width: 768px) {
  .faq__icon-q {
    width: 30px;
    height: 30px;
    background-size: 10px 14px;
  }
}
button + .faq__tag {
  margin: -10px 0 30px 42px;
}
.faq__body {
  display: none;
  position: relative;
  margin-left: 0;
  padding: 0 0 10px 42px;
}
@container (min-width: 768px) {
  .faq__body {
    padding-left: 42px;
  }
}
.faq__icon-a {
  position: absolute;
  top: 0;
  left: 8px;
  width: 24px;
  height: 24px;
  border-radius: 100%;
  background: var(--color-bg-main) url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/icon/ico_a.svg") no-repeat center/8px 10px;
  font-size: 0;
}
@container (min-width: 768px) {
  .faq__icon-a {
    left: 0;
    width: 30px;
    height: 30px;
    background-size: 10px 14px;
  }
}
.faq__text {
  margin-block: 0;
  font-size: var(--font-base);
}
@container (min-width: 768px) {
  .faq__text {
    font-size: var(--font-pc-base);
  }
}
.faq__text mark {
  background-color: var(--brand-accent-red);
  color: var(--text);
}

/* ------------------------------
  form
------------------------------ */
.form {
  padding-top: 40px;
}
@container (min-width: 768px) {
  .form {
    padding: 80px 0 0;
  }
  .ly-contents__single .form {
    padding-inline: 0;
  }
}
@container (min-width: 1024px) {
  .form {
    padding-top: 0;
  }
}
.form__section {
  margin-top: 40px;
}
@container (min-width: 768px) {
  .form__section {
    margin-top: 80px;
  }
}
.form__section:first-child, input + .form__section {
  margin-top: 0;
}
.form__container {
  margin-top: 24px;
  padding: 24px 20px;
  border-radius: 6px;
  background-color: var(--color-bg-main);
}
@container (min-width: 768px) {
  .form__container {
    margin-top: 32px;
    padding: 40px;
    border-radius: 12px;
  }
}
.form__container:first-child, input + .form__container {
  margin-top: 0;
}
.form__message {
  margin-block: 0;
  color: var(--brand-main-500);
  font-size: var(--font-base);
}
@container (min-width: 768px) {
  .form__message {
    font-size: var(--font-pc-base);
  }
}
.form__container-heading {
  margin-block: 0;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
  color: var(--brand-main-500);
  font-size: var(--font-heading-md);
  font-weight: var(--font-weight-bold);
}
@container (min-width: 768px) {
  .form__container-heading {
    font-size: var(--font-pc-heading-sm);
  }
}
.form__heading {
  margin-block: 0 16px;
  color: var(--brand-main-500);
  font-size: var(--font-heading-md);
  font-weight: var(--font-weight-bold);
}
@container (min-width: 768px) {
  .form__heading {
    font-size: var(--font-pc-heading-sm);
  }
}
.form__text {
  display: block;
  margin-block: 12px;
  font-weight: var(--font-weight-regular);
}
.form__text:first-child {
  margin-top: 0 !important;
}
.form__text:last-child {
  margin-bottom: 0 !important;
}
.form__input--multi .form__text {
  margin-block: 0;
}
.form__text-box .form__text {
  margin-block: 4px;
}
.form__if {
  margin-block: 12px;
  color: var(--brand-main-500);
}
.form__if:first-child {
  margin-top: 0;
}
.form__if:last-child {
  margin-bottom: 0;
}
.form__support {
  position: relative;
  margin-block: 12px;
  color: var(--brand-main-500);
  font-size: var(--font-sm);
}
@container (min-width: 768px) {
  .form__support {
    font-size: var(--font-pc-sm);
  }
}
.form__support:first-child {
  margin-top: 0;
}
.form__support:last-child {
  margin-bottom: 0;
}
.form__note {
  position: relative;
  margin-block: 12px;
  padding-left: 24px;
  color: var(--text-support);
  font-size: var(--font-sm);
}
@container (min-width: 768px) {
  .form__note {
    font-size: var(--font-pc-sm);
  }
}
.form__note:first-child {
  margin-top: 0;
}
.form__note:last-child {
  margin-bottom: 0;
}
.form__note::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
.form__text-box .form__note {
  margin-block: 4px;
}
.form__confirm .form__note + .form__note {
  margin-top: -12px;
}
.form__note a {
  color: var(--brand-main-500);
}
@media (any-hover: hover) {
  .form__note a:hover {
    text-decoration: none;
  }
}
.form__block {
  display: grid;
  margin-top: 16px;
  row-gap: 24px;
}
@container (min-width: 768px) {
  .form__block {
    row-gap: 16px;
  }
}
.form__block:first-child {
  margin-top: 0;
}
.form__field {
  display: contents;
  margin: 0;
  padding: 0;
  border: 0;
}
@container (min-width: 768px) {
  .form__item {
    display: grid;
    grid-template-columns: min(40%, 314px) 1fr;
    column-gap: 16px;
  }
  .form__item--vertical {
    grid-template-columns: 1fr;
  }
}
@container (min-width: 768px) {
  .form__only-input {
    grid-column: span 2;
  }
}
.form__title {
  display: block;
  box-sizing: border-box;
  width: 100%;
  margin-block: 0;
  padding: 0 10px 16px;
  border-bottom: 1px solid var(--color-border);
  color: var(--brand-main-500);
}
@container (min-width: 768px) {
  .form__title {
    padding-block: 16px 30px;
  }
}
.form__sub-title {
  display: inline-block;
  margin-block: 0;
  color: var(--brand-main-500);
  font-size: var(--font-base);
  font-weight: var(--font-weight-bold);
}
@container (min-width: 768px) {
  .form__sub-title {
    font-size: var(--font-pc-base);
  }
}
.form__sub-title:first-child {
  margin-block-start: 0;
}
.form__label {
  margin-block: 0;
  color: var(--brand-main-500);
  font-size: var(--font-heading-md);
  font-weight: var(--font-weight-bold);
}
@container (min-width: 768px) {
  .form__label {
    font-size: var(--font-pc-heading-sm);
  }
}
.form__label[target=_blank]::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 4px;
  background-color: var(--brand-main-500);
  mask: url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/icon/ico_blank.svg") no-repeat center/16px;
  vertical-align: 0;
}
.form__sub-label {
  display: block;
  margin-block: 0 4px;
  color: var(--text);
  font-size: var(--font-base);
}
@container (min-width: 768px) {
  .form__sub-label {
    font-size: var(--font-pc-base);
  }
}
.form__required {
  margin-left: 4px;
  font-size: var(--font-base);
  vertical-align: 1px;
}
.form__input {
  padding-top: 16px;
}
@container (min-width: 768px) {
  .form__input {
    align-self: center;
    padding-bottom: 16px;
  }
}
.form__input--multi {
  display: grid;
  gap: 16px;
}
.form__confirm {
  padding-top: 16px;
  font-size: var(--font-base);
  font-weight: var(--font-weight-bold);
  overflow-wrap: anywhere;
}
@container (min-width: 768px) {
  .form__confirm {
    padding-bottom: 16px;
    font-size: var(--font-pc-base);
  }
}
.form__sample {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  margin-block: 12px 0;
  color: var(--brand-main-500);
  font-size: var(--font-sm);
}
@container (min-width: 768px) {
  .form__sample {
    font-size: var(--font-pc-sm);
  }
}
.form__sample::before {
  content: "例）";
  display: block;
  width: 30px;
}

/* ------------------------------
  form-actions
------------------------------ */
.form-actions {
  display: flex;
  margin-top: 24px;
  gap: 16px;
}
@container (max-width: 767.9px) {
  .form-actions {
    flex-direction: column-reverse;
  }
}
@container (min-width: 768px) {
  .form-actions {
    display: flex;
    justify-content: center;
    row-gap: 16px;
    margin-top: 40px;
  }
}
.form-actions--vertical {
  flex-direction: column;
  align-items: center;
}

/* ------------------------------
  form-complete
------------------------------ */
.form-complete {
  text-align: center;
}
.form-complete__heading {
  margin-block: 0;
  font-size: var(--font-heading-lg);
}
@container (min-width: 768px) {
  .form-complete__heading {
    font-size: var(--font-pc-heading-md);
  }
}
.form-complete__message {
  margin-block: 24px 0;
  font-size: var(--font-base);
}
@container (min-width: 768px) {
  .form-complete__message {
    margin-top: 32px;
    font-size: var(--font-pc-base);
  }
}

/* ------------------------------
  form-error
------------------------------ */
.form-error {
  display: block;
  margin-block: 0 8px;
  color: var(--error);
  font-size: var(--font-base);
  font-weight: var(--font-weight-bold);
}
@container (min-width: 768px) {
  .form-error {
    font-size: var(--font-pc-base);
  }
}
:is(.input-set, .input-name, .input-select, .input-date) .form-error {
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
}
:is(.input-checkbox, .input-radio, .form-term__agree, .input-date .input-select, .input-set .input-select) .form-error {
  position: absolute;
  top: -32px;
  left: 0;
  margin-block: 0;
  white-space: nowrap;
}
@container (min-width: 768px) {
  :is(.input-checkbox, .input-radio, .form-term__agree, .input-date .input-select, .input-set .input-select) .form-error {
    top: -36px;
  }
}
.form-transport-table .input-select .form-error {
  width: 8em;
  white-space: normal;
}
.form-transport-table .input-set .form-error {
  margin-top: -22px;
}
@container (min-width: 768px) {
  .form-transport-table .input-set .form-error {
    margin-top: -26px;
  }
}
.form-error + .form-error {
  margin-top: -8px;
}
.form__input--multi > .form-error {
  margin-bottom: 0;
}
td .form-error {
  width: 100%;
  margin-top: 10px;
  text-align: left;
}

/* ------------------------------
  form-group
------------------------------ */
.form-group {
  display: grid;
  margin-top: 32px;
  padding-left: 16px;
  border-left: 4px solid rgba(62, 94, 160, 0.5);
  gap: 16px;
}
.form-group:first-child {
  margin-top: 0;
}
.form-group__field {
  display: grid;
  row-gap: 12px;
  margin: 0;
  padding: 0;
  border: 0;
}
.form-group__item {
  display: grid;
  row-gap: 12px;
}
.form-group__label {
  display: block;
  margin-block: 0;
  color: var(--brand-main-500);
  font-size: var(--font-base);
  font-weight: var(--font-weight-bold);
}
@container (min-width: 768px) {
  .form-group__label {
    font-size: var(--font-pc-base);
  }
}
fieldset > .form-group__label {
  margin-bottom: 12px;
}
.form-group__title {
  margin-block: 0;
  color: var(--brand-main-500);
  font-size: var(--font-base);
  font-weight: var(--font-weight-bold);
}
@container (min-width: 768px) {
  .form-group__title {
    font-size: var(--font-pc-base);
  }
}
.form-group__support {
  position: relative;
  margin-block: 0 12px;
  color: var(--brand-main-500);
  font-size: var(--font-sm);
}
@container (min-width: 768px) {
  .form-group__support {
    font-size: var(--font-pc-sm);
  }
}
.form-group__support:first-child {
  margin-top: 0;
}
.form-group__support:last-child {
  margin-bottom: 0;
}

/* ------------------------------
  form-nav
------------------------------ */
.form-nav {
  display: none;
}
@container (min-width: 1024px) {
  .form-nav {
    display: block;
  }
}
.form-nav__box {
  margin-top: 20px;
}
.form-nav__box:first-child {
  margin-top: 0;
}
.form-nav__list {
  margin-block: 12px 0;
  padding-left: 0;
  list-style: none;
}
.form-nav__item {
  position: relative;
  padding: 8px 0 8px 14px;
}
.form-nav__item::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 24px;
  left: 0;
  width: 6px;
  height: 1px;
  border-radius: 2px;
  background-color: var(--brand-main-500);
}
.form-nav__link {
  display: inline;
  color: var(--brand-main-500);
  font-size: var(--font-pc-base);
  text-decoration: none;
}
.form-nav__link[aria-current=page] {
  background: linear-gradient(var(--brand-white) 69%, rgba(245, 190, 210, 0.5) 70%, rgba(245, 190, 210, 0.5) 100%);
}
@media (any-hover: hover) {
  .form-nav__link:hover {
    background: linear-gradient(var(--brand-white) 69%, rgba(245, 190, 210, 0.5) 70%, rgba(245, 190, 210, 0.5) 100%);
  }
}

/* ------------------------------
  form-seminar-benefit
------------------------------ */
.form-seminar-benefit {
  margin: 6px 28px;
  font-size: var(--font-sm);
}
@container (min-width: 768px) {
  .form-seminar-benefit {
    margin-top: 8px;
    font-size: var(--font-pc-base);
  }
}

/* ------------------------------
  form-step
------------------------------ */
.form-step {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  margin-block: 24px;
  padding-left: 0;
  list-style: none;
  counter-reset: count;
}
@container (min-width: 768px) {
  .form-step {
    margin-block: 32px;
  }
}
.form-step__item {
  position: relative;
  z-index: 1;
  flex: 1;
  max-width: 132px;
  color: var(--text-support);
  font-size: var(--font-sm);
  line-height: var(--line-height-xs);
  text-align: center;
}
@container (min-width: 768px) {
  .form-step__item {
    font-size: var(--font-pc-base);
    font-weight: var(--font-weight-bold);
  }
}
.form-step__item[aria-current=step] {
  color: var(--brand-main-400);
}
.form-step__item[aria-current=step]::before {
  background-color: var(--brand-main-400);
  color: var(--brand-white);
}
.form-step__item::before {
  content: counter(count);
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto 8px;
  border-radius: 50%;
  background-color: var(--color-border);
  color: var(--text-support);
  font-size: var(--font-heading-sm);
  font-weight: var(--font-weight-bold);
  line-height: 32px;
  text-align: center;
  counter-increment: count;
}
@container (min-width: 768px) {
  .form-step__item::before {
    width: 48px;
    height: 48px;
    font-size: var(--font-pc-heading-sm);
    line-height: 48px;
  }
}
.form-step__item:not(:last-child)::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 14px;
  left: calc(50% + 14px);
  width: 100%;
  height: 5px;
  background-color: var(--color-border);
}
@container (min-width: 768px) {
  .form-step__item:not(:last-child)::after {
    top: 22px;
  }
}
.form-step__item.is-entered {
  color: var(--brand-main-400);
}
.form-step__item.is-entered::before {
  background-color: var(--brand-main-400);
  color: var(--brand-white);
}
.form-step__item.is-entered::after {
  background-color: var(--brand-main-400);
}

/* ------------------------------
  form-term
------------------------------ */
.form-term {
  margin-top: 40px;
  font-size: var(--font-base);
}
@container (min-width: 768px) {
  .form-term {
    margin-top: 80px;
    font-size: var(--font-pc-base);
  }
}
.form-term__wrap {
  height: 300px;
  overflow-y: scroll;
  border: 1px solid var(--color-border);
  border-radius: 6px;
}
.form-term__body {
  padding: 40px 20px;
}
@container (min-width: 768px) {
  .form-term__body {
    padding-inline: 40px;
  }
}
.form-term__title {
  margin-block: 0;
  color: var(--brand-main-500);
  font-size: var(--font-heading-sm);
  font-weight: var(--font-weight-bold);
  text-align: center;
}
@container (min-width: 768px) {
  .form-term__title {
    font-size: var(--font-pc-heading-sm);
  }
}
.form-term h2 {
  font-size: var(--font-heading-md);
  text-align: center;
}
@container (min-width: 768px) {
  .form-term h2 {
    font-size: var(--font-pc-heading-sm);
  }
}
.form-term p {
  margin-block: 2em 0;
}
.form-term ol,
.form-term ul {
  margin-block: 0.3em;
  padding-left: 1em;
  list-style: none;
}
.form-term li {
  position: relative;
  margin-top: 4px;
  padding-left: 20px;
}
.form-term li:first-child {
  margin-top: 0;
}
.form-term li::before {
  content: "・";
  display: inline-block;
  position: absolute;
  left: 0;
}
.form-term__agree {
  margin-top: 24px;
}
@container (min-width: 768px) {
  .form-term__agree {
    margin-top: 32px;
  }
}
.form-term__agree:has(.form-error) {
  margin-top: 56px;
}
@container (min-width: 768px) {
  .form-term__agree:has(.form-error) {
    margin-top: 68px;
  }
}
.form-term__input {
  width: fit-content;
  margin-inline: auto;
}

/* ------------------------------
  form-transport-table
------------------------------ */
.form-transport-table {
  width: 100%;
  overflow: auto;
}
.form-transport-table table {
  min-width: 650px;
  overflow: hidden;
  border-spacing: 1px;
  border-collapse: separate;
  border-radius: 6px;
  background-color: var(--brand-black-100);
  font-size: var(--font-base);
}
@container (min-width: 768px) {
  .form-transport-table table {
    width: 100%;
    font-size: var(--font-pc-base);
  }
}
.form-transport-table thead {
  color: var(--brand-main-500);
}
.form-transport-table th {
  padding: 10px;
  background-color: var(--color-bg);
  font-weight: var(--font-weight-bold);
}
@container (min-width: 768px) {
  .form-transport-table th {
    padding: 16px;
  }
}
.form-transport-table td {
  padding: 10px;
  background-color: var(--color-bg-main);
  text-align: center;
}
@container (min-width: 768px) {
  .form-transport-table td {
    padding: 16px;
  }
}

/* ------------------------------
  heading01
------------------------------ */
.heading01 {
  margin-block: 48px 16px;
  padding-inline: 24px;
  color: var(--brand-main-500);
  font-size: var(--font-heading-xxl);
  font-weight: var(--font-weight-bold);
}
@container (min-width: 768px) {
  .heading01 {
    margin-block: 40px 28px;
    padding-inline: 0;
    font-size: 40px;
  }
}
.heading01__en {
  display: flex;
  align-items: center;
  column-gap: 8px;
  font-family: var(--font-family-en);
  font-size: var(--font-heading-sm);
  font-weight: var(--font-weight-medium);
}
@container (min-width: 768px) {
  .heading01__en {
    column-gap: 12px;
    font-size: var(--font-pc-heading-sm);
  }
}
.heading01__en::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background-color: var(--brand-accent-red);
}
@container (min-width: 768px) {
  .heading01__en::before {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background-color: var(--brand-accent-red);
  }
}
.heading01 mark {
  border-bottom: 2px solid var(--brand-accent-red);
  background-color: unset;
  color: inherit;
}

/* ------------------------------
  heading02
------------------------------ */
.heading02 {
  position: relative;
  margin-block: 0;
  padding-bottom: 14px;
  color: var(--brand-main-500);
  font-size: var(--font-heading-lg);
  font-weight: var(--font-weight-bold);
}
@container (min-width: 768px) {
  .heading02 {
    padding-bottom: 20px;
    font-size: var(--font-pc-heading-md);
  }
}
.article .heading02 {
  margin-block: 40px 24px;
}
@container (min-width: 768px) {
  .article .heading02 {
    margin-block: 80px 32px;
  }
}
@container (min-width: 1024px) {
  .article .heading02:first-child {
    margin-top: 0;
  }
}
.heading02::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gradient-brand);
}
@container (min-width: 768px) {
  .heading02::after {
    width: 60px;
    height: 4px;
  }
}

/* ------------------------------
  heading03
------------------------------ */
.heading03 {
  margin-block: 0;
  font-size: var(--font-heading-md);
  font-weight: var(--font-weight-bold);
}
@container (min-width: 768px) {
  .heading03 {
    font-size: var(--font-pc-heading-sm);
  }
}
.article .heading03 {
  margin-block: 32px 16px;
}
@container (min-width: 768px) {
  .article .heading03 {
    margin-top: 40px;
  }
}
.heading03::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 25px;
  margin-right: 8px;
  background: url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/common/bg_heading03.svg") no-repeat left center/100% auto;
  vertical-align: -6px;
}
@container (min-width: 768px) {
  .heading03::before {
    width: 24px;
    height: 30px;
    margin-right: 12px;
  }
}

/* ------------------------------
  heading04
------------------------------ */
.heading04 {
  margin-block: 0;
  color: var(--brand-main-500);
  font-size: var(--font-heading-sm);
  font-weight: var(--font-weight-bold);
}
@container (min-width: 768px) {
  .heading04 {
    font-size: var(--font-pc-base);
  }
}
a:has(.heading04) {
  text-decoration: none;
}
@media (any-hover: hover) {
  a:has(.heading04):hover {
    text-decoration: underline;
  }
}
.article .heading04 {
  margin-block: 32px 16px;
}
@container (min-width: 768px) {
  .article .heading04 {
    margin-top: 40px;
  }
}
.modal .heading04 {
  margin: 0 40px 16px;
}
@container (max-width: 767.9px) {
  .modal .heading04 {
    margin-inline: 0;
  }
}
@container (min-width: 768px) {
  .modal .heading04 {
    margin-inline: 0;
  }
}
.modal__card .heading04 {
  margin: 0;
}
.article--seminar .heading04 {
  margin-block: 32px 8px;
}
.heading04::before {
  content: "";
  margin-right: 8px;
  vertical-align: 3px;
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background-color: var(--brand-accent-red);
}
@container (min-width: 768px) {
  .heading04::before {
    width: 6px;
    height: 6px;
    margin-right: 12px;
  }
}
.heading04--en {
  font-family: var(--font-family-en);
  letter-spacing: var(--letter-spacing-en);
}
@container (min-width: 768px) {
  .heading04--en {
    font-size: var(--font-pc-heading-sm);
  }
}

/* ------------------------------
  icon
------------------------------ */
[class^=icon-] {
  display: inline-block;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background-color: var(--brand-main-500);
  font-size: 0;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}
.button [class^=icon-] {
  width: 20px;
  height: 20px;
  margin-inline: 4px;
}
.button-reserve-large [class^=icon-] {
  margin-left: auto;
}
.button-entry [class^=icon-] {
  width: 24px;
  height: 24px;
}
@container (min-width: 768px) {
  .button-entry [class^=icon-] {
    width: 28px;
    height: 28px;
  }
}
.relations [class^=icon-] {
  position: absolute;
  top: 50%;
  right: 12px;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
}
.header-nav-primary [class^=icon-], .footer-nav-primary [class^=icon-] {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
}
.modal-list [class^=icon-] {
  position: absolute;
  top: 50%;
  right: 32px;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
}
@container (min-width: 768px) {
  .modal-list [class^=icon-] {
    right: 12px;
    width: 28px;
    height: 28px;
  }
}
.button-reserve-large:not(.button-reserve-large--light) [class^=icon-] {
  background-color: var(--brand-white);
}
.faq [class^=icon-] {
  width: 24px;
  height: 24px;
  background-color: var(--brand-black-500);
}
@container (min-width: 768px) {
  .faq [class^=icon-] {
    width: 30px;
    height: 30px;
  }
}
:is(.slider-prev, .slider-next) [class^=icon-] {
  width: 20px;
  height: 20px;
  background-color: var(--brand-black-900);
}
.swiper-button-disabled [class^=icon-] {
  background-color: var(--brand-black-500);
}
.modal-form [class^=icon-] {
  width: 20px;
  height: 20px;
}

/* ------------------------------
  icon-arrow
------------------------------ */
.icon-arrow {
  mask-image: url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/icon/ico_arrow.svg");
}

/* ------------------------------
  icon-blank
------------------------------ */
.icon-blank {
  mask-image: url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/icon/ico_blank.svg");
}

/* ------------------------------
  icon-calendar
------------------------------ */
.icon-calendar {
  mask-image: url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/icon/ico_calendar.svg");
}

/* ------------------------------
  icon-close
------------------------------ */
.icon-close {
  display: block;
  position: relative;
  box-sizing: border-box;
  width: 22px;
  height: 11px;
  margin-inline: auto;
  overflow: hidden;
  background-color: transparent;
  font-size: 0;
}
.icon-close::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 1px;
  transform-origin: left top;
  transition: rotate 0.3s ease;
  background-color: var(--brand-main-500);
  rotate: 25deg;
}
.icon-close::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 1px;
  transform-origin: left bottom;
  transition: rotate 0.3s ease;
  background-color: var(--brand-main-500);
  rotate: -25deg;
}

/* ------------------------------
  icon-close-square
------------------------------ */
.icon-close-square {
  mask-image: url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/icon/ico_close_square.svg");
}

/* ------------------------------
  icon-minus
------------------------------ */
.icon-minus {
  mask-image: url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/icon/ico_minus.svg");
}
[aria-expanded=false] > .icon-minus {
  display: none;
}

/* ------------------------------
  icon-plus
------------------------------ */
.icon-plus {
  mask-image: url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/icon/ico_plus.svg");
}
[aria-expanded=true] > .icon-plus {
  display: none;
}

/* ------------------------------
  icon-search
------------------------------ */
.icon-search {
  mask-image: url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/icon/ico_search.svg");
}

/* ------------------------------
  info-seminar
------------------------------ */
.info-seminar {
  margin-block: 0;
  padding-left: 0;
  list-style: none;
}
.info-seminar__item {
  border-top: 1px solid var(--color-border);
}
.info-seminar__item:last-child {
  border-bottom: 1px solid var(--color-border);
}
.info-seminar__link {
  display: flex;
  flex-direction: column;
  padding: 24px 12px;
  text-decoration: none;
}
@container (min-width: 768px) {
  .info-seminar__link {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    padding: 32px 24px;
  }
}
.info-seminar__title {
  margin-block: 0;
  color: var(--brand-main-500);
  font-size: var(--font-heading-lg);
  font-weight: var(--font-weight-bold);
  text-decoration: none;
  text-underline-offset: 3px;
}
@container (min-width: 768px) {
  .info-seminar__title {
    width: 100%;
  }
}
@media (any-hover: hover) {
  .info-seminar__title:hover {
    text-decoration: underline;
  }
}
.info-seminar__date {
  margin-block: 8px 0;
  color: var(--brand-main-500);
}
@container (min-width: 768px) {
  .info-seminar__date {
    font-size: var(--font-pc-base);
  }
}
.info-seminar__date span {
  color: var(--text);
}
.info-seminar__date span::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 16px;
  margin-inline: 10px;
  background-color: var(--color-border);
  vertical-align: -3px;
}

/* ------------------------------
  info-notice
------------------------------ */
.info-notice {
  margin-block: 0;
  padding-left: 0;
  list-style: none;
}
.info-notice__item {
  border-top: 1px solid var(--color-border);
}
.info-notice__item:last-child {
  border-bottom: 1px solid var(--color-border);
}
.info-notice__link {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 10px;
  padding: 24px 12px;
  color: var(--brand-main-500);
  text-decoration: none;
}
@container (min-width: 768px) {
  .info-notice__link {
    display: grid;
    grid-template-columns: 110px 122px 1fr;
    align-items: flex-start;
    padding: 32px 24px;
  }
}
.top-hero-info .info-notice__link {
  grid-template-columns: 140px 1fr;
  padding: 0;
}
@container (max-width: 767.9px) {
  .top-hero-info .info-notice__link {
    padding: 0;
  }
}
.info-notice__date {
  margin-block: 0;
  color: var(--text);
  font-family: var(--font-family-en);
  font-size: var(--font-heading-sm);
  font-weight: var(--font-weight-medium);
}
@container (min-width: 768px) {
  .info-notice__date {
    font-size: var(--font-pc-heading-sm);
  }
}
.top-hero-info .info-notice__date {
  color: var(--text-support);
}
@container (max-width: 767.9px) {
  .top-hero-info .info-notice__date {
    display: none;
  }
}
.info-notice__category {
  flex-shrink: 0;
  width: fit-content;
  margin-block: 0;
  padding: 2px 8px 3px;
  border-radius: 100vh;
  background-color: var(--color-bg-main);
  font-size: var(--font-sm);
  font-weight: var(--font-weight-bold);
}
@container (min-width: 768px) {
  .info-notice__category {
    font-size: var(--font-pc-base);
  }
}
.info-notice__title {
  position: relative;
  width: 100%;
  margin-block: 0;
}
@container (min-width: 768px) {
  .info-notice__title {
    width: auto;
    text-box: trim-both text alphabetic;
    font-size: 18px;
    font-weight: var(--font-weight-bold);
    text-decoration: none;
    text-underline-offset: 3px;
  }
}
@media (any-hover: hover) {
  .info-notice__title:hover {
    text-decoration: underline;
  }
}
.top-hero-info .info-notice__title {
  padding-right: 40px;
  overflow: hidden;
  font-weight: var(--font-weight-regular);
  text-box: none;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@container (max-width: 767.9px) {
  .top-hero-info .info-notice__title {
    color: var(--brand-main-500);
    text-decoration: underline;
  }
}
.top-hero-info .info-notice__title::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  transition: background 0.2s ease;
  border-radius: 100%;
  background: var(--brand-white) url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/icon/ico_arrow.svg") no-repeat center/10px;
}
@media (any-hover: hover) {
  .top-hero-info .info-notice__title:hover::after {
    background-color: var(--brand-main-500);
    background-image: url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/icon/ico_arrow_white.svg");
  }
}
.top-hero-info .info-notice__title::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 16px;
  height: 16px;
  margin-top: -8px;
}
@container (max-width: 767.9px) {
  .top-hero-info .info-notice__title::after {
    background-color: transparent;
  }
}

/* ------------------------------
  input-add
------------------------------ */
.input-add {
  display: none;
}

/* ------------------------------
  input-checkbox
------------------------------ */
.input-checkbox:has(input[type=checkbox]) {
  display: grid;
  position: relative;
  grid-template-columns: auto 1fr;
  column-gap: 8px;
  cursor: pointer;
}
.input-checkbox:has(input[type=checkbox])::before {
  content: "";
  width: 20px;
  height: 20px;
  transform: translateY(1px);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  background: var(--brand-white) url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/icon/ico_check.svg") no-repeat center/12px;
}
@container (min-width: 768px) {
  .input-checkbox:has(input[type=checkbox])::before {
    transform: translateY(3px);
  }
}
.input-checkbox:has(input[type=checkbox]):has(:checked)::before {
  background-color: var(--brand-main-400);
}
.input-checkbox:has(> .form-error) {
  position: relative;
  margin-top: 32px;
}
@container (min-width: 768px) {
  .input-checkbox:has(> .form-error) {
    margin-top: 36px;
  }
}
.input-checkbox__input {
  position: absolute;
  opacity: 0;
}
.input-checkbox__text {
  font-size: var(--font-base);
}
@container (min-width: 768px) {
  .input-checkbox__text {
    font-size: var(--font-pc-base);
  }
}

/* ------------------------------
  input-radio
------------------------------ */
.input-radio {
  display: grid;
  position: relative;
  grid-template-columns: auto 1fr;
  column-gap: 8px;
}
.input-radio::before {
  content: "";
  width: 20px;
  height: 20px;
  transform: translateY(1px);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background-color: var(--brand-white);
}
@container (min-width: 768px) {
  .input-radio::before {
    transform: translateY(3px);
  }
}
.input-radio:has(:checked)::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--brand-main-400);
}
@container (min-width: 768px) {
  .input-radio:has(:checked)::after {
    top: 8px;
  }
}
@container (min-width: 768px) {
  .input-radio:has(input[type=text])::before {
    transform: translateY(12px);
  }
  .input-radio:has(input[type=text])::after {
    top: 17px;
  }
}
.input-radio__input {
  position: absolute;
  opacity: 0;
}
@container (min-width: 768px) {
  .input-radio:has(input[type=text]) .input-radio__input {
    transform: translateY(12px);
  }
}
.input-radio__box {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@container (min-width: 768px) {
  .input-radio__box {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
  .input-radio__box .input-text {
    max-width: 80px;
  }
}
.input-radio__text {
  font-size: var(--font-base);
}
@container (min-width: 768px) {
  .input-radio__text {
    font-size: var(--font-pc-base);
  }
}

/* ------------------------------
  input-select
------------------------------ */
.input-select {
  position: relative;
  width: 100%;
}
.input-select:has(.form-error) {
  position: relative;
  padding-top: 32px;
}
@container (min-width: 768px) {
  .input-select:has(.form-error) {
    padding-top: 36px;
  }
}
.input-select--xs {
  max-width: 80px;
}
.input-select--s {
  max-width: 120px;
}
@container (min-width: 768px) {
  .input-select--s {
    max-width: 150px;
  }
}
.input-date .input-select, .input-set .input-select {
  padding-top: 0;
}
.form-transport-table :not(.input-set) > .input-select:has(.form-error) {
  padding-top: 64px;
}
@container (min-width: 768px) {
  .form-transport-table :not(.input-set) > .input-select:has(.form-error) {
    padding-top: 72px;
  }
}
.input-select__select {
  width: 100%;
  padding: 10px 40px 10px 12px;
  border: 1px solid var(--brand-white);
  border-radius: 6px;
  background-color: var(--brand-white);
  color: var(--text);
  font-size: var(--font-base);
  appearance: none;
}
@container (min-width: 768px) {
  .input-select__select {
    padding-block: 12px;
    font-size: var(--font-pc-base);
  }
}
.input-select__select:invalid, .input-select__select option:first-child {
  color: var(--brand-black-500);
}
.input-select__select[disabled] {
  background-color: var(--color-bg-disabled);
}
.input-select__select:focus {
  outline: 1px solid var(--brand-main-500);
  box-shadow: 2px 4px 15px rgba(0, 0, 0, 0.07);
}
.input-select::after {
  content: "";
  display: block;
  position: absolute;
  right: 14px;
  bottom: 12px;
  width: 16px;
  height: 16px;
  background: url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/icon/ico_arrow.svg") no-repeat center/contain;
  pointer-events: none;
  rotate: 90deg;
}

/* ------------------------------
  input-text
------------------------------ */
.input-text {
  box-sizing: border-box;
  width: 100%;
  padding: 8px 12px;
  border: 0;
  border-radius: 6px;
  background-color: var(--brand-white);
  font-size: var(--font-pc-base);
}
@container (min-width: 768px) {
  .input-text {
    padding-block: 10px;
  }
}
.input-text[disabled] {
  background-color: var(--color-bg-disabled);
}
.input-text:focus {
  outline: 1px solid var(--brand-main-500);
  box-shadow: 2px 4px 15px rgba(0, 0, 0, 0.07);
}

/* ------------------------------
  input-textarea
------------------------------ */
.input-textarea {
  box-sizing: border-box;
  width: 100%;
  min-height: 200px;
  padding: 8px 12px;
  border: 0;
  border-radius: 6px;
  background-color: var(--brand-white);
  font-size: var(--font-pc-base);
  resize: vertical;
}
@container (min-width: 768px) {
  .input-textarea {
    padding-block: 16px;
  }
}
.input-textarea:focus {
  outline: 1px solid var(--brand-main-500);
  box-shadow: 2px 4px 15px rgba(0, 0, 0, 0.07);
}

/* ------------------------------
  input-date
------------------------------ */
.input-date {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.input-date:has(.form-error) {
  position: relative;
  padding-top: 32px;
}
@container (min-width: 768px) {
  .input-date:has(.form-error) {
    padding-top: 36px;
  }
}
.input-date--transport:has(.form-error) {
  flex-direction: column;
  align-items: flex-start;
  padding-top: 0;
}
.input-date__box {
  display: flex;
  align-items: center;
  gap: 8px;
}
.input-date--transport .input-date__box:has(.form-error):has(.form-error) {
  position: relative;
  padding-top: 32px;
}
@container (min-width: 768px) {
  .input-date--transport .input-date__box:has(.form-error):has(.form-error) {
    padding-top: 36px;
  }
}
.input-date__year {
  max-width: 120px;
}
@container (min-width: 768px) {
  .input-date__year {
    max-width: 150px;
  }
}
.input-date__short {
  max-width: 68px;
}
@container (min-width: 768px) {
  .input-date__short {
    max-width: 80px;
  }
}
.input-date__sep {
  flex-shrink: 0;
  color: var(--text);
  font-size: var(--font-base);
}
@container (min-width: 768px) {
  .input-date__sep {
    font-size: var(--font-pc-base);
  }
}

/* ------------------------------
  input-list
------------------------------ */
.input-list {
  display: flex;
  flex-wrap: wrap;
  margin-block: 0;
  padding-left: 0;
  list-style: none;
  gap: 8px 16px;
}
.input-list .input-list {
  margin-block-end: 32px;
}
.input-list:has(.form-error) {
  position: relative;
  padding-top: 32px;
}
@container (min-width: 768px) {
  .input-list:has(.form-error) {
    padding-top: 36px;
  }
}
.input-list--vertical {
  flex-direction: column;
}
.input-list--transport:has(.form-error) {
  padding-top: 0;
}
.input-list__item {
  width: fit-content;
  min-width: 80px;
}
@container (min-width: 768px) {
  .input-list__item {
    min-width: 112px;
  }
}
.input-list--vertical .input-list__item {
  width: 100%;
  min-width: auto;
}
.input-list--s .input-list__item {
  min-width: 44px;
}
.input-list__title {
  display: inline-block;
  margin-block: 12px;
  color: var(--brand-main-500);
  font-size: var(--font-base);
  font-weight: var(--font-weight-bold);
}
@container (min-width: 768px) {
  .input-list__title {
    font-size: var(--font-pc-base);
  }
}
.input-list__title:first-child {
  margin-block-start: 0;
}
.input-list__inner-text {
  padding-left: 30px;
}

/* ------------------------------
  input-name
------------------------------ */
.input-name {
  display: grid;
  grid-template-columns: repeat(2, 120px);
  column-gap: 16px;
}
@container (min-width: 768px) {
  .input-name {
    grid-template-columns: repeat(2, 150px);
  }
}
.input-name:has(.form-error) {
  position: relative;
  padding-top: 32px;
}
@container (min-width: 768px) {
  .input-name:has(.form-error) {
    padding-top: 36px;
  }
}
.input-name__input {
  margin-top: 0;
}

/* ------------------------------
  input-number-group
------------------------------ */
.input-number-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ------------------------------
  input-set
------------------------------ */
.input-set {
  display: flex;
  align-items: center;
  gap: 8px;
}
.input-set:has(.form-error) {
  position: relative;
  padding-top: 32px;
}
@container (min-width: 768px) {
  .input-set:has(.form-error) {
    padding-top: 36px;
  }
}
.form-transport-table .input-set:has(.form-error) {
  padding-top: 64px;
}
@container (min-width: 768px) {
  .form-transport-table .input-set:has(.form-error) {
    padding-top: 72px;
  }
}
.input-set__xs {
  max-width: 68px;
}
@container (min-width: 768px) {
  .input-set__xs {
    max-width: 80px;
  }
}
.input-set__s {
  max-width: 120px;
}
@container (min-width: 768px) {
  .input-set__s {
    max-width: 150px;
  }
}
.input-set__unit {
  flex-shrink: 0;
  color: var(--text);
  font-size: var(--font-base);
}
@container (min-width: 768px) {
  .input-set__unit {
    font-size: var(--font-pc-base);
  }
}

/* ------------------------------
  link-detail
------------------------------ */
.link-detail {
  margin-block: 0;
  padding-left: 12px;
}
@container (min-width: 768px) {
  .link-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 16px;
  }
}
.link-detail:not(:last-child) {
  margin-bottom: 16px;
}
@container (max-width: 767.9px) {
  .link-detail:not(:last-child) {
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-border-transparent);
  }
}
.link-detail__box {
  padding-block: 16px;
  border-bottom: 1px solid var(--color-border-transparent);
}
@container (min-width: 768px) {
  .link-detail__box {
    padding: 0 24px 0 0;
    border-bottom: 0;
  }
}
.link-detail__box:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
@container (min-width: 768px) {
  .link-detail__box:last-child {
    padding-inline: 24px 0;
    border-left: 1px solid var(--color-border-transparent);
  }
}
.link-detail__link {
  display: inline-flex;
  align-items: center;
  column-gap: 8px;
  color: var(--brand-main-500);
  font-weight: var(--font-weight-bold);
  text-decoration: none;
}
@container (min-width: 768px) {
  .link-detail__link {
    font-size: var(--font-pc-sm);
  }
}
.link-detail__link::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  transition: background 0.2s ease;
  border-radius: 100%;
  background: var(--brand-white) url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/icon/ico_arrow.svg") no-repeat center/10px;
}
@media (any-hover: hover) {
  .link-detail__link:hover::after {
    background-color: var(--brand-main-500);
    background-image: url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/icon/ico_arrow_white.svg");
  }
}
.modal .link-detail__link::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  transition: background 0.2s ease;
  border-radius: 100%;
  background: var(--color-bg) url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/icon/ico_arrow.svg") no-repeat center/10px;
}
@media (any-hover: hover) {
  .modal .link-detail__link:hover::after {
    background-color: var(--brand-main-500);
    background-image: url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/icon/ico_arrow_white.svg");
  }
}
.link-detail__text {
  margin-left: 0;
  line-height: var(--line-height-sm);
}

/* ------------------------------
  link-dot
------------------------------ */
.link-dot {
  margin-block: 0;
}
.link-dot::before {
  content: "";
  margin-right: 8px;
  vertical-align: 3px;
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background-color: var(--brand-black-900);
}
@container (min-width: 768px) {
  .link-dot::before {
    width: 6px;
    height: 6px;
    margin-right: 12px;
  }
}
.link-dot__link {
  color: var(--brand-main-400);
  text-decoration: none;
}
@media (any-hover: hover) {
  .link-dot__link:hover {
    text-decoration: underline;
  }
}

/* ------------------------------
  link-list
------------------------------ */
.link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-block: 0;
  padding: 0;
  list-style: none;
}
.modal__section .link-list {
  margin-left: 12px;
}
.link-list__link {
  display: inline-flex;
  align-items: center;
  column-gap: 8px;
  color: var(--brand-main-500);
  font-weight: var(--font-weight-bold);
  text-decoration: none;
}
@container (min-width: 768px) {
  .link-list__link {
    font-size: var(--font-pc-sm);
  }
}
.link-list__link::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  transition: background 0.2s ease;
  border-radius: 100%;
  background: var(--brand-white) url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/icon/ico_arrow.svg") no-repeat center/10px;
}
@media (any-hover: hover) {
  .link-list__link:hover::after {
    background-color: var(--brand-main-500);
    background-image: url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/icon/ico_arrow_white.svg");
  }
}
.modal .link-list__link::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  transition: background 0.2s ease;
  border-radius: 100%;
  background: var(--color-bg) url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/icon/ico_arrow.svg") no-repeat center/10px;
}
@media (any-hover: hover) {
  .modal .link-list__link:hover::after {
    background-color: var(--brand-main-500);
    background-image: url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/icon/ico_arrow_white.svg");
  }
}
.link-list__link.js-modal-trigger::after {
  background-image: url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/icon/ico_modal.svg");
}
@media (any-hover: hover) {
  .link-list__link.js-modal-trigger:hover::after {
    background-image: url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/icon/ico_modal_white.svg");
  }
}

/* ------------------------------
  link-list-box
------------------------------ */
.link-list-box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-block: 40px;
  padding: 0;
  list-style: none;
}
@container (min-width: 768px) {
  .link-list-box {
    grid-template-columns: 1fr 1fr;
    gap: 32px 40px;
    margin-block: 80px;
  }
}
.heading02 + .link-list-box {
  margin-block: 0;
}
.link-list-box__link {
  display: flex;
  position: relative;
  flex-direction: column;
  row-gap: 12px;
  height: 100%;
  padding: 24px 20px;
  border-radius: 6px;
  background-color: var(--brand-gray);
  color: var(--brand-black-900);
  font-size: var(--font-heading-md);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-xs);
  text-decoration: none;
}
@container (min-width: 768px) {
  .link-list-box__link {
    row-gap: 24px;
    padding: 30px;
    font-size: var(--font-pc-heading-sm);
    font-weight: var(--font-weight-medium);
  }
}
@media (any-hover: hover) {
  .link-list-box__link:hover .link-list-box__head::after {
    content: "";
    background-color: var(--brand-main-500);
    background-image: url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/icon/ico_arrow_white.svg");
  }
}
.link-list-box__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  margin-block: 0;
  column-gap: 8px;
}
.link-list-box__head::after {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  transition: background 0.2s ease;
  border-radius: 100%;
  background: var(--brand-white) url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/icon/ico_arrow.svg") no-repeat center/8px 8px;
}
@container (min-width: 768px) {
  .link-list-box__head::after {
    width: 24px;
    height: 24px;
    background: var(--brand-white) url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/icon/ico_arrow.svg") no-repeat center/10px 10px;
  }
}
.link-list-box__text {
  margin-block: 0;
  font-size: var(--font-base);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-xs);
}
@container (min-width: 768px) {
  .link-list-box__text {
    font-size: var(--font-pc-base);
  }
}

/* ------------------------------
  link-more
------------------------------ */
.link-more {
  margin-block: 40px 0;
  text-align: right;
}
.link-more__link {
  display: inline-flex;
  position: relative;
  align-items: center;
  padding-bottom: 12px;
  column-gap: 8px;
  border-bottom: 1px solid var(--color-border-transparent);
  color: var(--brand-main-500);
  font-size: var(--font-base);
  text-decoration: none;
}
@container (min-width: 768px) {
  .link-more__link {
    font-size: var(--font-pc-base);
  }
}
.link-more__link::before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: -1px;
  width: 16px;
  height: 1px;
  background-color: var(--brand-main-500);
}
.link-more__link::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  transition: background 0.2s ease;
  border-radius: 100%;
  background: var(--brand-white) url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/icon/ico_arrow.svg") no-repeat center/10px;
}
@media (any-hover: hover) {
  .link-more__link:hover::after {
    background-color: var(--brand-main-500);
    background-image: url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/icon/ico_arrow_white.svg");
  }
}

/* ------------------------------
  link-text
------------------------------ */
.link-text {
  margin-block: 18px 0;
  text-align: right;
}
@container (min-width: 768px) {
  .link-text {
    margin-top: 20px;
  }
}
.link-text__link {
  display: inline-flex;
  position: relative;
  align-items: center;
  padding-bottom: 12px;
  column-gap: 8px;
  color: var(--brand-main-500);
  font-size: var(--font-base);
  text-decoration: none;
}
@container (min-width: 768px) {
  .link-text__link {
    font-size: var(--font-pc-base);
  }
}
.link-text__link::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  transition: background 0.2s ease;
  border-radius: 100%;
  background: var(--color-bg-main) url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/icon/ico_arrow.svg") no-repeat center/10px;
}
@media (any-hover: hover) {
  .link-text__link:hover::after {
    background-color: var(--brand-main-500);
    background-image: url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/icon/ico_arrow_white.svg");
  }
}

/* ------------------------------
  list
------------------------------ */
.list {
  margin-block: 0;
  padding-left: 0;
  list-style: none;
}
@container (min-width: 1024px) {
  .list {
    margin-left: 40px;
  }
}
.list__item {
  border-bottom: 1px solid var(--color-border);
}
.list__link {
  display: grid;
  grid-template-columns: 1fr;
  padding-block: 24px;
  column-gap: 16px;
  text-decoration: none;
}
@container (min-width: 768px) {
  .list__link {
    padding-block: 32px;
    column-gap: 30px;
  }
}
.list__link:has(img) {
  grid-template-columns: 120px 1fr;
}
@container (min-width: 768px) {
  .list__link:has(img) {
    grid-template-columns: 200px 1fr;
  }
}
.list__link--search {
  grid-template-columns: 1fr;
  row-gap: 6px;
}
.list__image {
  width: 120px;
  height: 120px;
  overflow: hidden;
  border-radius: 6px;
  object-fit: cover;
}
.list__date {
  margin-block: 0;
  color: var(--text-support);
  font-family: var(--font-family-en);
  font-size: 12px;
  font-weight: var(--font-weight-medium);
}
@container (min-width: 768px) {
  .list__date {
    font-size: var(--font-pc-base);
  }
}
.list__title {
  margin-block: 0;
  color: var(--brand-main-500);
  font-size: var(--font-base);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-lg);
}
@container (min-width: 768px) {
  .list__title {
    font-size: var(--font-pc-base);
  }
}
.list__title--search {
  font-size: var(--font-heading-md);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-base);
}
@container (min-width: 768px) {
  .list__title--search {
    font-size: var(--font-pc-heading-sm);
  }
}
.list__title mark {
  background-color: var(--brand-accent-red);
  color: var(--brand-main-500);
}
.list__body {
  display: -webkit-box;
  margin-block: 0;
  overflow: hidden;
  color: var(--text-support);
  font-size: var(--font-base);
  line-height: var(--line-height-lg);
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
@container (min-width: 768px) {
  .list__body {
    font-size: var(--font-pc-base);
  }
}
.list__body mark {
  background-color: var(--brand-accent-red);
  color: var(--text-support);
}

/* ------------------------------
  list-column
------------------------------ */
.list-column {
  display: grid;
  row-gap: 6px;
}
@container (min-width: 768px) {
  .list-column {
    row-gap: 10px;
  }
}
.list-column__image {
  width: 120px;
  height: 120px;
  overflow: hidden;
  border-radius: 6px;
  object-fit: cover;
}
@container (min-width: 768px) {
  .list-column__image {
    width: 200px;
    height: 200px;
  }
}
@container (min-width: 768px) {
  .list-column__box {
    align-self: center;
    padding-block: 12px;
  }
}
.list-column__date {
  margin-block: 0;
  color: var(--text-support);
  font-family: var(--font-family-en);
  font-size: 12px;
  font-weight: var(--font-weight-medium);
}
@container (min-width: 768px) {
  .list-column__date {
    font-size: var(--font-pc-base);
  }
}
.list-column__title {
  margin-block: 0;
  color: var(--brand-main-500);
  font-size: var(--font-heading-sm);
  font-weight: var(--font-weight-bold);
}
@container (min-width: 768px) {
  .list-column__title {
    font-size: var(--font-pc-heading-sm);
  }
}
@media (any-hover: hover) {
  .list-column__title:hover {
    text-decoration: underline;
  }
}
.list-column__title mark {
  background-color: var(--brand-accent-red);
  color: var(--brand-main-500);
}
.list-column__body {
  display: -webkit-box;
  margin-block: 0;
  overflow: hidden;
  color: var(--text-support);
  font-size: var(--font-pc-base);
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@container (max-width: 767.9px) {
  .list-column__body {
    display: none;
  }
}
.list-column__body mark {
  background-color: var(--brand-accent-red);
  color: var(--text-support);
}

/* ------------------------------
  list-data
------------------------------ */
.list-data {
  display: flex;
  align-items: center;
  gap: 10px;
  height: fit-content;
}
@container (min-width: 768px) {
  .list-data {
    gap: 24px;
  }
}
.list-data__data {
  margin-block: 0;
  color: var(--text-support);
  font-family: var(--font-family-en);
  font-size: 14px;
  line-height: 1;
}
@container (min-width: 768px) {
  .list-data__data {
    font-size: var(--font-pc-base);
  }
}
.list-data__tag {
  min-width: 93px;
  margin-block: 0;
  padding: 5px 8px;
  border-radius: 32px;
  background-color: var(--brand-main-50);
  color: var(--brand-main-500);
  font-size: var(--font-sm);
  font-weight: var(--font-weight-bold);
  line-height: 1;
  text-align: center;
}
@container (min-width: 768px) {
  .list-data__tag {
    padding: 8px;
    border-radius: 33px;
    font-size: var(--font-pc-base);
  }
}

/* ------------------------------
  list-empty
------------------------------ */
.list-empty {
  text-align: center;
}
.list-empty::before {
  content: "";
  display: block;
  width: 180px;
  height: 180px;
  margin: 18px auto;
  background: url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/common/img_no_item.webp") no-repeat center/contain;
}
@container (min-width: 768px) {
  .list-empty::before {
    width: 270px;
    height: 270px;
    margin-block: 60px 40px;
  }
}
.list-empty.list-empty--error::before {
  background: url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/common/img_error.webp") no-repeat center/contain;
}
.list-empty__title {
  margin-block: 0;
  font-size: var(--font-heading-lg);
  font-weight: var(--font-weight-bold);
}
@container (min-width: 768px) {
  .list-empty__title {
    font-size: var(--font-pc-heading-md);
  }
}
.list-empty__text {
  margin-block: 6px 18px;
  font-size: var(--font-base);
}
@container (min-width: 768px) {
  .list-empty__text {
    margin-block: 16px 40px;
    font-size: var(--font-pc-base);
  }
}
.list-empty .button {
  width: fit-content;
  margin-inline: auto;
}

/* ------------------------------
  list-filter
------------------------------ */
.list-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 8px;
  margin-block: 0;
  padding-left: 0;
  list-style: none;
}
.list-filter__button {
  display: inline-flex;
  position: relative;
  padding: 5px 12px 5px 10px;
  column-gap: 4px;
  border: 1px solid var(--color-border);
  border-radius: 100vh;
  background-color: var(--brand-white);
  color: var(--text-support);
  font-size: var(--font-base);
  cursor: pointer;
}
.list-filter__button::before {
  content: "#";
}
.list-filter__button:has(:checked) {
  border-color: var(--brand-main-500);
  background-color: var(--color-bg-main);
  color: var(--brand-main-500);
}
.list-filter__input {
  visibility: hidden;
  position: absolute;
}

/* ------------------------------
  list-filter-button
------------------------------ */
.list-filter-button {
  flex-grow: 0;
  width: fit-content;
  margin-left: auto;
  padding-inline: 12px;
}
.list-filter-button::after {
  display: none;
}

/* ------------------------------
  list-footer
------------------------------ */
.list-footer {
  margin-top: 40px;
}
@container (min-width: 1024px) {
  .list-footer {
    margin-top: 60px;
    margin-left: 40px;
  }
}

/* ------------------------------
  list-header
------------------------------ */
.list-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
}
main:has(.list-empty) .list-header {
  padding-bottom: 0;
  border-bottom: 0;
}
@container (min-width: 768px) {
  .list-header {
    margin-bottom: 24px;
  }
}
@container (min-width: 1024px) {
  .contents .list-header {
    margin-left: 40px;
  }
}

/* ------------------------------
  list-nav
------------------------------ */
.list-nav {
  padding-block: 28px 16px;
}
.ly-contents:has(.article) .list-nav {
  padding-inline: 24px;
}
@container (min-width: 768px) {
  .list-nav {
    padding-block: 0;
  }
  .ly-contents:has(.article) .list-nav {
    padding-inline: 0;
  }
}
.list-nav__box {
  margin-top: 20px;
}
.list-nav__box:first-child {
  margin-top: 0;
}
.list-nav__list {
  margin-block: 12px 0;
  padding-left: 0;
  list-style: none;
}
.list-nav__item {
  position: relative;
  padding: 8px 0 8px 14px;
  border-bottom: 1px solid var(--color-border);
}
@container (min-width: 768px) {
  .list-nav__item {
    border-bottom: none;
  }
}
.list-nav__item::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 20px;
  left: 0;
  width: 6px;
  height: 1px;
  border-radius: 2px;
  background-color: var(--brand-main-500);
}
@container (min-width: 768px) {
  .list-nav__item::before {
    top: 24px;
  }
}
.list-nav__link {
  display: inline;
  color: var(--brand-main-500);
  font-size: var(--font-base);
  text-decoration: none;
}
@container (min-width: 768px) {
  .list-nav__link {
    font-size: var(--font-pc-base);
  }
}
.list-nav__link[aria-current=page] {
  background: linear-gradient(var(--brand-white) 69%, rgba(245, 190, 210, 0.5) 70%, rgba(245, 190, 210, 0.5) 100%);
}
@media (any-hover: hover) {
  .list-nav__link:hover {
    background: linear-gradient(var(--brand-white) 69%, rgba(245, 190, 210, 0.5) 70%, rgba(245, 190, 210, 0.5) 100%);
  }
}

/* ------------------------------
  list-page
------------------------------ */
.list-page {
  display: flex;
  align-items: center;
  margin-block: 0;
  column-gap: 4px;
  color: var(--brand-main-500);
  font-size: var(--font-base);
}
@container (min-width: 768px) {
  .list-page {
    font-size: var(--font-pc-base);
  }
}
.list-page__inner {
  display: flex;
  column-gap: 2px;
}

/* ------------------------------
  list-selected
------------------------------ */
.list-selected {
  display: grid;
  grid-template-columns: 70px 1fr;
  width: 100%;
  margin-block: 16px 0;
  padding: 10px 12px;
  column-gap: 12px;
  border-radius: 3px;
  background-color: var(--color-bg);
}
@container (min-width: 1024px) {
  .list-selected {
    display: none;
  }
}
.list-selected__title {
  font-size: var(--font-base);
}
.list-selected__data {
  margin-left: 0;
}

/* ------------------------------
  list-tag
------------------------------ */
.list-tag {
  display: flex;
  margin-block: 4px 0;
  padding-left: 0;
  column-gap: 12px;
  list-style: none;
}
.list-tag:first-child {
  margin-top: 0;
}
.list-tag__item {
  color: var(--text-support);
  font-size: var(--font-base);
}
@container (min-width: 768px) {
  .list-tag__item {
    font-size: var(--font-pc-sm);
  }
}
.list-tag__item::before {
  content: "#";
}

/* ------------------------------
  list-text
------------------------------ */
.list-text {
  margin-block: 16px;
  padding-left: 0;
  font-size: var(--font-base);
  list-style: none;
}
@container (min-width: 768px) {
  .list-text {
    margin-block: 24px;
    font-size: var(--font-pc-base);
  }
}
.list-text__item {
  display: grid;
  grid-template-columns: min-content 1fr;
  column-gap: 4px;
}
.list-text__item::before {
  content: "・";
}

/* ------------------------------
  .modal
------------------------------ */
.modal {
  position: fixed;
  border: 0;
  background-color: transparent;
  inset: 0;
}
.modal__box {
  position: fixed;
  z-index: 100;
  right: 6px;
  bottom: -120%;
  left: 6px;
  max-height: calc(100svh - 124px);
  transition: bottom 0.3s ease;
  border-top-left-radius: 8px;
  background-color: var(--brand-white);
}
.modal__box--guide {
  right: 0;
  bottom: 120%;
  left: 0;
  width: 100%;
  height: 100svh;
  max-height: 100svh;
  border-radius: 0;
  background-color: var(--color-bg);
}
.modal--seminar .modal__box {
  background-color: var(--color-bg);
}
@container (min-width: 768px) {
  .modal__box {
    right: 0;
    left: auto;
    width: 600px;
    filter: drop-shadow(-20px 20px 40px rgba(0, 0, 0, 0.1));
  }
  .modal__box:not(.modal__box--guide) {
    bottom: -120%;
  }
  .modal__box--staff {
    width: 100%;
    max-width: 1174px;
  }
}
@container (min-width: 1280px) {
  .modal__box--guide {
    right: 0;
    bottom: -120%;
    left: auto;
    width: 600px;
    height: auto;
    padding-top: 40px;
    border-top-left-radius: 8px;
    background-color: var(--color-bg);
  }
}
.is-slide-in .modal__box {
  bottom: 0;
}
.modal__inner {
  max-height: calc(100svh - 124px);
  overflow: auto;
}
.modal--guide .modal__inner {
  max-height: 100%;
  padding: 70px 24px 40px;
}
@container (min-width: 768px) {
  .modal--guide .modal__inner {
    max-height: calc(100svh - 84px);
  }
}
.modal__close {
  position: absolute;
  top: -43px;
  right: 0;
  width: 64px;
  height: 44px;
  border: 0;
  border-radius: 8px 8px 0 0;
  background-color: var(--brand-white);
}
.modal--guide .modal__close {
  top: 15px;
  right: 16px;
  border-radius: 0;
  background-color: transparent;
}
.modal--seminar .modal__close {
  background-color: var(--color-bg);
}
@container (min-width: 1280px) {
  .modal--guide .modal__close {
    top: -44px;
    right: 0;
    border-radius: 8px 8px 0 0;
    background-color: var(--color-bg);
  }
}
@media (any-hover: hover) {
  .modal__close:hover span {
    opacity: 0.7;
  }
}
.modal__close::before {
  bottom: 0;
  left: -12px; /* オートレイアウト内部 */
  content: "";
  display: block;
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: var(--brand-white);
  mask: url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/common/bg_mask.svg") no-repeat center/contain;
}
.modal--guide .modal__close::before {
  display: none;
}
.modal--seminar .modal__close::before {
  background-color: var(--color-bg);
}
.modal__header {
  margin-block: 0;
  padding: 28px 24px 0;
}
.modal__header:has(.modal__title) {
  position: relative;
  padding: 32px 0 0;
}
@container (min-width: 768px) {
  .modal__header:has(.modal__title) {
    margin-inline: 40px;
  }
}
.modal__seminar-header {
  position: relative;
  margin-block: 0;
  padding: 0;
}
.modal__title {
  margin: 0 24px 20px;
  font-size: var(--font-heading-xl);
}
.modal--seminar .modal__title {
  margin: 0 0 4px;
  color: var(--brand-main-500);
}
.modal--optional .modal__title {
  color: var(--brand-main-500);
}
@container (min-width: 1280px) {
  .modal__title {
    margin: 0;
    font-size: var(--font-pc-heading-md);
  }
  .modal--optional .modal__title {
    margin-bottom: 20px;
  }
}
.modal__title span {
  display: block;
  font-size: var(--font-base);
}
.modal__sub-title {
  margin-block: 0;
  font-size: var(--font-base);
}
@container (min-width: 768px) {
  .modal__sub-title {
    font-size: var(--font-pc-base);
  }
}
.modal__section {
  padding: 24px;
  border-top: 1px solid var(--color-border-transparent);
}
@container (min-width: 768px) {
  .modal__section {
    margin-inline: 40px;
    padding-inline: 0;
  }
}
.modal__block {
  margin-top: 24px;
}
.modal__block:first-child {
  margin-top: 0;
}
.modal__card {
  margin: 0 0 14px;
  padding: 20px;
  border-radius: 6px;
  background-color: var(--brand-white);
}
@container (min-width: 1280px) {
  .modal__card {
    margin: 0 0 20px;
  }
}
.modal__card:last-child {
  margin-bottom: 0;
}
@container (min-width: 1280px) {
  .modal__card--hide-xl {
    display: none;
  }
}
.modal__text {
  margin-block: 4px 0;
  font-size: var(--font-base);
}
@container (min-width: 768px) {
  .modal__text {
    font-size: var(--font-pc-sm);
  }
}
.heading04 + .modal__text {
  margin-top: -12px;
}
@container (min-width: 1280px) {
  .modal__guide-header {
    display: grid;
    grid-template-columns: 1fr 268px;
    align-items: center;
    margin-bottom: 32px;
  }
}
.modal__guide-header > a {
  display: none;
}
@container (min-width: 1280px) {
  .modal__guide-header > a {
    display: flex;
  }
}
.modal__staff-header {
  padding: 32px 24px 20px;
}
@container (min-width: 768px) {
  .modal__staff-header {
    padding: 60px 40px 32px;
  }
}
.modal__list {
  border-top: 1px solid var(--color-border);
}

/* ------------------------------
  .modal-relations
------------------------------ */
.modal-relations {
  position: relative;
  padding: 32px 24px;
  background-color: var(--color-bg-main);
}
@container (min-width: 768px) {
  .modal-relations {
    padding: 40px;
  }
}
.modal-relations__title {
  margin-block: 0;
  color: var(--brand-main-500);
  font-size: var(--font-heading-sm);
  font-weight: var(--font-weight-bold);
}
@container (min-width: 768px) {
  .modal-relations__title {
    font-size: var(--font-pc-base);
  }
}
.modal-relations__wrap {
  position: relative;
  margin-inline: -24px;
  padding-inline: 16px;
}
@container (min-width: 768px) {
  .modal-relations__wrap {
    margin-inline: -8px;
    padding-inline: 0;
  }
}
.modal-relations__slider {
  width: 100%;
  overflow: hidden;
}
.modal-relations__list {
  display: flex;
  margin-top: 16px;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}
@container (min-width: 768px) {
  .modal-relations__list {
    margin-top: 20px;
  }
}
.modal-relations__item {
  width: fit-content;
  padding-inline: 8px;
}
.modal-relations__link {
  display: block;
  height: 200px;
  overflow: hidden;
  border-radius: 6px;
}
@container (min-width: 768px) {
  .modal-relations__link {
    height: 200px;
  }
}
.modal-relations__link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ------------------------------
  .modal-form
------------------------------ */
.modal-form {
  position: fixed;
  padding: 0;
  border: 0;
  background-color: transparent;
  inset: 0;
}
.modal-form__box {
  position: fixed;
  z-index: 100;
  right: 12px;
  bottom: 40%;
  left: 12px;
  width: calc(100vw - 24px);
  max-height: calc(100svh - 24px);
  padding: 40px 20px;
  overflow-y: auto;
  transform: translateY(50%);
  transition: bottom 0.3s ease, opacity 0.3s ease;
  border-radius: 6px;
  opacity: 0;
  background-color: var(--brand-white);
}
@container (min-width: 768px) {
  .modal-form__box {
    right: auto;
    left: 50%;
    width: 800px;
    transform: translate(-50%, 50%);
    filter: drop-shadow(-20px 20px 40px rgba(0, 0, 0, 0.1));
  }
}
.is-slide-in .modal-form__box {
  bottom: 50%;
  opacity: 1;
}
.modal-form__close {
  position: absolute;
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
  transition: opacity 0.2s ease;
  border: 0;
  background-color: var(--brand-white);
}
@media (any-hover: hover) {
  .modal-form__close:hover {
    opacity: 0.6;
  }
}
.modal-form__section {
  margin-top: 32px;
}
@container (min-width: 768px) {
  .modal-form__section {
    margin-top: 40px;
  }
}

/* ------------------------------
  .modal-list
------------------------------ */
.modal-list {
  margin-block: 0;
}
@container (min-width: 768px) {
  .modal-list {
    padding-inline: 40px;
  }
}
.modal-list__box {
  border-top: 1px solid var(--color-border);
}
.modal-list__title {
  display: flex;
  position: relative;
  align-items: center;
  width: 100%;
  padding: 20px 32px 20px 24px;
  transition: background-color 0.2s ease;
  border: 0;
  background-color: transparent;
  color: #323232;
  font-size: var(--font-heading-sm);
  font-weight: var(--font-weight-bold);
  text-align: left;
}
@container (min-width: 768px) {
  .modal-list__title {
    grid-template-columns: 30px 1fr 30px;
    padding: 30px 12px 30px 0;
    column-gap: 12px;
    font-size: var(--font-pc-base);
  }
}
@media (any-hover: hover) {
  .modal-list__title[aria-expanded=false]:hover {
    background-color: var(--color-bg);
  }
}
.modal-list__title[aria-expanded=true] {
  color: var(--brand-main-500);
}
.modal-list__title[aria-expanded=true]::before {
  content: "";
  margin-right: 8px;
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background-color: var(--brand-accent-red);
}
.modal-list__body {
  display: none;
  position: relative;
  margin-left: 0;
  padding: 0 24px 24px 36px;
}
@container (min-width: 768px) {
  .modal-list__body {
    padding: 0 0 24px 16px;
  }
}
.modal-list__text {
  margin-block: 0;
  font-size: var(--font-base);
}
@container (min-width: 768px) {
  .modal-list__text {
    font-size: var(--font-pc-base);
  }
}

/* ------------------------------
  .modal-reserve-button
------------------------------ */
.modal-reserve-button {
  display: flex;
  flex-direction: column;
  gap: 12px 16px;
  margin: 20px 24px 28px;
}
.modal__card .modal-reserve-button {
  margin: 0;
}
@container (min-width: 768px) {
  .modal-reserve-button {
    flex-direction: row;
    margin: 16px 40px 28px;
    padding-left: 12px;
  }
}
.modal-reserve-button__text {
  margin-block: 0;
}

/* ------------------------------
  .modal-sp
------------------------------ */
.modal-sp {
  position: fixed;
  z-index: -1;
  border: 0;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.1);
  inset: 0;
}
@container (min-width: 1024px) {
  .modal-sp {
    position: static;
    opacity: 1;
    background-color: transparent;
  }
}
.modal-sp.is-open {
  z-index: 5;
  opacity: 1;
}
.modal-sp__box {
  position: fixed;
  z-index: 100;
  right: 6px;
  bottom: -120%;
  left: 6px;
  max-height: calc(100svh - 124px);
  transition: bottom 0.3s ease;
  border-top-left-radius: 8px;
  background-color: var(--brand-white);
}
@container (min-width: 1024px) {
  .modal-sp__box {
    position: static;
    max-height: 100%;
  }
}
.is-open .modal-sp__box {
  bottom: 0;
}
.is-closing .modal-sp__box {
  bottom: -120%;
}
.modal-sp__content {
  height: 50vh;
  padding: 20px 24px;
  overflow: auto;
}
@container (min-width: 1024px) {
  .modal-sp__content {
    height: auto;
    min-height: auto;
    padding: 0;
    overflow: visible;
  }
}
.modal-sp__close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 64px;
  height: 44px;
  border: 0;
  border-radius: 8px 8px 0 0;
  background-color: var(--brand-white);
}
.modal-sp__close::before {
  bottom: 0;
  left: -12px; /* オートレイアウト内部 */
  content: "";
  display: block;
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: var(--brand-white);
  mask: url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/common/bg_mask.svg") no-repeat center/contain;
}

/* ------------------------------
  note-list
------------------------------ */
.note-list {
  display: grid;
  row-gap: 4px;
  margin-block: 0;
  padding-left: 0;
  color: var(--text-support);
  font-size: var(--font-sm);
  list-style: none;
}
@container (min-width: 768px) {
  .note-list {
    font-size: var(--font-pc-sm);
  }
}
.input-radio + .note-list {
  margin-left: 30px;
  row-gap: 0;
}
.note-list__item {
  display: grid;
  grid-template-columns: 24px 1fr;
}
.note-list__item::before {
  content: "※";
  display: inline-block;
}

/* ------------------------------
  relations
------------------------------ */
.relations {
  margin: 0 24px 32px;
  border-radius: 6px;
  background-color: rgba(0, 0, 0, 0.03);
}
@container (min-width: 768px) {
  .relations {
    display: grid;
    grid-template-columns: 100px 1fr;
    margin: 0 0 40px;
    padding: 24px 14px;
    column-gap: 28px;
  }
}
@container (min-width: 768px) {
  .relations__title {
    display: flex;
    align-items: center;
    border-right: 1px solid var(--color-border-transparent);
  }
  .relations__title span {
    display: none;
  }
}
.relations__button {
  display: block;
  position: relative;
  width: 100%;
  padding: 14px 12px 14px 20px;
  border: 0;
  background-color: transparent;
  color: var(--text);
  font-size: var(--font-heading-sm);
  font-weight: var(--font-weight-bold);
  text-align: left;
}
@container (min-width: 768px) {
  .relations__button {
    padding: 0;
    color: var(--brand-main-500);
    font-size: var(--font-pc-sm);
  }
}
.relations__content {
  margin-left: 0;
  padding: 0 20px 12px;
}
@container (max-width: 767.9px) {
  .relations__content {
    display: none;
  }
}
@container (min-width: 768px) {
  .relations__content {
    padding: 0;
  }
}

/* ------------------------------
  salon-info
------------------------------ */
.salon-info {
  display: grid;
  grid-template-areas: "text" "banner" "link";
  place-items: center;
  padding: 30px 40px;
  row-gap: 20px;
  background-color: var(--color-bg-main);
}
@container (min-width: 768px) {
  .salon-info {
    grid-template-areas: "banner text" "banner link";
    grid-template-columns: 240px auto;
    padding: 40px;
    gap: 10px 40px;
  }
}
.salon-info__text {
  grid-area: text;
  margin-block: 0;
  color: var(--brand-main-500);
  font-size: var(--font-heading-sm);
}
@container (min-width: 768px) {
  .salon-info__text {
    font-size: var(--font-pc-sm);
    font-weight: var(--font-weight-bold);
  }
  .appointment-banner .salon-info__text {
    font-size: var(--font-pc-base);
  }
}
.salon-info__banner {
  grid-area: banner;
}
.salon-info__banner img {
  width: 236px;
  margin-inline: auto;
}
@container (min-width: 768px) {
  .salon-info__banner img {
    width: 100%;
  }
}
.salon-info__link {
  grid-area: link;
  width: 200px;
  text-align: center;
}
@container (min-width: 768px) {
  .salon-info__link {
    width: 100%;
  }
}

/* ------------------------------
  search-box
------------------------------ */
.search-box {
  position: relative;
}
header .search-box {
  padding: 28px 24px 18px;
}
@container (min-width: 1280px) {
  header .search-box {
    display: none;
  }
}
@container (min-width: 768px) {
  .search-box--sticky {
    width: 385px;
    height: 100px;
    padding: 20px;
    border-top-right-radius: 16px;
    background-color: var(--color-border);
  }
  .search-box--sticky::before {
    top: -12px;
    left: 0;
    transform: scale(-1, 1);
    content: "";
    display: block;
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: var(--color-border);
    mask: url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/common/bg_mask.svg") no-repeat center/contain;
  }
  .search-box--sticky::after {
    right: -12px;
    bottom: 0;
    transform: scale(-1, 1);
    content: "";
    display: block;
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: var(--color-border);
    mask: url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/common/bg_mask.svg") no-repeat center/contain;
  }
}
.search-box__label {
  visibility: hidden;
  position: absolute;
}
.search-box__inner {
  position: relative;
  height: 60px;
  border: 1.5px solid var(--input-border);
  border-radius: 6px;
  background-color: var(--brand-white);
}
.search-box__input {
  width: 100%;
  height: 100%;
  padding: 18px 60px 18px 20px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  background-color: transparent;
  font-size: var(--font-pc-base);
}
.search-box__input::placeholder {
  color: var(--input-placeholder);
}
.search-box__input:focus {
  outline: 1px solid var(--brand-main-500);
  box-shadow: 2px 4px 15px rgba(0, 0, 0, 0.07);
}
.search-box__button {
  display: grid;
  place-content: center;
  position: absolute;
  top: 50%;
  right: 2.5px;
  width: 52px;
  height: 52px;
  transform: translateY(-50%);
  border: none;
  background-color: transparent;
}

/* ------------------------------
  search-filter
------------------------------ */
.search-filter {
  padding-block: 40px;
}
@container (min-width: 1024px) {
  .search-filter {
    padding-block: 0;
    pointer-events: auto;
  }
}
@container (min-width: 1024px) {
  .search-filter__box {
    margin-bottom: 50px;
  }
}
.search-filter__condition {
  pointer-events: none;
}
@container (min-width: 1024px) {
  .search-filter__condition {
    pointer-events: auto;
  }
}
.search-filter__condition.is-open {
  pointer-events: auto;
}
.search-filter__title {
  display: none;
}
@container (min-width: 1024px) {
  .search-filter__title {
    display: flex;
    align-items: center;
    margin-block: 0 16px;
    column-gap: 12px;
    color: var(--brand-main-500);
    font-size: var(--font-pc-base);
    font-weight: var(--font-weight-bold);
  }
  .search-filter__title::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background-color: var(--brand-accent-red);
  }
}
.modal-sp .search-filter__title {
  display: block;
  margin-block: 0;
  padding: 32px 24px 20px;
  color: var(--brand-main-500);
  font-size: var(--font-heading-lg);
  font-weight: var(--font-weight-bold);
}
@container (min-width: 1024px) {
  .modal-sp .search-filter__title {
    display: flex;
    margin-block: 0 16px;
    padding: 0;
    font-size: var(--font-pc-base);
  }
}
.search-filter__footer {
  padding: 20px 24px 32px;
}
@container (min-width: 1024px) {
  .search-filter__footer {
    padding: 16px 0 0;
  }
}
.search-filter__button {
  width: 100%;
}
.search-filter__button::after {
  display: none;
}

/* ------------------------------
  slider-next
------------------------------ */
.slider-next {
  display: none;
  place-content: center;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 0;
  width: 44px;
  height: 44px;
  transform: translate(0, -50%);
  transition: width 0.2s ease, height 0.2s ease;
  border: 1px solid var(--color-border);
  border-radius: 100%;
  background-color: var(--brand-white);
  box-shadow: 2px 4px 16px rgba(0, 0, 0, 0.07);
}
div:has([aria-live]) > .slider-next {
  display: grid;
}
@container (min-width: 1024px) {
  .slider-next {
    transform: translate(50%, -50%);
  }
}
@media (any-hover: hover) {
  .slider-next {
    cursor: pointer;
  }
  .slider-next:hover {
    width: 48px;
    height: 48px;
  }
}
.slider-next.swiper-button-disabled {
  background-color: var(--color-bg);
  box-shadow: none;
  pointer-events: none;
}

/* ------------------------------
  slider-prev
------------------------------ */
.slider-prev {
  display: none;
  place-content: center;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 0;
  width: 44px;
  height: 44px;
  transform: translate(0, -50%) scale(-1, 1);
  border: 1px solid var(--color-border);
  border-radius: 100%;
  background-color: var(--brand-white);
}
div:has([aria-live]) > .slider-prev {
  display: grid;
}
@container (min-width: 1024px) {
  .slider-prev {
    transform: translate(-50%, -50%) scale(-1, 1);
  }
}
@media (any-hover: hover) {
  .slider-prev {
    cursor: pointer;
  }
}
.slider-prev.swiper-button-disabled {
  background-color: var(--color-bg);
  pointer-events: none;
}

/* ------------------------------
  staff-biography
------------------------------ */
.staff-biography {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}
@container (min-width: 768px) {
  .staff-biography {
    margin-top: 32px;
    padding-top: 32px;
  }
}
.staff-biography__title {
  margin-block: 0;
  color: var(--brand-main-500);
  font-size: var(--font-heading-sm);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-xs);
}
@container (min-width: 768px) {
  .staff-biography__title {
    font-size: var(--font-pc-base);
  }
}
.staff-biography__text {
  margin-top: 8px;
  margin-bottom: 0;
  font-size: var(--font-base);
  line-height: var(--line-height-xs);
}
@container (min-width: 768px) {
  .staff-biography__text {
    font-size: var(--font-pc-base);
  }
}
.staff-biography ul {
  margin-block: 16px 0;
  padding-left: 0;
  list-style: none;
}
.article-box-list .staff-biography ul {
  margin-top: 0;
}
.staff-biography li {
  font-size: var(--font-base);
}
@container (min-width: 768px) {
  .staff-biography li {
    font-size: var(--font-pc-base);
  }
}
.staff-biography li::before {
  content: "";
  margin-right: 10px;
  vertical-align: 2px;
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background-color: var(--brand-main-500);
}

/* ------------------------------
  staff-license
------------------------------ */
.staff-license {
  display: grid;
  margin-block: 12px 0;
  padding: 0;
  list-style: none;
}
@container (min-width: 768px) {
  .staff-license {
    margin-block: 20px;
    padding: 20px 0;
  }
}
@container (min-width: 768px) {
  .staff-profile .staff-license {
    margin-top: 24px;
    margin-bottom: 0;
    padding: 0;
  }
}
@container (min-width: 768px) {
  .modal__staff-header .staff-license {
    margin-top: 16px;
    margin-bottom: 0;
    padding: 0;
  }
}
.modal-list .staff-license {
  margin-block: 0;
  gap: 12px;
}
@container (min-width: 768px) {
  .modal-list .staff-license {
    padding: 0;
  }
}
@container (min-width: 768px) {
  .staff-list .staff-license {
    margin-top: 12px;
    margin-bottom: 0;
    padding: 0;
  }
}
.staff-license__item {
  font-size: var(--font-base);
}
@container (min-width: 768px) {
  .staff-license__item {
    font-size: var(--font-pc-base);
  }
}
.staff-license__item::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 1px;
  margin-right: 8px;
  border-radius: 1px;
  background-color: var(--color-bg-light);
  vertical-align: middle;
}

/* ------------------------------
  staff-name
------------------------------ */
.staff-name {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-block: 0;
  color: var(--brand-main-500);
  font-size: var(--font-heading-xl);
  font-weight: var(--font-weight-medium);
  letter-spacing: var(--letter-spacing-lg);
  line-height: var(--line-height-xs);
}
@container (min-width: 768px) {
  .staff-name {
    font-size: var(--font-pc-heading-md);
  }
}
.staff-name span {
  opacity: 0.5;
  color: var(--brand-main-500);
  font-size: var(--font-base);
}
@container (min-width: 768px) {
  .staff-name span {
    font-size: var(--font-pc-base);
  }
}

/* ------------------------------
  tab
------------------------------ */
.tab {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 390px;
  margin-block: 0 20px;
  padding: 4px;
  column-gap: 4px;
  border-radius: 3px;
  background-color: var(--color-bg);
  list-style: none;
}
@container (min-width: 768px) {
  .tab {
    margin-bottom: 48px;
  }
}
@container (min-width: 1280px) {
  .tab {
    grid-template-columns: 1fr;
    margin-bottom: 0;
    padding: 8px;
    border-radius: 6px;
  }
}
.tab__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px 12px;
  column-gap: 10px;
  transition: background-color 0.2s ease;
  border: 0;
  border-radius: 3px;
  background-color: var(--color-bg);
  color: var(--brand-main-500);
  font-size: var(--font-heading-sm);
  font-weight: var(--font-weight-bold);
  text-decoration: none;
}
@container (min-width: 1280px) {
  .tab__link {
    justify-content: flex-start;
    padding-inline: 20px;
    border-radius: 6px;
  }
}
.tab__link[aria-selected=true] {
  background-color: var(--brand-white);
  box-shadow: 2px 4px 16px rgba(0, 0, 0, 0.07);
}
@media (any-hover: hover) {
  .tab__link[aria-selected=false]:hover {
    background-color: var(--color-bg-transparent);
  }
}
.tab__link::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background-color: var(--brand-accent-red);
}

/* ------------------------------
  table
------------------------------ */
.table {
  width: 100%;
  margin-top: 16px;
  overflow: hidden;
  table-layout: fixed;
  border-spacing: 1px;
  border-collapse: separate;
  border-radius: 6px;
  background-color: var(--brand-black-100);
}
@container (min-width: 768px) {
  .table {
    margin-top: 32px;
  }
}
.modal-form .table {
  margin-top: 0;
}
.table thead {
  color: var(--brand-main-500);
}
.table th {
  padding: 10px;
  background-color: var(--color-bg);
  color: var(--brand-main-500);
  font-weight: var(--font-weight-regular);
}
.table th[data-size=sm] {
  width: 114px;
}
@container (min-width: 768px) {
  .table th[data-size=sm] {
    width: 200px;
  }
}
@container (min-width: 768px) {
  .table th {
    padding: 16px;
    font-weight: var(--font-weight-bold);
  }
}
.table td {
  padding: 10px;
  background-color: var(--brand-white);
  text-align: center;
}
.table td[data-text=left] {
  text-align: left;
}
@container (min-width: 768px) {
  .table td {
    padding: 16px;
    font-weight: var(--font-weight-bold);
  }
}

/* ------------------------------
  table-data
------------------------------ */
.table-data {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.table-data th {
  width: 62px;
  padding: 10px 4px;
  border-top: 1px solid var(--brand-main-500);
  color: var(--brand-main-500);
  font-size: var(--font-base);
  vertical-align: top;
}
@container (min-width: 768px) {
  .table-data th {
    width: 80px;
    padding: 16px 10px;
    font-size: var(--font-pc-sm);
  }
}
.table-data td {
  padding: 10px 12px;
  border-top: 1px solid var(--color-border);
  font-size: var(--font-base);
}
@container (min-width: 768px) {
  .table-data td {
    padding: 16px 12px;
    font-size: var(--font-pc-sm);
  }
}
.table-data--about th {
  width: 70px;
  border-top: none;
  border-bottom: 1px solid var(--brand-main-500);
}
@container (min-width: 768px) {
  .table-data--about th {
    width: 160px;
  }
}
.table-data--about td {
  border-top: none;
  border-bottom: 1px solid var(--color-border);
}
.table-data__note {
  font-weight: var(--font-weight-regular);
}

/* ------------------------------
  text
------------------------------ */
.text {
  margin-block: 16px;
  font-size: var(--font-base);
}
.article--seminar .text {
  margin-block: 0;
}
@container (min-width: 768px) {
  .text {
    margin-block: 20px;
    font-size: var(--font-pc-base);
  }
}
.text:first-child {
  margin-top: 0;
}
.text:last-child {
  margin-bottom: 0;
}
.text__attention {
  color: var(--error);
}

/* ------------------------------
  text-intro
------------------------------ */
.text-intro {
  margin-block: 20px;
  color: var(--brand-main-500);
  font-size: var(--font-base);
  line-height: var(--line-height-lg);
}
@container (min-width: 768px) {
  .text-intro {
    margin-block: 0;
    font-size: var(--font-pc-heading-sm);
  }
}

/* ------------------------------
  text-note
------------------------------ */
.text-note {
  display: flex;
  align-items: flex-start;
  margin-block: 8px 0;
  color: var(--text-support);
  font-size: var(--font-sm);
}
@container (min-width: 768px) {
  .text-note {
    font-size: var(--font-pc-sm);
  }
}
.text-note span {
  min-width: 24px;
}
@container (min-width: 768px) {
  .text-note span {
    min-width: 26px;
    text-align: center;
  }
}

/* ------------------------------
  treatment-list
------------------------------ */
.treatment-list {
  margin-block: 0;
  padding-left: 0;
  list-style: none;
}
@container (min-width: 1024px) {
  .treatment-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.article .treatment-list {
  display: grid;
  row-gap: 24px;
}
@container (min-width: 1024px) {
  .article .treatment-list {
    row-gap: 0;
    margin-block: 40px;
    border: 1px solid var(--color-border);
    border-radius: 6px;
  }
}
.treatment-list__item {
  display: grid;
  grid-template-areas: "icon title" "icon description" "icon target" "button button";
  grid-template-columns: 50px 1fr;
  align-items: flex-start;
  padding: 24px 20px;
  column-gap: 16px;
  border-top: 1px solid var(--color-border);
}
@container (min-width: 1024px) {
  .treatment-list__item {
    grid-template-columns: 80px 1fr;
    padding: 40px;
    column-gap: 28px;
  }
  .treatment-list__item:nth-child(odd) {
    border-right: 1px solid var(--color-border);
  }
}
.article .treatment-list__item {
  border: 1px solid var(--color-border);
  border-radius: 6px;
}
@container (min-width: 1024px) {
  .article .treatment-list__item {
    border-width: 1px 0 0;
    border-radius: 0;
  }
  .article .treatment-list__item:nth-child(-n+2) {
    border-top-width: 0;
  }
  .article .treatment-list__item:nth-child(odd) {
    border-right-width: 1px;
  }
}
.treatment-list__icon {
  grid-area: icon;
  width: 50px;
  height: 50px;
}
@container (min-width: 1024px) {
  .treatment-list__icon {
    width: 80px;
    height: 80px;
  }
}
.treatment-list__title {
  grid-area: title;
  margin-block: 0;
  color: var(--brand-main-500);
  font-size: var(--font-heading-md);
  font-weight: var(--font-weight-bold);
}
@container (min-width: 768px) {
  .treatment-list__title {
    font-size: var(--font-pc-heading-sm);
  }
}
.treatment-list__description {
  grid-area: description;
  margin-block: 4px 0;
  font-size: var(--font-sm);
  line-height: var(--line-height-sm);
}
@container (min-width: 768px) {
  .treatment-list__description {
    margin-top: 20px;
    font-size: var(--font-pc-base);
  }
}
.treatment-list__button {
  display: grid;
  grid-area: button;
  grid-template-columns: 1fr 1fr;
  margin-top: 20px;
  column-gap: 12px;
}
@container (min-width: 768px) {
  .treatment-list__button {
    margin-top: 32px;
    column-gap: 16px;
  }
}

/* ------------------------------
  treatment-target
------------------------------ */
.treatment-target {
  display: grid;
  grid-area: target;
  grid-template-columns: 38px 1fr;
  margin-block: 8px 0;
  column-gap: 10px;
  color: var(--text-support);
  font-size: var(--font-sm);
  line-height: var(--line-height-sm);
}
@container (min-width: 768px) {
  .treatment-target {
    grid-template-columns: 60px 1fr;
    font-size: var(--font-pc-sm);
  }
}
.treatment-target__title {
  border-right: 1px solid var(--color-border);
}
.treatment-target__text {
  margin-left: 0;
}

/* ------------------------------
  u-attention
------------------------------ */
.u-attention {
  color: var(--error);
}

/* ------------------------------
  has-inline-color
------------------------------ */
.has-inline-color[style*="background-color: #8ed1fc"] {
  background: linear-gradient(var(--brand-white) 69%, rgba(181, 200, 252, 0.5) 70%, rgba(181, 200, 252, 0.5) 100%);
  background-color: transparent !important;
  color: var(--brand-main-500);
}
.has-inline-color[style*="background-color: #f78da7"] {
  background: linear-gradient(var(--brand-white) 69%, rgba(245, 190, 210, 0.5) 70%, rgba(245, 190, 210, 0.5) 100%);
  background-color: transparent !important;
  color: var(--brand-main-500);
}

/* ------------------------------
  has-text-align
------------------------------ */
.has-text-align-right {
  text-align: right;
}

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

/* ------------------------------
  lead-ellipsis
------------------------------ */
.lead-ellipsis::before {
  content: "...";
}

/* ------------------------------
  pagination
------------------------------ */
.pagination {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 4px;
  border-radius: 100vh;
  background-color: var(--color-bg);
}
@container (min-width: 768px) {
  .pagination {
    position: relative;
    justify-content: center;
    padding: 20px;
    column-gap: 3px;
  }
}
.pagination .pages {
  align-self: center;
  color: var(--brand-main-500);
  font-family: var(--font-family-en);
  font-size: var(--font-heading-sm);
  font-weight: var(--font-weight-medium);
}
@container (min-width: 768px) {
  .pagination .pages {
    display: none;
  }
}
.pagination .page-numbers {
  display: grid;
  place-content: center;
  width: 36px;
  height: 36px;
  transition: transform 0.2s ease;
  border-radius: 100%;
  background-color: var(--color-bg);
  color: var(--brand-main-500);
  font-family: var(--font-family-en);
  font-size: var(--font-heading-sm);
  font-weight: var(--font-weight-medium);
  text-decoration: none;
}
@container (max-width: 767.9px) {
  .pagination .page-numbers {
    display: none;
  }
  .pagination .page-numbers:first-child, .pagination .page-numbers:last-child {
    display: grid;
  }
}
@container (min-width: 768px) {
  .pagination .page-numbers {
    width: 44px;
    height: 42px;
    padding-top: 2px;
    font-size: var(--font-pc-sm);
    line-height: 1;
  }
}
@media (any-hover: hover) {
  .pagination .page-numbers:not(.dots, .current):hover {
    background-color: var(--color-bg-transparent);
  }
}
.pagination .page-numbers.current {
  background-color: var(--brand-white);
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.08);
}
.pagination .dots {
  align-self: flex-end;
  height: fit-content;
  background-color: transparent;
  box-shadow: none;
}
.pagination .disabled {
  width: 36px;
  height: 36px;
  border-radius: 100%;
  opacity: 0.1;
  pointer-events: none;
}
@container (min-width: 768px) {
  .pagination .disabled {
    width: 44px;
    height: 44px;
  }
}
.pagination .prev {
  display: grid;
  position: relative;
  margin-right: auto;
  background-color: var(--text);
  color: transparent;
}
.pagination .prev::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  transform: translate(-50%, -50%) rotate(180deg);
  background-color: var(--brand-white);
  mask: url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/icon/ico_arrow.svg") no-repeat center/contain;
}
@container (min-width: 768px) {
  .pagination .prev::before {
    width: 20px;
    height: 20px;
  }
}
.pagination .next {
  display: grid;
  position: relative;
  margin-left: auto;
  background-color: var(--text);
  color: transparent;
}
.pagination .next::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  transform: translate(-50%, -50%);
  background-color: var(--brand-white);
  mask: url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/icon/ico_arrow.svg") no-repeat center/contain;
}
@container (min-width: 768px) {
  .pagination .next::before {
    width: 20px;
    height: 20px;
  }
}

/* ------------------------------
  wp-block-image
------------------------------ */
.wp-block-image {
  margin: 32px 0 0;
}
@container (min-width: 768px) {
  .wp-block-image {
    margin-top: 40px;
  }
}
.wp-block-image.pc-img {
  display: none !important;
}
@container (min-width: 768px) {
  .wp-block-image.pc-img {
    display: block !important;
  }
}
.wp-block-image.sp-img {
  display: block !important;
}
@container (min-width: 768px) {
  .wp-block-image.sp-img {
    display: none !important;
  }
}
.wp-block-image img {
  display: block;
  margin-inline: auto;
}

/* ------------------------------
  wp-block-list
------------------------------ */
.wp-block-list {
  margin-block: 16px 0;
  padding-left: 0;
  list-style: none;
}
.article-box-list .wp-block-list {
  margin-top: 0;
}
.wp-block-list li {
  font-size: var(--font-base);
}
@container (min-width: 768px) {
  .wp-block-list li {
    font-size: var(--font-pc-base);
  }
}
.wp-block-list li::before {
  content: "";
  margin-right: 10px;
  vertical-align: 2px;
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background-color: var(--brand-main-500);
}
li > .wp-block-list {
  margin-top: 8px;
  margin-left: 14px;
}
li > .wp-block-list li::before {
  border: 1px solid var(--brand-main-500);
  background-color: var(--brand-white);
}
li li > .wp-block-list li::before {
  border-radius: 0;
  background-color: var(--brand-main-500);
}

/* ------------------------------
  wp-block-quote
------------------------------ */
.wp-block-quote {
  margin: 32px 0 0;
  padding-left: 20px;
  color: var(--text-support);
}
@container (min-width: 768px) {
  .wp-block-quote {
    margin-top: 40px;
  }
}
.wp-block-quote::before {
  content: "";
  display: block;
  height: 20px;
  margin-bottom: 8px;
  transform: translateX(-20px);
  background: url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/article/bg_quote.svg") no-repeat left top/auto 100%;
}
@container (min-width: 768px) {
  .wp-block-quote::before {
    height: 28px;
  }
}

/* ------------------------------
  wp-element-caption
------------------------------ */
.wp-element-caption {
  margin-block: 8px 0;
  color: var(--text-support);
  font-size: var(--font-pc-sm);
  text-align: center;
}

/* ------------------------------
  about-description
------------------------------ */
.about-description__heading {
  margin-block: 0;
  font-size: var(--font-heading-xl);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-lg);
  line-height: var(--line-height-base);
}
@container (min-width: 768px) {
  .about-description__heading {
    font-size: var(--font-pc-heading-lg);
  }
}
.about-description__content {
  display: flex;
  flex-direction: column;
  margin-top: 16px;
  gap: 9px;
  padding-left: 32px;
}
@container (min-width: 768px) {
  .about-description__content {
    margin-top: 40px;
    gap: 16px;
    padding-left: 0;
  }
}
.about-description__content p {
  margin-block: 0;
  line-height: var(--line-height-lg);
}
.about-description__image {
  margin-top: 40px;
  margin-right: -24px;
  margin-left: -24px;
  overflow: hidden;
}
@container (min-width: 768px) {
  .about-description__image {
    margin-right: 0;
    margin-left: 0;
    border-radius: 6px;
  }
}

/* ------------------------------
  about-history
------------------------------ */
.about-history {
  margin-bottom: 40px;
}
@container (min-width: 768px) {
  .about-history {
    margin-bottom: 80px;
  }
}
.about-history__list {
  margin-block: 0;
  padding-left: 0;
  list-style: none;
}
.about-history__item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 16px;
  padding: 18px 8px;
  border-bottom: 1px solid var(--brand-gray);
}
@container (min-width: 768px) {
  .about-history__item {
    grid-template-columns: 100px 1fr;
    gap: 24px;
    padding: 22px 16px;
  }
}
.about-history__item--profile {
  grid-template-columns: 1fr;
  gap: 12px;
}
@container (min-width: 768px) {
  .about-history__item--profile {
    gap: 20px;
  }
}
.about-history__date {
  width: 70px;
  color: var(--brand-main-500);
  font-family: var(--font-family-en);
  font-size: var(--font-base);
  letter-spacing: var(--letter-spacing-en);
}
@container (min-width: 768px) {
  .about-history__date {
    width: 100px;
    font-size: var(--font-pc-base);
    text-align: center;
  }
}
.about-history__body--profile {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 16px;
}
@container (min-width: 768px) {
  .about-history__body--profile {
    grid-template-columns: 100px 1fr;
    gap: 24px;
  }
}
.about-history__image {
  margin-block: 0;
  margin-inline: 0;
}
.about-history__position {
  margin-block: 0;
  color: var(--brand-main-500);
  font-size: var(--font-base);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-xs);
}
@container (min-width: 768px) {
  .about-history__position {
    margin-bottom: 4px;
    font-size: var(--font-pc-sm);
  }
}
.about-history__name {
  display: flex;
  align-items: center;
  margin-top: 0;
  margin-bottom: 8px;
  gap: 8px;
  color: #323232;
  font-size: var(--font-heading-md);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-xs);
}
@container (min-width: 768px) {
  .about-history__name {
    font-size: 20px;
    gap: 12px;
  }
}
.about-history__name span {
  opacity: 0.5;
  color: var(--brand-main-500);
  font-size: var(--font-base);
  font-weight: var(--font-weight-regular);
}
@container (min-width: 768px) {
  .about-history__name span {
    font-size: var(--font-pc-sm);
  }
}
.about-history__note {
  position: relative;
  margin-top: 2px;
  margin-bottom: 0;
  padding-left: 14px;
  color: #323232;
  font-size: var(--font-base);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-lg);
}
@container (min-width: 768px) {
  .about-history__note {
    font-size: var(--font-pc-base);
  }
}
.about-history__note:first-of-type {
  margin-top: 0;
}
.about-history__note::before {
  content: "";
  display: block;
  position: absolute;
  top: 13px;
  left: 0;
  width: 6px;
  height: 1px;
  background-color: var(--brand-black-300);
}
@container (min-width: 768px) {
  .about-history__note::before {
    top: 16px;
  }
}

/* ------------------------------
  about-feature
------------------------------ */
.about-feature__heading {
  font-size: var(--font-heading-xl);
  font-weight: var(--letter-spacing-lg);
  line-height: var(--line-height-xs);
}
@container (min-width: 768px) {
  .about-feature__heading {
    font-size: var(--font-pc-heading-lg);
  }
}
.about-feature__list {
  margin-top: 24px;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}
@container (min-width: 768px) {
  .about-feature__list {
    margin-top: 40px;
  }
}
.about-feature__item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 20px;
  margin-top: 32px;
}
@container (min-width: 768px) {
  .about-feature__item {
    grid-template-columns: 40px 1fr;
    gap: 36px;
    margin-top: 40px;
  }
}
.about-feature__item:first-child {
  margin-top: 0;
}
.about-feature__value {
  position: relative;
  padding-top: 12px;
  border-top: 1px solid var(--gradient-brand);
  color: var(--brand-main-500);
  font-family: var(--font-family-en);
  font-size: 16px;
  text-align: center;
}
@container (min-width: 768px) {
  .about-feature__value {
    padding-top: 20px;
    font-size: 20px;
  }
}
.about-feature__value::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gradient-brand);
}
.about-feature__content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@container (min-width: 768px) {
  .about-feature__content {
    flex-direction: row;
    gap: 36px;
  }
}
.about-feature__image {
  flex-shrink: 0;
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
}
@container (min-width: 768px) {
  .about-feature__image {
    max-width: 381px;
  }
}
.about-feature__title {
  margin-block: 0;
  font-size: var(--font-heading-lg);
  font-weight: var(--letter-spacing-lg);
  line-height: var(--line-height-xs);
}
.about-feature__text {
  margin-top: 11px;
  margin-bottom: 0;
  font-size: var(--font-base);
  font-weight: var(--font-weight-regular);
}
@container (min-width: 768px) {
  .about-feature__text {
    margin-top: 20px;
  }
}
.about-feature__button {
  margin-top: 28px;
}
@container (min-width: 768px) {
  .about-feature__button {
    margin-top: 20px;
  }
}

/* ------------------------------
  aid
  既存ソース用
------------------------------ */
.aid .ly-page-header,
.aid .ly-page-footer {
  padding-inline: 0;
}
.aid .ly-bottom-nav {
  display: none;
}
.aid .title__lv2 {
  position: relative;
  margin-block: 40px 0;
  padding-bottom: 14px;
  font-size: var(--font-heading-lg);
  font-weight: var(--font-weight-bold);
}
@container (min-width: 768px) {
  .aid .title__lv2 {
    margin-top: 80px;
    padding-bottom: 20px;
    font-size: var(--font-pc-heading-md);
  }
}
.aid .title__lv2:first-child {
  margin-top: 0;
}
.aid .title__lv2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gradient-brand);
}
@container (min-width: 768px) {
  .aid .title__lv2::after {
    width: 60px;
    height: 4px;
  }
}
.aid .form__body {
  margin-top: 24px;
  padding: 24px 20px;
  border-radius: 6px;
  background-color: var(--color-bg-main);
}
@container (min-width: 768px) {
  .aid .form__body {
    margin-top: 32px;
    padding: 40px;
    border-radius: 12px;
  }
}
.aid .form__body:first-child {
  margin-top: 0;
}
.aid .form__field {
  display: block;
  margin-top: 24px;
}
@container (min-width: 768px) {
  .aid .form__field {
    display: grid;
    grid-template-columns: min(40%, 314px) 1fr;
    margin-top: 0;
    column-gap: 16px;
  }
}
.aid .form__field:first-child {
  margin-top: 0;
}
.aid .form__inner--title,
.aid .form__label {
  display: block;
  margin-block: 0;
  padding: 0 10px 16px;
  border-bottom: 1px solid var(--color-border);
  color: var(--brand-main-500);
  font-size: var(--font-base);
}
@container (min-width: 768px) {
  .aid .form__inner--title,
  .aid .form__label {
    padding-block: 16px 30px;
    font-size: var(--font-pc-base);
  }
}
.aid .inputStyle, .aid .inputStyle04, .aid .inputStyle03, .aid .inputStyle02 {
  box-sizing: border-box;
  padding: 8px 12px;
  border: 0;
  border-radius: 6px;
  background-color: var(--brand-white);
  font-size: var(--font-pc-base);
}
@container (min-width: 768px) {
  .aid .inputStyle, .aid .inputStyle04, .aid .inputStyle03, .aid .inputStyle02 {
    padding-block: 10px;
  }
}
.aid .inputStyle[disabled], .aid [disabled].inputStyle04, .aid [disabled].inputStyle03, .aid [disabled].inputStyle02 {
  background-color: var(--color-bg-disabled);
}
.aid .inputStyle02 {
  width: 68px;
  margin-right: 4px;
}
@container (min-width: 768px) {
  .aid .inputStyle02 {
    width: 80px;
  }
}
.aid .inputStyle03 {
  width: 120px;
  margin-block: 3px;
}
@container (min-width: 768px) {
  .aid .inputStyle03 {
    width: 140px;
  }
}
.aid .inputStyle04 {
  width: 100%;
}
.aid .radio {
  display: inline-flex;
  position: relative;
  align-items: center;
  min-width: 80px;
  column-gap: 8px;
}
@container (min-width: 768px) {
  .aid .radio {
    min-width: 112px;
  }
}
.aid .radio::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background-color: var(--brand-white);
}
.aid .radio:has(:checked)::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--brand-main-400);
}
@container (min-width: 768px) {
  .aid .radio:has(:checked)::after {
    top: 8px;
  }
}
.aid .radio input {
  position: absolute;
  opacity: 0;
}
.aid .selectStyle02 {
  width: 180px;
  padding: 10px 40px 10px 12px;
  border: 1px solid var(--brand-white);
  border-radius: 6px;
  background: var(--brand-white) url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/icon/ico_arrow_down.svg") no-repeat right 16px center/16px;
  color: var(--text);
  font-size: var(--font-base);
  appearance: none;
}
@container (min-width: 768px) {
  .aid .selectStyle02 {
    width: 180px;
    padding-block: 12px;
    font-size: var(--font-pc-base);
  }
}
.aid .button-form,
.aid button:not(.js-modal-close) {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  margin: 24px auto 0;
  padding-inline: 34px;
  border: 0;
  border-radius: 100vh;
  background-color: var(--brand-main-500);
  color: var(--brand-white);
  font-size: var(--font-base);
  font-weight: var(--font-weight-bold);
  text-decoration: none;
}
@container (min-width: 768px) {
  .aid .button-form,
  .aid button:not(.js-modal-close) {
    width: fit-content;
    max-width: 100%;
    margin-top: 40px;
    font-size: 15px;
  }
}
.aid .button-form::before,
.aid button:not(.js-modal-close)::before {
  content: "";
  position: absolute;
  transition: opacity 0.2s ease;
  border-radius: 100vh;
  opacity: 0;
  background-color: rgba(255, 255, 255, 0.25);
  pointer-events: none;
  inset: 0;
}
.aid .button-form::after,
.aid button:not(.js-modal-close)::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 8px;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  background-color: var(--brand-white);
  mask: url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/icon/ico_arrow.svg") no-repeat center/10px;
}
@container (min-width: 768px) {
  .aid .button-form::after,
  .aid button:not(.js-modal-close)::after {
    width: 24px;
    height: 24px;
  }
}
@media (any-hover: hover) {
  .aid .button-form:hover::before,
  .aid button:not(.js-modal-close):hover::before {
    opacity: 1;
  }
}
.aid .form__button {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.aid .form__button button,
.aid .form__button a {
  margin-inline: 0;
}
.aid .form__button a {
  background-color: var(--brand-main-100);
  color: var(--brand-main-500);
}
.aid .form__button a::before {
  background-color: rgba(0, 0, 0, 0.08);
}
.aid .form__button a::after {
  background-color: var(--brand-main-500);
}
.aid .form__button a:not(:last-child)::after {
  right: auto;
  left: 8px;
  transform: translateY(-50%) rotate(180deg);
}
.aid p:not(.heading02) {
  margin-block: 16px;
  font-size: var(--font-base);
}
@container (min-width: 768px) {
  .aid p:not(.heading02) {
    margin-block: 20px;
    font-size: var(--font-pc-base);
  }
}
.aid p:not(.heading02):first-child {
  margin-top: 0;
}
.aid p:not(.heading02):last-child {
  margin-bottom: 0;
}
.aid .js-modal-trigger {
  color: var(--brand-main-500);
}

#complete_area {
  text-align: center;
}
#complete_area + .form__button {
  display: flex;
  justify-content: center;
  gap: 16px;
}
#complete_area + .form__button button,
#complete_area + .form__button a {
  margin-inline: 0;
}
#complete_area + .form__button a,
#complete_area + .form__button .js-modal-trigger {
  background-color: var(--brand-main-100);
  color: var(--brand-main-500);
}
#complete_area + .form__button a::before,
#complete_area + .form__button .js-modal-trigger::before {
  background-color: rgba(0, 0, 0, 0.08);
}
#complete_area + .form__button a::after,
#complete_area + .form__button .js-modal-trigger::after {
  background-color: var(--brand-main-500);
}
#complete_area .js-modal-trigger {
  color: var(--brand-main-500);
}

.mfp-wrap {
  display: grid;
  position: absolute;
  z-index: 1000;
  top: 0;
  left: 0;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 20px 8px;
  background-color: rgba(0, 0, 0, 0.4);
}

.mfp-container {
  width: fit-content;
  height: fit-content;
}
@container (min-width: 768px) {
  .mfp-container {
    display: grid;
    place-content: center;
    width: 100%;
    height: 100%;
  }
}

.mfp-content {
  position: relative;
  width: calc(100vw - 24px);
  padding: 40px 20px;
  transition: bottom 0.3s ease, opacity 0.3s ease;
  border-radius: 6px;
  background-color: var(--brand-white);
}
@container (min-width: 768px) {
  .mfp-content {
    right: auto;
    width: 800px;
    overflow: hidden;
    filter: drop-shadow(-20px 20px 40px rgba(0, 0, 0, 0.1));
  }
}
.mfp-content .title__lv3 {
  position: relative;
  margin-block: 40px 0;
  padding-bottom: 14px;
  font-size: var(--font-heading-lg);
  font-weight: var(--font-weight-bold);
}
@container (min-width: 768px) {
  .mfp-content .title__lv3 {
    margin-top: 80px;
    padding-bottom: 20px;
    font-size: var(--font-pc-heading-md);
  }
}
.mfp-content .title__lv3:first-child {
  margin-top: 0;
}
.mfp-content .title__lv3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gradient-brand);
}
@container (min-width: 768px) {
  .mfp-content .title__lv3::after {
    width: 60px;
    height: 4px;
  }
}
.mfp-content p {
  margin-block: 16px;
  font-size: var(--font-base);
}
@container (min-width: 768px) {
  .mfp-content p {
    margin-block: 20px;
    font-size: var(--font-pc-base);
  }
}

.mfp-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
  border: 0;
  background-color: var(--brand-white);
}
@media (any-hover: hover) {
  .mfp-close:hover {
    opacity: 0.7;
  }
}

/* ------------------------------
  appointment-banner
------------------------------ */
.appointment-banner {
  padding: 30px 28px;
  background-color: var(--color-bg);
}
@container (min-width: 768px) {
  .appointment-banner {
    grid-template-columns: repeat(2, 1fr);
    align-items: flex-end;
    padding: 40px;
  }
  .appointment-banner div:last-child {
    align-self: flex-start;
  }
}

/* ------------------------------
  form
------------------------------ */
.appointment-content {
  margin-top: 32px;
}
@container (min-width: 768px) {
  .appointment-content {
    margin-top: 40px;
  }
}
.heading02 + .appointment-content {
  margin-top: 24px;
}
@container (min-width: 768px) {
  .heading02 + .appointment-content {
    margin-top: 32px;
  }
}
.appointment-content .text {
  margin-top: 16px;
}

/* ------------------------------
  appointment-select
------------------------------ */
.appointment-select {
  display: grid;
  margin-top: 32px;
  gap: 32px;
}
@container (min-width: 768px) {
  .appointment-select {
    gap: 24px;
  }
}
.appointment-select__box {
  border: 2px solid var(--brand-main-100);
  border-radius: 6px;
  color: var(--brand-main-500);
}
.appointment-select__title {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  padding: 16px;
  background-color: var(--brand-main-100);
}
.appointment-select__note {
  font-size: var(--font-sm);
}
@container (min-width: 768px) {
  .appointment-select__note {
    align-self: flex-end;
    font-size: var(--font-pc-sm);
  }
}
.appointment-select__price {
  margin-left: auto;
}
.appointment-select__add {
  padding: 24px 16px;
}
.appointment-select__text {
  margin-block: 0 4px;
  font-size: var(--font-base);
}
@container (min-width: 768px) {
  .appointment-select__text {
    font-size: var(--font-pc-base);
  }
}
.appointment-select__option {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
}
.appointment-select__option:not(:last-child) {
  margin-bottom: 16px;
}
.appointment-select__option-price {
  width: 100%;
  text-align: right;
}
@container (min-width: 768px) {
  .appointment-select__option-price {
    width: auto;
    margin-left: auto;
  }
}

/* ------------------------------
  appointment-type
------------------------------ */
.appointment-type__item {
  margin-top: 16px;
  padding: 24px 20px;
  border-radius: 6px;
  background-color: var(--color-bg);
}
@container (min-width: 768px) {
  .appointment-type__item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 24px;
    padding: 24px;
    column-gap: 24px;
  }
}
.appointment-type__item:first-child {
  margin-top: 0;
}
.appointment-type .heading03 {
  margin-block: 0 12px;
}
.appointment-type .button {
  width: 100%;
}

/* ------------------------------
  check
  既存ソース用
------------------------------ */
.check-contents {
  font-family: "Yu Gothic", YuGothic, "YuGothic L", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Verdana, Meiryo, "M+ 1p", sans-serif;
  font-size: 16px;
}
.check-contents__inner {
  box-sizing: content-box;
  max-width: 950px;
  margin-inline: auto;
  padding: 40px 24px;
}
@container (min-width: 768px) {
  .check-contents__inner {
    padding-inline: 62px;
  }
}
@container (min-width: 1024px) {
  .check-contents__inner {
    padding-block: 100px;
  }
}
.check-contents {
  /* ------------------------------
    common
  ------------------------------ */
}
.check-contents *,
.check-contents ::after,
.check-contents ::before {
  box-sizing: border-box;
  background-repeat: no-repeat;
}
.check-contents ::after,
.check-contents ::before {
  text-decoration: inherit;
  vertical-align: inherit;
}
.check-contents a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  touch-action: manipulation;
  color: #193b87;
}
.check-contents a:hover {
  outline-width: 0;
  -webkit-text-decoration: none;
  text-decoration: none;
}
.check-contents a:not([class]) {
  color: #193b87;
  -webkit-text-decoration: none;
  text-decoration: none;
}
.check-contents a:not([class]):hover {
  -webkit-text-decoration: underline;
  text-decoration: underline;
}
.check-contents small {
  font-size: 83.3333%;
}
.check-contents table {
  border-spacing: 0;
  border-collapse: collapse;
  border-color: inherit;
  text-indent: 0;
}
.check-contents table td,
.check-contents table th {
  text-align: left;
}
.check-contents {
  /* ------------------------------
    icon
  ------------------------------ */
}
.check-contents .i-beginner {
  display: inline-block;
  margin: 0 10px;
  vertical-align: middle;
}
.check-contents .i-beginner:first-child {
  margin-left: 0;
}
.check-contents .i-beginner:last-child {
  margin-right: 0;
}
.check-contents .i-beginner::before {
  content: "";
  display: block;
  width: 20px;
  height: 24px;
  background-image: url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/check/i-beginner.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: contain;
}
.check-contents {
  /* ------------------------------
    title
  ------------------------------ */
}
.check-contents .title__lv2 {
  position: relative;
  margin: 100px 0 50px -50px;
  padding: 0 0 5px;
  border-bottom: 1px dashed #193b87;
  font-family: "游明朝", "Yu Mincho", "游明朝体", YuMincho, "Sawarabi Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 175%;
  font-weight: 100;
}
@media (width <= 768px) {
  .check-contents .title__lv2 {
    margin: 50px 0 25px -10px;
    font-size: 137.5%;
  }
}
.check-contents .title__lv2::after,
.check-contents .title__lv2::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  height: 3px;
  transform: translateY(50%);
  background: #193b87;
}
.check-contents .title__lv2::before {
  left: 0;
  width: 3px;
  border-radius: 100%;
}
.check-contents .title__lv2::after {
  left: 5px;
  width: 33px;
  border-radius: 2px;
}
.check-contents {
  /* ------------------------------
    text
  ------------------------------ */
}
.check-contents .text__bold {
  font-weight: 700;
}
.check-contents .text__accent {
  color: #193b87;
}
.check-contents {
  /* ------------------------------
    table
  ------------------------------ */
}
.check-contents .table {
  margin-right: 0;
  margin-left: 0;
}
.check-contents .table table {
  border-collapse: collapse;
}
.check-contents .table table td,
.check-contents .table table th {
  border: 1px solid #e9e9e9;
}
.check-contents {
  /* ------------------------------
    c-step
  ------------------------------ */
}
.check-contents .c-step-title {
  margin: 0;
  padding: 2px 15px;
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
  background: #193b87;
  color: #fff;
  font-family: "游明朝", "Yu Mincho", "游明朝体", YuMincho, "Sawarabi Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 38px;
  font-weight: 400;
  letter-spacing: 3px;
  text-align: center;
}
@media (width <= 992px) {
  .check-contents .c-step-title {
    font-size: 18px;
  }
}
.check-contents .c-step-flow {
  display: flex;
  margin: 0;
  padding: 0;
  border-bottom: 10px solid #bac4db;
  list-style: none;
}
@media (width <= 992px) {
  .check-contents .c-step-flow {
    display: block;
  }
}
.check-contents .c-step-flow > li {
  position: relative;
  width: 33.33333%;
  min-width: 33.33333%;
}
@media (width <= 992px) {
  .check-contents .c-step-flow > li {
    width: 100%;
    min-width: 100%;
    padding-left: 50px;
  }
}
.check-contents .c-step-flow > li:not(:first-child) {
  border-left: 1px solid #bac4db;
}
@media (width <= 992px) {
  .check-contents .c-step-flow > li:not(:first-child) {
    border-bottom: 1px solid #bac4db;
    border-left: none;
  }
}
.check-contents .c-step-flow > li::after,
.check-contents .c-step-flow > li::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 100%;
  transform: translate3d(0, -50%, 10px);
  border-width: 13px 0 13px 6px;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
}
@media (width <= 992px) {
  .check-contents .c-step-flow > li::after,
  .check-contents .c-step-flow > li::before {
    top: 100%;
    left: 50%;
    transform: translate3d(-50%, 0, 10px);
    transform-origin: top center;
    border-width: 6px 13px 0;
    border-top-color: #fff;
    border-left-color: transparent;
  }
}
.check-contents .c-step-flow > li::before {
  border-width: 14px 0 14px 7px;
  border-left-color: #bac4db;
}
@media (width <= 992px) {
  .check-contents .c-step-flow > li::before {
    border-width: 7px 14px 0;
    border-top-color: #bac4db;
    border-left-color: transparent;
  }
}
.check-contents .c-step-flow > li.active {
  background: #f2f3f8;
}
.check-contents .c-step-flow > li.active::after {
  border-left-color: #f2f3f8;
}
@media (width <= 992px) {
  .check-contents .c-step-flow > li.active::after {
    border-top-color: #f2f3f8;
    border-left-color: transparent;
  }
}
.check-contents .c-step-flow > li:last-child::after,
.check-contents .c-step-flow > li:last-child::before {
  content: none;
}
.check-contents .c-step-flow > li > span {
  display: block;
  width: 40px;
  height: 40px;
  margin: 20px auto 5px;
  padding: 9px;
  border-radius: 100%;
  background: #bac4db;
  color: #fff;
  font-family: "游明朝", "Yu Mincho", "游明朝体", YuMincho, "Sawarabi Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 22px;
  font-style: italic;
  line-height: 1;
  text-align: center;
  text-indent: -0.15em;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.12);
}
@media (width <= 992px) {
  .check-contents .c-step-flow > li > span {
    position: absolute;
    top: 50%;
    left: 10px;
    width: 30px;
    height: 30px;
    margin: 0;
    transform: translateY(-50%);
    font-size: 14px;
  }
}
.check-contents .c-step-flow > li > div {
  padding: 0 10px 15px;
  color: #193b87;
  font-family: "游明朝", "Yu Mincho", "游明朝体", YuMincho, "Sawarabi Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 18px;
  text-align: center;
}
@media (width <= 992px) {
  .check-contents .c-step-flow > li > div {
    padding: 10px;
    font-size: 16px;
    text-align: left;
  }
}
.check-contents .c-step-body {
  border: 1px solid #bac4db;
  border-top: 0 solid #bac4db;
}
.check-contents .c-step-question {
  position: relative;
  margin: 60px 0 40px;
  padding: 0 50px 0 155px;
  color: #193b87;
  font-family: "游明朝", "Yu Mincho", "游明朝体", YuMincho, "Sawarabi Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 20px;
}
@media (width <= 992px) {
  .check-contents .c-step-question {
    margin: 30px 0 0;
    padding: 0 10px 0 60px;
    font-size: 16px;
  }
}
.check-contents .c-step-question > span {
  position: absolute;
  top: 0;
  left: 50px;
  font-size: 60px;
  line-height: 1;
}
@media (width <= 992px) {
  .check-contents .c-step-question > span {
    left: 10px;
    font-size: 30px;
  }
}
.check-contents .c-step-question p:first-child {
  margin-top: 0;
}
.check-contents .c-step-question p:last-child {
  margin-bottom: 0;
}
.check-contents .c-step-answers {
  display: flex;
  flex-wrap: wrap;
  margin: 40px 0 30px;
  padding: 0 40px;
  list-style: none;
}
@media (width <= 992px) {
  .check-contents .c-step-answers {
    margin: 20px 0 15px;
    padding: 0 10px;
  }
}
.check-contents .c-step-answers > li {
  width: 50%;
  min-width: 50%;
  margin: 10px 0;
  padding: 0 10px;
}
@media (width <= 992px) {
  .check-contents .c-step-answers > li {
    width: 100%;
    min-width: 100%;
  }
}
.check-contents .c-step-answers > li.stretch {
  width: 100%;
  min-width: 100%;
}
.check-contents .c-step-answers > li > a:not([class]) {
  display: block;
  position: relative;
  padding: 16px 43px;
  transition: box-shadow 0.3s ease-in-out;
  border-radius: 10px;
  background: #193b87;
  color: #fff;
  font-family: "游明朝", "Yu Mincho", "游明朝体", YuMincho, "Sawarabi Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 32px;
  text-align: center;
  -webkit-text-decoration: none;
  text-decoration: none;
}
.check-contents .c-step-answers > li > a:not([class]):hover {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.12), 0 3px 6px rgba(0, 0, 0, 0.14);
}
.check-contents .c-step-answers > li > a:not([class]):active:hover {
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.12), 0 6px 12px rgba(0, 0, 0, 0.14);
}
@media (width <= 992px) {
  .check-contents .c-step-answers > li > a:not([class]) {
    padding: 8px 22px;
    font-size: 18px;
  }
}
.check-contents .c-step-answers > li > a:not([class])::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 20px;
  width: 12px;
  height: 24px;
  transform: translateY(-50%);
  background: url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/check/arrow-answer.svg") no-repeat 50%;
  background-size: contain;
}
@media (width <= 992px) {
  .check-contents .c-step-answers > li > a:not([class])::before {
    right: 10px;
    width: 6px;
    height: 12px;
  }
}
.check-contents .c-step-answers.ex > li > a:not([class]) {
  font-size: 26px;
}
@media (width <= 992px) {
  .check-contents .c-step-answers.ex > li > a:not([class]) {
    font-size: 18px;
  }
}
.check-contents .c-step-answers.ex-sm > li > a:not([class]) {
  font-size: 18px;
}
.check-contents .c-step-image {
  padding: 0 50px;
}
@media (width <= 992px) {
  .check-contents .c-step-image {
    margin-top: -75px;
    padding: 0 10px;
  }
}
.check-contents .c-step-image > img {
  display: block;
  max-width: 100%;
  margin: 0 0 0 auto;
}
@media (width <= 992px) {
  .check-contents .c-step-image > img {
    transform: scale(0.5);
    transform-origin: right bottom;
  }
}
.check-contents {
  /* ------------------------------
    c-banners
  ------------------------------ */
}
.check-contents .c-banners {
  display: flex;
  flex-wrap: wrap;
  margin: 35px -15px;
  padding: 0;
  list-style: none;
}
.check-contents .c-banners > li {
  display: flex;
  width: 50%;
  min-width: 50%;
  min-height: 50px;
  margin: 15px 0;
  padding: 0 15px;
}
@media (width <= 992px) {
  .check-contents .c-banners > li {
    width: 100%;
    min-width: 100%;
    margin: 5px 0;
  }
}
.check-contents .c-banners > li > a {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0 35px;
  transition: box-shadow 0.3s ease-in-out;
  border: 1px solid #193b87;
  color: #193b87;
  text-align: center;
  -webkit-text-decoration: none;
  text-decoration: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
}
.check-contents .c-banners > li > a:hover {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.12), 0 3px 6px rgba(0, 0, 0, 0.14);
}
.check-contents .c-banners > li > a:active:hover {
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.12), 0 6px 12px rgba(0, 0, 0, 0.14);
}
.check-contents .c-banners > li > a::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 20px;
  width: 6px;
  height: 13px;
  transform: translateY(-50%);
  background: url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/check/entry-arrow.svg") 50% no-repeat;
  background-size: contain;
}
.check-contents {
  /* ------------------------------
    c-result
  ------------------------------ */
}
.check-contents .c-result {
  background: #f2f3f8;
}
.check-contents .c-result::after,
.check-contents .c-result::before {
  content: "";
  display: table;
}
.check-contents .c-result::after {
  clear: both;
}
.check-contents .c-result__title {
  margin: 0;
  padding: 8px 15px;
  background: #bac4db;
  color: #193b87;
  font-family: "游明朝", "Yu Mincho", "游明朝体", YuMincho, "Sawarabi Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 100%;
  font-weight: 400;
  text-align: center;
}
.check-contents .c-result__charm {
  position: relative;
  margin: 20px 0 0;
  padding-bottom: 30px;
}
@media (width <= 992px) {
  .check-contents .c-result__charm {
    margin: 10px 0 0;
    padding-bottom: 15px;
  }
}
.check-contents .c-result__charm--title {
  padding-top: 30px;
  color: rgba(25, 59, 135, 0.7);
  font-family: "游明朝", "Yu Mincho", "游明朝体", YuMincho, "Sawarabi Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 50px;
  letter-spacing: 8px;
  line-height: 1;
  text-align: center;
}
@media (width <= 768px) {
  .check-contents .c-result__charm--title {
    padding-top: 10px;
    font-size: 24px;
  }
}
.check-contents .c-result__charm--old {
  display: flex;
  align-items: baseline;
  justify-content: center;
  color: #193b87;
  font-family: "游明朝", "Yu Mincho", "游明朝体", YuMincho, "Sawarabi Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 24px;
  letter-spacing: 8px;
  text-align: center;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
}
@media (width <= 992px) {
  .check-contents .c-result__charm--old {
    display: block;
  }
}
@media (width <= 768px) {
  .check-contents .c-result__charm--old {
    font-size: 16px;
  }
}
.check-contents .c-result__charm--old > span {
  font-size: 50px;
}
@media (width <= 768px) {
  .check-contents .c-result__charm--old > span {
    font-size: 24px;
  }
}
.check-contents .c-result__charm--old > div {
  margin-top: 30px;
  font-size: 36px;
  letter-spacing: 4px;
}
@media (width <= 992px) {
  .check-contents .c-result__charm--old > div {
    margin-top: 5px;
    padding: 10px;
    font-size: 24px;
  }
}
.check-contents .c-result__charm--old > div > span {
  display: block;
  width: 100px;
  padding: 4px 0;
  border-radius: 14px;
  background: #193b87;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0;
  text-align: center;
}
@media (width <= 992px) {
  .check-contents .c-result__charm--old > div > span {
    width: auto;
    max-width: 100px;
    margin: 0 auto;
    padding: 2px 5px;
    font-size: 12px;
  }
}
.check-contents .c-result__charm--old > div:not(:first-of-type) {
  margin-left: 30px;
}
@media (width <= 992px) {
  .check-contents .c-result__charm--old > div:not(:first-of-type) {
    margin-left: 0;
  }
}
.check-contents .c-result__charm--target {
  color: #193b87;
  font-family: "游明朝", "Yu Mincho", "游明朝体", YuMincho, "Sawarabi Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 36px;
  letter-spacing: 8px;
  text-align: center;
}
@media (width <= 768px) {
  .check-contents .c-result__charm--target {
    font-size: 24px;
  }
}
.check-contents .c-result__charm--images {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0 30px;
}
@media (width <= 992px) {
  .check-contents .c-result__charm--images {
    display: none;
  }
}
.check-contents .c-result__charm--images > img {
  position: absolute;
  bottom: 0;
  left: 50%;
  max-width: 100%;
  transform: translate(-50%);
}
.check-contents .c-result__body {
  margin: 0 30px 30px;
  padding: 50px;
  background: #fff;
}
@media (width <= 992px) {
  .check-contents .c-result__body {
    margin: 0 10px 10px;
    padding: 10px;
  }
  .check-contents .c-result__body--top,
  .check-contents .c-result__body--top tbody,
  .check-contents .c-result__body--top tbody > tr {
    display: block;
  }
}
.check-contents .c-result__body--top tbody > tr > td,
.check-contents .c-result__body--top tbody > tr > th {
  padding: 0;
  border: none;
  background: none;
  font-size: 20px;
  font-weight: 700;
}
@media (width <= 992px) {
  .check-contents .c-result__body--top tbody > tr > td,
  .check-contents .c-result__body--top tbody > tr > th {
    display: block;
    font-size: 16px;
  }
}
.check-contents .c-result__body--top tbody > tr > th {
  padding-right: 20px;
  color: #193b87;
  white-space: nowrap;
}
.check-contents .c-result__body--top tbody > tr > td {
  width: 100%;
  color: #000;
}
.check-contents .c-result__body--top tbody > tr > td > a:not([class]),
.check-contents .c-result__body--top tbody > tr > td > span {
  display: inline-block;
  position: relative;
  padding-left: 35px;
  color: #000;
}
@media (width <= 992px) {
  .check-contents .c-result__body--top tbody > tr > td > a:not([class]),
  .check-contents .c-result__body--top tbody > tr > td > span {
    padding-left: 25px;
  }
}
.check-contents .c-result__body--top tbody > tr > td > a:not([class])::before,
.check-contents .c-result__body--top tbody > tr > td > span::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 20px;
  width: 6px;
  height: 13px;
  transform: translateY(-50%);
  background: url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/check/entry-arrow.svg") 50% no-repeat;
  background-size: contain;
}
@media (width <= 992px) {
  .check-contents .c-result__body--top tbody > tr > td > a:not([class])::before,
  .check-contents .c-result__body--top tbody > tr > td > span::before {
    left: 5px;
  }
}
.check-contents .c-result__body--top tbody > tr:not(:last-child) > th,
.check-contents .c-result__body--top tbody > tr:not(:last-child) td {
  padding-bottom: 5px;
}
.check-contents .c-result__body--title {
  margin-top: 1.33em !important;
  padding: 8px 10px !important;
  border-left: none !important;
  background: #bac4db;
  color: #193b87;
  font-size: 100% !important;
  font-weight: 300 !important;
  text-align: center;
}
.check-contents .c-result__body--title::after,
.check-contents .c-result__body--title::before {
  content: none !important;
}
.check-contents .c-result__list {
  margin-bottom: 20px;
}
.check-contents .c-result__list--item {
  display: flex;
}
@media (width <= 992px) {
  .check-contents .c-result__list--item {
    display: block;
  }
}
.check-contents .c-result__list--item:not(:first-child) {
  margin-top: 20px;
}
.check-contents .c-result__list--item > div {
  padding: 0 20px;
}
@media (width <= 768px) {
  .check-contents .c-result__list--item > div {
    padding: 0;
  }
}
.check-contents .c-result__list--item > div:first-child {
  width: 135px;
  min-width: 135px;
  border-right: 1px solid #bac4db;
  font-weight: 700;
}
@media (width <= 992px) {
  .check-contents .c-result__list--item > div:first-child {
    width: 100%;
    min-width: 100%;
    border-right: none;
  }
}
.check-contents .c-result__list--item > div:last-child > p:first-child {
  margin-top: 0;
}
.check-contents .c-result__list--item > div:last-child > p:last-child {
  margin-bottom: 0;
}
.check-contents .c-result__price {
  display: flex;
  color: #193b87;
  font-weight: 700;
}
@media (width <= 992px) {
  .check-contents .c-result__price {
    display: block;
  }
}
.check-contents .c-result__price > div {
  padding: 0 20px;
}
.check-contents .c-result__price > div:first-child {
  width: 135px;
  font-weight: 700;
}
.check-contents .c-result__price > div:not(:first-child) {
  font-size: 30px;
}
.check-contents .c-result__price > div > small {
  font-size: 16px;
}
.check-contents .c-result__price .c-result__price--option {
  margin: 0;
  font-size: 16px;
}
.check-contents .c-result__breakdown {
  margin: 30px 0;
  border: 1px solid #bac4db;
}
.check-contents .c-result__breakdown > .c-result__body--title {
  margin-top: 0;
}
.check-contents .c-result__breakdown > .c-result__list {
  padding: 0 10px;
}
.check-contents .c-result__breakdown > .c-result__list div:not([class]):last-child {
  font-size: 14px;
}
.check-contents .c-result__breakdown--doc {
  margin: 0 50px 50px;
}
@media (width <= 768px) {
  .check-contents .c-result__breakdown--doc {
    margin: 0 10px 20px;
  }
}
.check-contents .c-result__breakdown--doc:not(:first-of-type) {
  margin-top: 50px;
  border-top: 1px solid #bac4db;
}
@media (width <= 768px) {
  .check-contents .c-result__breakdown--doc:not(:first-of-type) {
    margin-top: 20px;
  }
}
.check-contents .c-result__breakdown--doc p:first-of-type {
  margin-top: 0;
}
.check-contents .c-result__breakdown--doc p:last-child {
  margin-bottom: 0;
}
.check-contents .c-result__breakdown--title {
  margin: 50px 0 20px;
  color: #193b87;
  font-size: 20px;
}
@media (width <= 768px) {
  .check-contents .c-result__breakdown--title {
    margin-top: 20px;
    font-size: 18px;
  }
}
.check-contents .c-result__breakdown--title.i-question,
.check-contents .c-result__breakdown--title.i-warning {
  position: relative;
  padding-left: 40px;
}
.check-contents .c-result__breakdown--title.i-question::before,
.check-contents .c-result__breakdown--title.i-warning::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 28px;
  background-size: contain;
}
.check-contents .c-result__breakdown--title.i-warning::before {
  background: url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/check/i-warning.svg") no-repeat 50%;
}
.check-contents .c-result__breakdown--title.i-question::before {
  background: url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/check/i-question.svg") no-repeat 50%;
}
.check-contents .c-result__staff {
  display: grid;
  grid-gap: 20px;
  gap: 20px;
  grid-template-columns: 50% 50%;
}
.check-contents .c-result__staff--item > div {
  width: 68px;
  margin: 10px auto;
}
.check-contents .c-result__staff--item > div > img {
  max-width: 100%;
}
.check-contents .c-result__staff--item > p {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}
@media (width <= 768px) {
  .check-contents .c-result__staff--item > p {
    font-size: 12px;
  }
}
.check-contents {
  /* ------------------------------
    button-block
  ------------------------------ */
}
.check-contents .button-block {
  display: flex;
  position: relative;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 80px;
  margin: 10px 0;
  padding: 25px 35px;
  transition: box-shadow 0.3s ease-in-out;
  border: 1px solid #99a8ca;
  background: #f2f3f8;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.12), 0 0 0 rgba(0, 0, 0, 0.14), inset 0 0 0 5px white;
  color: #193b87;
  font-weight: 500;
  -webkit-text-decoration: none;
  text-decoration: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
}
.check-contents .button-block:hover {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.12), 0 3px 6px rgba(0, 0, 0, 0.14), inset 0 0 0 5px white;
}
.check-contents .button-block:active {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.12), 0 6px 12px rgba(0, 0, 0, 0.14), inset 0 0 0 5px white;
}
.check-contents .button-block::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 20px;
  width: 6px;
  height: 13px;
  transform: translateY(-50%);
  background: url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/check/arrow.svg") no-repeat 50%;
}
.check-contents .button-block > small {
  display: block;
  color: #99a8ca;
  font-size: 87.5%;
}
.check-contents {
  /* ------------------------------
    utility
  ------------------------------ */
}
.check-contents .margin__rm--top {
  margin-top: 0 !important;
}
.check-contents .pull__right {
  margin-bottom: 30px;
  margin-left: 30px;
  float: right;
}
@media (width <= 768px) {
  .check-contents .pull__right {
    display: block;
    margin: 0 auto 20px;
    float: none;
  }
}

/* ------------------------------
  check
  既存ソース用
------------------------------ */
.check-start {
  padding: 40px 24px;
}
@container (min-width: 768px) {
  .check-start {
    padding-block: 100px;
  }
}
.check-start__box {
  max-width: 950px;
  margin-inline: auto;
  padding: 40px 20px;
  border-radius: 6px;
  background-color: var(--color-bg-main);
  text-align: center;
}
.check-start__heading {
  margin-block: 0 8px;
  font-size: var(--font-heading-lg);
}
@container (min-width: 768px) {
  .check-start__heading {
    margin-bottom: 16px;
    font-size: var(--font-pc-heading-md);
  }
}
.check-start__text {
  margin-block: 0;
  font-size: var(--font-base);
}
@container (min-width: 768px) {
  .check-start__text {
    font-size: var(--font-pc-sm);
  }
}
.check-start__button {
  display: grid;
  row-gap: 16px;
  max-width: 248px;
  margin: 24px auto 0;
}
.check-start__button .button {
  width: 100%;
}

/* ------------------------------
  contact-image
------------------------------ */
.contact-image {
  margin-top: 16px;
}
@container (min-width: 768px) {
  .contact-image {
    margin-top: 24px;
  }
}

/* ------------------------------
  top-access
------------------------------ */
.top-access {
  padding: 80px 24px;
}
@container (min-width: 768px) {
  .top-access .button {
    width: fit-content;
  }
}
.top-access__contents {
  padding-top: 40px;
  border-top: 1px solid var(--color-border-transparent);
}
@container (min-width: 768px) {
  .top-access__contents {
    padding-top: 60px;
  }
}
@container (min-width: 1024px) {
  .top-access__contents {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 60px;
    column-gap: 40px;
  }
}
.top-access__block {
  margin-top: 40px;
}
@container (min-width: 1024px) {
  .top-access__block {
    margin-top: 0;
  }
}
.top-access__block:first-child {
  margin-top: 0;
}
.top-access__box {
  margin-top: 40px;
}
@container (min-width: 1024px) {
  .top-access__box {
    margin-top: 60px;
  }
}
.top-access__box:first-child {
  margin-top: 0;
}
.top-access__map {
  display: flex;
  flex-direction: column-reverse;
  margin-top: 12px;
}
@container (min-width: 1024px) {
  .top-access__map {
    flex-direction: column;
    margin-top: 32px;
    row-gap: 32px;
  }
}
.top-access__text {
  margin-block: 0;
  font-size: var(--font-base);
}
.top-access iframe {
  width: 100%;
  min-width: 100%;
  height: auto;
  aspect-ratio: 4/3;
}
.top-access__list {
  display: grid;
  row-gap: 8px;
  margin-block: 12px 0;
  padding-left: 0;
  list-style: none;
}
@container (min-width: 1024px) {
  .top-access__list {
    margin: 20px 0 0 12px;
  }
}
.top-access__item {
  font-size: var(--font-sm);
  line-height: var(--line-height-sm);
}
@container (min-width: 768px) {
  .top-access__item {
    font-size: var(--font-base);
  }
}
.top-access__item::before {
  content: "";
  margin-right: 8px;
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background-color: var(--brand-main-500);
}
.top-access__card {
  margin-top: 20px;
  padding: 20px 24px;
  border-radius: 6px;
  background-color: var(--brand-white);
}
@container (min-width: 768px) {
  .top-access__card--tel {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.top-access__button {
  margin-top: 12px;
}
.top-access__tel {
  display: grid;
  grid-template-columns: 28px auto;
  align-items: center;
  justify-content: center;
  column-gap: 4px;
  color: var(--brand-main-500);
  font-family: var(--font-family-en);
  font-size: var(--font-heading-xxl);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-xs);
  text-decoration: none;
}
@container (min-width: 768px) {
  .top-access__tel {
    justify-content: flex-start;
    width: 100%;
    font-size: var(--font-pc-heading-md);
  }
}
.top-access__tel::before {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  background: url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/top/ico_tel.svg") no-repeat center/19px;
}
@container (min-width: 768px) {
  .top-access__tel::before {
    width: 32px;
    height: 32px;
  }
}
.top-access__tel-note {
  margin-top: 4px;
  font-size: var(--font-sm);
  text-align: center;
}
@container (min-width: 768px) {
  .top-access__tel-note {
    display: inline-block;
    margin: 6px 0;
    font-size: var(--font-pc-sm);
    text-align: left;
  }
}
.top-access__guidance {
  display: block;
  width: fit-content;
  margin: 12px auto 0;
  color: var(--brand-main-400);
  font-size: var(--font-sm);
  text-align: center;
}
@container (min-width: 768px) {
  .top-access__guidance {
    display: inline-block;
    margin: 6px 0 0 auto;
    font-size: var(--font-pc-sm);
    text-align: left;
  }
}
@media (any-hover: hover) {
  .top-access__guidance:hover {
    text-decoration: none;
  }
}

/* ------------------------------
  top-case
------------------------------ */
.top-case {
  padding: 60px 24px 80px;
}
@container (min-width: 768px) {
  .top-case {
    max-width: 1280px;
    margin-inline: auto;
    padding: 100px 0 120px;
  }
}
.top-case__heading {
  display: flex;
  align-items: baseline;
  column-gap: 8px;
  font-size: var(--font-heading-xl);
  font-weight: var(--font-weight-bold);
}
.top-case__heading span {
  font-size: var(--font-heading-md);
}
.top-case__card {
  display: grid;
  position: relative;
  grid-template-areas: "data1" "data2" "more";
}
@container (min-width: 768px) {
  .top-case__card {
    padding: 40px;
    border-radius: 12px;
    background-color: var(--brand-white);
  }
}
@container (min-width: 1024px) {
  .top-case__card {
    grid-template-areas: "data2 data1" "data2 more";
    grid-template-columns: repeat(2, 1fr);
    align-items: flex-end;
    padding: 40px;
    column-gap: 80px;
  }
  .top-case__card::after {
    content: "";
    display: block;
    position: absolute;
    top: 40px;
    bottom: 40px;
    left: 50%;
    width: 1px;
    background-color: var(--color-border);
  }
}
.top-case__box {
  grid-area: data2;
  margin-top: 24px;
  padding: 24px 20px;
  border-radius: 6px;
  background-color: var(--brand-white);
}
@container (min-width: 768px) {
  .top-case__box {
    align-self: flex-start;
    padding: 0;
    background-color: var(--brand-white);
  }
}
@container (min-width: 1024px) {
  .top-case__box {
    margin-top: 0;
  }
}
.top-case__box:first-child {
  grid-area: data1;
  margin-top: 0;
}
.top-case__image {
  margin-block: 20px 0;
}
.top-case__image img {
  width: 100%;
  height: auto;
}

/* ------------------------------
  top-case-data
------------------------------ */
.top-case-data {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-block: 20px 0;
}
.top-case-data__item {
  flex: 1;
  padding: 12px 16px 16px;
  border-radius: 3px;
  background-color: var(--color-bg);
  color: var(--brand-main-500);
  font-size: var(--font-base);
}
@container (min-width: 768px) {
  .top-case-data__item {
    padding: 20px 24px 24px;
    font-size: var(--font-pc-heading-sm);
  }
}
.top-case-data__item--wide {
  min-width: 100%;
}
.top-case-data__value {
  margin: 0;
  font-family: var(--font-family-mix);
  font-weight: var(--font-weight-medium);
  text-align: right;
}
@container (min-width: 768px) {
  .top-case-data__value {
    font-size: 18px;
  }
}
.top-case-data__line {
  margin-right: 4px;
  font-size: 18px;
  position: relative;
}
.top-case-data__line::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  /* 単位を px にする */
  height: 2px;
  background: var(--gradient-brand);
}
@container (min-width: 768px) {
  .top-case-data__line::after {
    bottom: -8px;
    height: 3px;
  }
  .top-case-data__item--wide .top-case-data__line::after {
    bottom: -12px;
  }
}
.top-case-data__line strong {
  font-size: var(--font-heading-xxl);
}
@container (min-width: 768px) {
  .top-case-data__line strong {
    font-size: var(--font-pc-heading-lg);
  }
  .top-case-data__item--wide .top-case-data__line strong {
    font-size: var(--font-pc-heading-xxl);
  }
}
.top-case-data__note {
  margin: 0;
  font-family: var(--font-family-mix);
  font-weight: var(--font-weight-medium);
  text-align: right;
}
@container (min-width: 768px) {
  .top-case-data__note {
    font-size: var(--font-pc-base);
  }
}

/* ------------------------------
  top-contents-copy
------------------------------ */
.top-contents-copy {
  margin-block: 0;
  color: var(--brand-main-500);
  font-size: var(--font-heading-lg);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-lg);
}
@container (min-width: 768px) {
  .top-contents-copy {
    font-size: var(--font-pc-heading-md);
  }
}
.top-contents-copy span {
  position: relative;
}
.top-contents-copy span::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  /* 単位を px にする */
  height: 2px;
  background: var(--gradient-brand);
}
@container (min-width: 768px) {
  .top-contents-copy span::after {
    bottom: -8px;
    height: 3px;
  }
}

/* ------------------------------
  top-heading
------------------------------ */
.top-heading {
  margin-block: 0 16px;
  color: var(--brand-main-500);
  font-size: var(--font-heading-xl);
  font-weight: var(--font-weight-bold);
}
@container (min-width: 768px) {
  .top-heading {
    font-size: var(--font-pc-heading-xl);
  }
}
.top-heading-en + .top-heading {
  margin-top: 32px;
}

/* ------------------------------
  top-heading-en
------------------------------ */
.top-heading-en {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-block: 0;
  color: var(--brand-main-500);
  font-family: var(--font-family-en);
  font-size: var(--font-heading-sm);
  font-weight: var(--font-weight-medium);
}
@container (min-width: 768px) {
  .top-heading-en {
    font-size: var(--font-pc-heading-sm);
  }
}
.top-heading-en::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background-color: var(--brand-accent-red);
}

/* ------------------------------
  top-hero
------------------------------ */
.top-hero {
  position: relative;
  width: 100%;
  margin-block: auto;
}
.top-hero__inner {
  max-width: 824px;
  margin-inline: auto;
  padding-top: 36px;
  color: var(--brand-main-500);
}
@container (min-width: 768px) {
  .top-hero__inner {
    padding: 40px 12px;
  }
}
@container (min-width: 1024px) {
  .top-hero__inner {
    display: grid;
    grid-template-areas: "title image" "copy image" "case image";
    grid-template-columns: repeat(2, 1fr);
    max-width: 1612px;
    padding: 40px 0 40px 72px;
  }
}
@container (min-width: 1280px) {
  .top-hero__inner {
    padding-left: 80px;
  }
}
.top-hero__box {
  padding-inline: 20px;
}
@container (min-width: 768px) {
  .top-hero__box {
    padding-inline: 0 12px;
  }
}
@container (min-width: 1280px) {
  .top-hero__box {
    max-width: 640px;
    padding-inline: 60px 20px;
  }
}
.top-hero__copy {
  position: relative;
}
@container (min-width: 1024px) {
  .top-hero__copy {
    position: static;
  }
}
.top-hero__title {
  margin: 0;
  font-size: var(--font-heading-xxl);
  font-weight: var(--font-weight-bold);
}
@container (min-width: 768px) {
  .top-hero__title {
    font-size: var(--font-pc-heading-lg);
  }
}
@container (min-width: 1280px) {
  .top-hero__title {
    font-size: var(--font-pc-heading-xl);
  }
}
.top-hero__title span {
  position: relative;
}
.top-hero__title span::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  /* 単位を px にする */
  height: 2px;
  background: var(--gradient-brand);
}
@container (min-width: 768px) {
  .top-hero__title span::after {
    height: 4px;
  }
}
.top-hero__text {
  margin: 12px 0 0;
  font-size: var(--font-heading-sm);
  font-weight: var(--font-weight-bold);
}
@container (min-width: 768px) {
  .top-hero__text {
    grid-area: copy;
    margin-top: 28px;
    font-size: var(--font-pc-heading-sm);
  }
}
.top-hero__scroll {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 68px;
}
@container (min-width: 1024px) {
  .top-hero__scroll {
    right: auto;
    left: 25px;
    height: 152px;
  }
}
@container (min-width: 1280px) {
  .top-hero__scroll {
    left: 35px;
  }
}
.top-hero__scroll::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  transform: translateX(-50%);
  opacity: 0.5;
  background-color: var(--brand-main-500);
}
.top-hero__scroll::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  width: 6px;
  height: 6px;
  transform: translateX(-50%);
  animation: scroll 4s linear infinite;
  border: 2px solid var(--color-bg);
  border-radius: 100%;
  background-color: var(--brand-main-500);
}
@container (min-width: 1024px) {
  .top-hero__scroll::after {
    width: 10px;
    height: 10px;
  }
}
.top-hero__scroll img {
  width: 8px;
  transform: translateY(-58px);
}
@container (min-width: 1024px) {
  .top-hero__scroll img {
    width: 11px;
    transform: translateY(-78px);
  }
}

@keyframes scroll {
  0% {
    transform: translate(-50%, 0);
    opacity: 0;
  }
  5% {
    transform: translate(-50%, 0);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, 0);
    opacity: 1;
  }
  75% {
    transform: translate(-50%, 68px);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, 68px);
    opacity: 0;
  }
}
/* ------------------------------
  top-hero-case
------------------------------ */
.top-hero-case {
  display: none;
}
@container (min-width: 1024px) {
  .top-hero-case {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    margin-top: 40px;
    border-radius: 6px;
    background-color: var(--brand-white);
  }
}
.top-hero-case__header {
  display: flex;
  grid-column: span 2;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px 16px 20px;
  border-bottom: 1px solid var(--color-border);
}
@container (min-width: 1280px) {
  .top-hero-case__header {
    display: block;
    grid-column: span 1;
    border-bottom: 0;
  }
}
.top-hero-case__heading {
  margin-block: 0;
  font-size: var(--font-pc-heading-sm);
  font-weight: var(--font-weight-bold);
}
.top-hero-case__heading span {
  margin-left: 6px;
  font-size: var(--font-pc-sm);
  font-weight: var(--font-weight-regular);
  vertical-align: middle;
}
.top-hero-case__link {
  display: inline-flex;
  align-items: center;
  column-gap: 8px;
  color: var(--brand-main-500);
  font-size: var(--font-pc-sm);
  text-decoration: none;
}
.top-hero-case__link::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  transition: background 0.2s ease;
  border-radius: 100%;
  background: var(--color-bg) url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/icon/ico_arrow.svg") no-repeat center/10px;
}
@media (any-hover: hover) {
  .top-hero-case__link:hover::after {
    background-color: var(--brand-main-500);
    background-image: url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/icon/ico_arrow_white.svg");
  }
}

/* ------------------------------
  top-hero-case-data
------------------------------ */
.top-hero-case-data {
  display: flex;
  grid-column: span 2;
  align-items: center;
}
@container (min-width: 1280px) {
  .top-hero-case-data {
    grid-column: span 1;
  }
}
.top-hero-case-data__item {
  flex: 1;
  padding-inline: 20px;
}
.top-hero-case-data__item:last-child {
  border-left: 1px solid var(--color-border);
}
@container (min-width: 1280px) {
  .top-hero-case-data__item {
    text-align: center;
  }
  .top-hero-case-data__item:first-child {
    border-left: 1px solid var(--color-border);
  }
}
.top-hero-case-data__title {
  color: var(--text);
  font-size: var(--font-pc-sm);
  font-weight: var(--font-weight-bold);
}
.top-hero-case-data__value {
  margin-left: 0;
  font-family: var(--font-family-mix);
  font-weight: var(--font-weight-medium);
}
.top-hero-case-data__line {
  margin: 10px 0;
  font-size: 18px;
  position: relative;
}
.top-hero-case-data__line::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  /* 単位を px にする */
  height: 2px;
  background: var(--gradient-brand);
}
.top-hero-case-data__line strong {
  font-size: var(--font-heading-xxl);
}

/* ------------------------------
  top-hero-info
------------------------------ */
.top-hero-info {
  margin: 20px 12px;
  padding: 12px 14px 12px 16px;
  border-radius: 4px;
  background-color: var(--color-bg-transparent);
}
@container (min-width: 768px) {
  .top-hero-info {
    display: grid;
    grid-template-columns: 200px 1fr;
    align-items: center;
    margin: 0;
    padding: 28px 80px;
  }
}
.top-hero-info__heading {
  position: relative;
  margin-block: 0;
  color: var(--brand-main-500);
  font-family: var(--font-family-en);
  font-size: var(--font-pc-heading-sm);
  font-weight: var(--font-weight-medium);
}
@container (max-width: 767.9px) {
  .top-hero-info__heading {
    display: none;
  }
}
.top-hero-info__heading::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  width: 40px;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1);
}

/* ------------------------------
  top-hero-slider
------------------------------ */
.top-hero-slider {
  position: relative;
  max-width: 800px;
  height: 320px;
  margin: 28px 12px 0;
  overflow: hidden;
  border-radius: 6px;
}
@container (min-width: 768px) {
  .top-hero-slider {
    margin-inline: auto;
  }
}
@container (min-width: 1024px) {
  .top-hero-slider {
    grid-area: image;
    height: 520px;
    margin: 0 24px 0 0;
    border-radius: 12px;
  }
}
@container (min-width: 1280px) {
  .top-hero-slider {
    margin-right: 36px;
  }
}
.top-hero-slider__slide {
  max-width: 800px;
}
.top-hero-slider img {
  width: 100vw;
  max-width: 200%;
  height: 320px;
  max-height: 200%;
  transition: transform 7s linear;
  opacity: 0;
  object-fit: cover;
}
@container (min-width: 768px) {
  .top-hero-slider img {
    height: 100%;
  }
}
.top-hero-slider .swiper-slide-active img {
  transform: translate(-5%);
  opacity: 1;
  object-fit: cover;
}
.top-hero-slider__pagination {
  top: auto !important;
  bottom: 0 !important;
  left: 0;
  width: fit-content !important;
  padding: 4px 28px 2px;
  border-top-right-radius: 8px;
  background-color: var(--color-bg);
}
@container (min-width: 768px) {
  .top-hero-slider__pagination {
    padding: 14px 32px 12px;
  }
}
.top-hero-slider__pagination::before {
  top: -6px;
  left: 0;
  transform: scale(-1, 1);
  content: "";
  display: block;
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: var(--color-bg);
  mask: url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/common/bg_mask.svg") no-repeat center/contain;
}
@container (min-width: 768px) {
  .top-hero-slider__pagination::before {
    top: -12px;
    width: 12px;
    height: 12px;
  }
}
.top-hero-slider__pagination::after {
  right: -6px;
  bottom: 0;
  transform: scale(-1, 1);
  content: "";
  display: block;
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: var(--color-bg);
  mask: url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/common/bg_mask.svg") no-repeat center/contain;
}
@container (min-width: 768px) {
  .top-hero-slider__pagination::after {
    right: -12px;
    width: 12px;
    height: 12px;
  }
}
.top-hero-slider__pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  opacity: 1 !important;
  background-color: var(--brand-white);
}
@container (min-width: 768px) {
  .top-hero-slider__pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin-inline: 6px !important;
  }
}
.top-hero-slider__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--brand-main-500);
}

/* ------------------------------
  top-image-slider
------------------------------ */
.top-image-slider {
  overflow: hidden;
}
.top-image-slider__wrap {
  transition-timing-function: linear !important;
}
.top-image-slider__slide {
  width: 45vw;
  margin-inline: 2px;
}
@container (min-width: 768px) {
  .top-image-slider__slide {
    width: 20vw;
    margin-inline: 4px;
  }
}

/* ------------------------------
  top-info
------------------------------ */
@container (min-width: 1280px) {
  .top-info {
    display: grid;
    grid-template-columns: 290px 1fr;
    align-items: flex-start;
    column-gap: 40px;
  }
}

/* ------------------------------
  top-label-box
------------------------------ */
.top-label-box {
  position: relative;
}
@container (min-width: 768px) {
  .top-label-box {
    margin-left: 24px;
  }
}
@container (min-width: 1024px) {
  .top-label-box {
    margin-left: 40px;
  }
}
@container (min-width: 1280px) {
  .top-label-box {
    margin-left: 80px;
  }
}
.top-label-box__header {
  position: relative;
  width: fit-content;
  padding: 16px 40px 0 24px;
  border-radius: 8px 8px 0 0;
  background-color: var(--brand-white);
}
.top-label-box__header::after {
  right: -12px; /* オートレイアウト内部 */
  bottom: 0;
  transform: scale(-1, 1);
  content: "";
  display: block;
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: var(--brand-white);
  mask: url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/common/bg_mask.svg") no-repeat center/contain;
}
.top-label-box__box {
  padding: 60px 24px 80px;
  border-bottom-left-radius: 16px;
  background-color: var(--brand-white);
}
@container (min-width: 768px) {
  .top-label-box__box {
    padding-inline: 64px 40px;
  }
}
@container (min-width: 1024px) {
  .top-label-box__box {
    padding: 100px 140px 100px 60px;
  }
}
@container (min-width: 768px) {
  .top-label-box__inner {
    max-width: 1280px;
    margin-inline: auto;
  }
}

/* ------------------------------
  top-message
------------------------------ */
.top-message {
  padding: 100px 24px 80px;
  background: url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/top/img_logo_text.svg") no-repeat right top;
}
@container (min-width: 768px) {
  .top-message {
    background-size: 254px 228px;
  }
}
@container (min-width: 768px) {
  .top-message__inner {
    max-width: 1280px;
    margin-inline: auto;
  }
}
.top-message__box {
  display: grid;
  gap: 24px;
  margin-top: 40px;
}
@container (min-width: 1280px) {
  .top-message__box {
    display: flex;
    column-gap: 40px;
  }
}
.top-message__heading {
  margin-block: 0;
  font-size: 22px;
  font-weight: var(--font-weight-bold);
}
@container (min-width: 768px) {
  .top-message__heading {
    width: 329px;
    font-size: var(--font-pc-heading-lg);
  }
}
.top-message__heading span {
  position: relative;
}
.top-message__heading span::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  /* 単位を px にする */
  height: 2px;
  background: var(--gradient-brand);
}
.top-message__text {
  margin-block: 10px 0;
  font-size: var(--font-base);
  line-height: var(--line-height-lg);
}
@container (min-width: 768px) {
  .top-message__text {
    font-size: var(--font-pc-heading-sm);
  }
}
.top-message__text:first-child {
  margin-top: 0;
}
.top-message__more {
  max-width: 1200px;
}

/* ------------------------------
  top-staff-data
------------------------------ */
.top-staff-data {
  display: grid;
}
@container (min-width: 768px) {
  .top-staff-data {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 40px;
  }
}
@container (min-width: 1280px) {
  .top-staff-data {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 40px;
  }
}
.top-staff-data__item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 14px 4px;
  column-gap: 12px;
  border-bottom: 1px solid var(--color-border);
}
.top-staff-data__item:first-child {
  border-top: 1px solid var(--color-border);
}
@container (min-width: 768px) {
  .top-staff-data__item:first-child {
    border-top: 0;
  }
}
.top-staff-data__title {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  column-gap: 12px;
  font-size: var(--font-heading-sm);
  font-weight: var(--font-weight-bold);
}
.top-staff-data__value {
  margin-left: 0;
  font-size: var(--font-base);
}
.top-staff-data__value span {
  font-size: 16px;
  font-weight: var(--font-weight-bold);
}

/* ------------------------------
  top-staff-intro
------------------------------ */
.top-staff-intro {
  display: grid;
  position: relative;
  gap: 60px;
  margin-block: 40px;
}
@container (min-width: 1280px) {
  .top-staff-intro {
    position: relative;
    grid-template-columns: repeat(2, 1fr);
    gap: 120px;
    margin-block: 60px;
  }
  .top-staff-intro::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background-color: var(--color-border);
  }
}
.top-staff-intro__box {
  position: relative;
}
@container (min-width: 1024px) {
  .top-staff-intro__box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    column-gap: 28px;
  }
}
@container (min-width: 1280px) {
  .top-staff-intro__box {
    display: block;
  }
}
.top-staff-intro__image {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}
.top-staff-intro__copy {
  display: flex;
  position: absolute;
  right: 12px;
  bottom: 12px;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  row-gap: 6px;
  margin-block: 0;
}
.top-staff-intro__copy span {
  display: block;
  width: fit-content;
  padding: 1px 8px;
  border-radius: 3px;
  background-color: var(--brand-white);
  color: var(--brand-main-500);
  font-size: var(--font-base);
  font-weight: var(--font-weight-bold);
}
@container (min-width: 768px) {
  .top-staff-intro__copy span {
    font-size: var(--font-pc-heading-sm);
  }
}
.top-staff-intro__position {
  position: absolute;
  top: 0;
  left: 0;
  margin-block: 0;
  padding: 8px 12px 12px 8px;
  border-bottom-right-radius: 6px;
  background-color: var(--brand-white);
  color: var(--brand-main-500);
  font-size: var(--font-base);
  font-weight: var(--font-weight-bold);
}
@container (min-width: 768px) {
  .top-staff-intro__position {
    padding: 16px 28px 20px 20px;
    font-size: var(--font-pc-heading-sm);
  }
}
.top-staff-intro__position::before {
  bottom: -6px;
  left: 0;
  rotate: 180deg;
  content: "";
  display: block;
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: var(--brand-white);
  mask: url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/common/bg_mask.svg") no-repeat center/contain;
}
@container (min-width: 768px) {
  .top-staff-intro__position::before {
    width: 12px;
    height: 12px;
  }
}
.top-staff-intro__position::after {
  top: 0;
  right: -6px;
  rotate: 180deg;
  content: "";
  display: block;
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: var(--brand-white);
  mask: url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/common/bg_mask.svg") no-repeat center/contain;
}
.top-staff-intro__name {
  margin: 24px 8px 0;
  color: var(--brand-main-500);
  font-size: var(--font-heading-xl);
  font-weight: var(--font-weight-bold);
}
@container (min-width: 768px) {
  .top-staff-intro__name {
    font-size: var(--font-pc-heading-md);
  }
}
.top-staff-intro__name span {
  margin-left: 12px;
  opacity: 0.5;
  font-size: var(--font-base);
  vertical-align: 0.4ch;
}
@container (min-width: 768px) {
  .top-staff-intro__name span {
    font-size: var(--font-pc-base);
  }
}

/* ------------------------------
  top-table
------------------------------ */
.top-table {
  width: 100%;
  border-spacing: 1px;
  border-collapse: separate;
  border-radius: 6px;
  background-color: var(--color-border);
}
@container (min-width: 1024px) {
  .top-table {
    margin-top: 32px;
  }
}
.top-table__head {
  padding: 15px;
  background-color: var(--color-bg-transparent);
  color: var(--brand-main-500);
  font-size: var(--font-sm);
  font-weight: var(--font-weight-bold);
}
@container (min-width: 768px) {
  .top-table__head {
    font-size: var(--font-pc-base);
  }
}
.top-table__data {
  padding: 15px;
  background-color: var(--brand-white);
  font-size: 12px;
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.1em;
  text-align: center;
}
@container (min-width: 768px) {
  .top-table__data {
    font-size: var(--font-pc-base);
  }
}
.top-table tr:first-child th:first-child {
  border-top-left-radius: 5px; /* 左上の角 */
}
.top-table tr:first-child th:last-child {
  border-top-right-radius: 5px; /* 右上の角 */
}
.top-table tr:last-child td:last-child {
  border-bottom-right-radius: 5px; /* 右下の角 */
}
.top-table tr:last-child td:first-child {
  border-bottom-left-radius: 5px; /* 左下の角 */
}

/* ------------------------------
  top-treatment
------------------------------ */
.top-treatment {
  padding: 80px 24px 40px;
}
@container (min-width: 768px) {
  .top-treatment {
    padding: 160px 0;
  }
}

/* ------------------------------
  top-treatment-card
------------------------------ */
.top-treatment-card {
  margin-top: 32px;
  padding: 64px 0 0;
  border-radius: 6px;
  background: var(--brand-white) url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/common/bg_heading03.svg") no-repeat 20px 28px/20px;
}
@container (min-width: 768px) {
  .top-treatment-card {
    margin-top: 60px;
    padding-top: 116px;
    background-position: 60px 60px;
    background-size: 28px;
  }
}
.top-treatment-card__header {
  margin-inline: 20px;
  padding-bottom: 28px;
}
@container (min-width: 768px) {
  .top-treatment-card__header {
    display: grid;
    position: relative;
    grid-template-columns: 200px 1fr;
    margin-bottom: 60px;
    margin-inline: 60px;
    padding-bottom: 0;
    column-gap: 80px;
  }
  .top-treatment-card__header::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 240px;
    width: 1px;
    background-color: var(--color-border);
  }
}
.top-treatment-card__heading {
  margin-block: 0;
  color: var(--brand-main-500);
  font-size: var(--font-heading-lg);
  font-weight: var(--font-weight-bold);
}
@container (min-width: 768px) {
  .top-treatment-card__heading {
    font-size: var(--font-pc-heading-md);
  }
}
.top-treatment-card__description {
  margin-block: 8px 0;
  font-size: var(--font-base);
}
@container (min-width: 768px) {
  .top-treatment-card__description {
    margin-top: 0;
    font-size: var(--font-pc-base);
  }
}

/* ------------------------------
  seminar-access
------------------------------ */
.seminar-access {
  display: flex;
  flex-direction: column;
  row-gap: 2px;
  margin-block: 12px 16px;
  padding: 12px 0 0 28px;
  border-top: 1px solid var(--color-border);
  background: url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/icon/ico_pin.svg") no-repeat left 12px/24px;
  color: var(--brand-main-500);
  font-size: var(--font-base);
}
@container (min-width: 768px) {
  .seminar-access {
    flex-direction: row;
    border-top: 0;
    font-size: var(--font-pc-base);
  }
}

/* ------------------------------
  seminar-address
------------------------------ */
.seminar-address a:not([class]) {
  display: inline-block;
  margin-left: 4px;
  padding: 0 6px;
  border-radius: 100vh;
  background-color: transparent;
  color: var(--brand-main-500);
  font-size: 10px;
  text-decoration: none;
}
@container (min-width: 768px) {
  .seminar-address a:not([class]) {
    padding-block: 2px;
  }
}
@media (any-hover: hover) {
  .seminar-address a:not([class]):hover {
    background-color: var(--brand-main-100);
  }
}

/* ------------------------------
  seminar-anchor
------------------------------ */
.seminar-anchor {
  display: block;
  position: sticky;
  bottom: 100px;
  left: 100%;
  width: 40px;
  margin-top: -170px;
  padding: 12px 12px 30px;
  transform: translateX(24px);
  border-radius: 12px 0 0 12px;
  background-color: var(--brand-main-500);
  color: var(--brand-white);
  font-size: var(--font-base);
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  text-decoration: none;
}
@container (min-width: 1024px) {
  .seminar-anchor {
    display: none;
  }
}
.seminar-anchor::after {
  content: "";
  display: block;
  position: absolute;
  right: 50%;
  bottom: 12px;
  width: 16px;
  height: 16px;
  margin-right: -8px;
  background-color: var(--brand-white);
  mask: url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/icon/ico_arrow.svg") no-repeat center/12px;
  rotate: 90deg;
}

/* ------------------------------
  seminar-box
------------------------------ */
.seminar-box {
  display: grid;
  margin-top: 16px;
}
@container (min-width: 768px) {
  .seminar-box {
    grid-template-columns: 1fr 1fr;
    align-items: flex-start;
    column-gap: 40px;
  }
}
.seminar-box__image {
  overflow: hidden;
  border-radius: 6px;
}
.seminar-box__body {
  margin-top: 16px;
}
@container (min-width: 768px) {
  .seminar-box__body {
    margin-top: 0;
  }
}
.seminar-box__text {
  margin-block: 12px 24px;
  font-size: var(--font-base);
}
@container (min-width: 768px) {
  .seminar-box__text {
    font-size: var(--font-pc-base);
  }
}

/* ------------------------------
  seminar-data
------------------------------ */
.seminar-data {
  display: grid;
  row-gap: 2px;
  margin-block: 0;
}
.seminar-data__box {
  display: grid;
  position: relative;
  grid-template-columns: 60px 1fr;
  align-items: center;
  column-gap: 20px;
}
.seminar-data__box::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 70px;
  width: 1px;
  height: 16px;
  transform: translateY(-50%);
  background-color: var(--color-border);
}
.seminar-data__title {
  font-size: var(--font-base);
  font-weight: var(--font-weight-bold);
}
@container (min-width: 768px) {
  .seminar-data__title {
    font-weight: var(--font-weight-regular);
  }
}
.seminar-data__data {
  margin-left: 0;
  color: var(--brand-main-500);
  font-size: var(--font-base);
}
@container (min-width: 768px) {
  .seminar-data__data {
    font-size: var(--font-pc-base);
  }
}
.seminar-data__more {
  display: inline-flex;
  margin-left: 12px;
  padding: 2px 6px;
  border-radius: 100vh;
  background-color: var(--color-bg);
  color: var(--brand-main-500);
  font-size: var(--font-base);
}

/* ------------------------------
  seminar-entry
------------------------------ */
.seminar-entry {
  display: grid;
  row-gap: 10px;
  margin-top: 16px;
}
@container (min-width: 768px) {
  .seminar-entry {
    grid-template-columns: 1fr 1fr;
    column-gap: 16px;
  }
}
.seminar-entry__box {
  display: grid;
  grid-template-columns: 1fr 92px;
  align-items: center;
  padding: 10px 16px;
  column-gap: 16px;
  border-radius: 6px;
  background-color: var(--brand-white);
  font-size: var(--font-base);
  font-weight: var(--font-weight-bold);
}
@container (min-width: 768px) {
  .seminar-entry__box {
    grid-template-columns: 1fr;
    row-gap: 12px;
    padding: 16px;
    font-size: var(--font-pc-base);
  }
}
.seminar-select .seminar-entry__box {
  grid-template-columns: 1fr;
  padding: 0;
}

/* ------------------------------
  seminar-flow
------------------------------ */
.seminar-flow {
  position: relative;
  height: 140px;
  overflow: hidden;
}
@container (max-width: 767.9px) {
  .seminar-flow {
    transition: height 0.3s ease;
  }
}
@container (min-width: 768px) {
  .seminar-flow {
    height: auto;
    overflow: visible;
  }
}
.seminar-flow__list {
  margin-block: 16px 0;
  padding-left: 0;
  list-style: none;
  counter-reset: count;
}
@container (min-width: 768px) {
  .seminar-flow__list {
    margin-top: 32px;
  }
}
.seminar-flow__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}
.seminar-flow__item::before {
  content: counter(count);
  display: grid;
  place-content: center;
  box-sizing: border-box;
  width: 28px;
  height: 28px;
  margin-right: 10px;
  border-radius: 50%;
  color: var(--brand-main-500);
  font-family: var(--font-family-en);
  font-size: var(--font-base);
  font-weight: var(--font-weight-medium);
  line-height: 1;
  text-align: center;
  counter-increment: count;
}
@container (min-width: 768px) {
  .seminar-flow__item::before {
    width: 32px;
    height: 32px;
    background-color: var(--color-bg-main);
    font-size: var(--font-pc-base);
  }
}
.seminar-flow__title {
  margin-block: 0;
  padding-block: 16px;
  border-top: 1px solid var(--color-border);
  color: var(--brand-main-500);
  font-size: var(--font-heading-sm);
  font-weight: var(--font-weight-bold);
}
@container (min-width: 768px) {
  .seminar-flow__title {
    font-size: var(--font-pc-heading-sm);
  }
}
.seminar-flow__title span {
  display: block;
  color: var(--text);
  font-size: var(--font-base);
  font-weight: var(--font-weight-regular);
}
@container (min-width: 768px) {
  .seminar-flow__title span {
    font-size: var(--font-pc-sm);
  }
}
li:last-child .seminar-flow__title {
  border-bottom: 1px solid var(--color-border);
}
.seminar-flow__time {
  display: flex;
  align-items: center;
  align-self: stretch;
  margin-block: 0;
  padding-block: 16px;
  border-top: 1px solid var(--color-border);
  color: var(--brand-main-500);
  font-size: var(--font-base);
}
@container (min-width: 768px) {
  .seminar-flow__time {
    font-size: var(--font-pc-base);
  }
}
.seminar-flow__time b {
  margin-right: 4px;
  font-family: var(--font-family-en);
  font-weight: var(--font-weight-medium);
}
@container (min-width: 768px) {
  .seminar-flow__time b {
    font-size: var(--font-pc-heading-sm);
  }
}
li:last-child .seminar-flow__time {
  border-bottom: 1px solid var(--color-border);
}
.seminar-flow__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 16px;
  background: var(--gradient-white-transparent);
}
.seminar-flow__overlay:has([aria-expanded=true]) {
  display: none;
}
.seminar-flow__button {
  margin-inline: auto;
}
.seminar-flow__button::after {
  display: none;
}

/* ------------------------------
  seminar-header
------------------------------ */
.seminar-header__title {
  margin-block: 0;
  font-size: var(--font-heading-xl);
  font-weight: var(--font-weight-bold);
}
@container (min-width: 768px) {
  .seminar-header__title {
    font-size: var(--font-pc-heading-md);
  }
}

/* ------------------------------
  seminar-images
------------------------------ */
.seminar-images {
  margin: 40px -24px 0;
  overflow: hidden;
}
@container (min-width: 768px) {
  .seminar-images {
    margin-inline: -62px;
  }
}
@container (min-width: 1024px) {
  .seminar-images {
    margin-inline: 0;
  }
}
.seminar-images:not(.swiper-initialized) {
  margin-inline: 0;
}
.seminar-images:not(.swiper-initialized) .seminar-images__wrap {
  display: flex;
  justify-content: center;
  column-gap: 8px;
}
.seminar-images__slide {
  width: fit-content;
  overflow: hidden;
  border-radius: 3px;
}
.seminar-images:not(.swiper-initialized) .seminar-images__slide {
  max-width: calc(50% - 4px);
}
@container (min-width: 768px) {
  .seminar-images__slide {
    border-radius: 6px;
  }
}
.seminar-images__slide img {
  width: 200px;
  height: auto;
}
@container (min-width: 768px) {
  .seminar-images__slide img {
    width: 360px;
  }
}

/* ------------------------------
  seminar-movie-list
------------------------------ */
.seminar-movie-list {
  display: grid;
  gap: 16px;
  padding-left: 0;
  list-style: none;
}
@container (min-width: 768px) {
  .seminar-movie-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}
.seminar-movie-list__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.seminar-movie-list__title {
  position: relative;
  margin-block: 0;
  gap: 5px;
  padding-left: 23px;
  font-weight: var(--font-weight-medium);
}
@container (min-width: 768px) {
  .seminar-movie-list__title {
    padding-left: 34px;
  }
}
.seminar-movie-list__number {
  display: grid;
  position: absolute;
  top: 0;
  left: 0;
  place-content: center;
  box-sizing: border-box;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 0.35ch;
  border: 1px solid var(--brand-main-500);
  border-radius: 50%;
  font-family: var(--font-family-en);
  font-weight: var(--font-weight-medium);
  line-height: 1;
  text-align: center;
  counter-increment: count;
}
@container (min-width: 768px) {
  .seminar-movie-list__number {
    width: 24px;
    height: 24px;
    font-size: var(--font-pc-base);
  }
}
.seminar-movie-list__movie {
  overflow: hidden;
  border-radius: 6px;
  background-color: #ccc;
  aspect-ratio: 16/9;
}
.seminar-movie-list__movie iframe {
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
}
.seminar-movie-list__text {
  margin-block: 0;
}

/* ------------------------------
  seminar-point
------------------------------ */
.seminar-point {
  margin-block: 16px 0;
  padding-left: 0;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  list-style: none;
}
@container (min-width: 768px) {
  .seminar-point {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.seminar-point__item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  padding: 14px 12px;
  column-gap: 10px;
  border-top: 1px solid var(--color-border);
  color: var(--brand-main-500);
  font-size: var(--font-heading-sm);
  font-weight: var(--font-weight-bold);
}
.seminar-point__item:first-child {
  border-top: none;
}
@container (min-width: 768px) {
  .seminar-point__item {
    padding: 20px;
    column-gap: 16px;
    font-size: var(--font-pc-base);
  }
  .seminar-point__item:nth-child(-n+2) {
    border-top: none;
  }
  .seminar-point__item:nth-child(odd) {
    border-right: 1px solid var(--color-border);
  }
}
.seminar-point__item::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/seminar/ico_point.svg") no-repeat center/contain;
}
@container (min-width: 768px) {
  .seminar-point__item::before {
    width: 20px;
    height: 20px;
  }
}

/* ------------------------------
  seminar-schedule
------------------------------ */
.seminar-schedule {
  display: flex;
  column-gap: 6px;
  color: var(--brand-main-500);
}
@container (min-width: 768px) {
  .seminar-schedule {
    column-gap: 10px;
  }
}
.seminar-select .seminar-schedule {
  position: relative;
  flex-wrap: wrap;
  padding: 10px 16px 10px 44px;
  cursor: pointer;
}
@container (min-width: 768px) {
  .seminar-select .seminar-schedule {
    padding: 16px 16px 16px 44px;
  }
}
.seminar-select .seminar-schedule::before {
  position: absolute;
  left: 16px;
}
.seminar-select .seminar-schedule::after {
  position: absolute;
  top: 16px;
  left: 21px;
}
@container (min-width: 768px) {
  .seminar-select .seminar-schedule::after {
    top: 24px;
  }
}
.seminar-select .seminar-schedule--confirm {
  padding: 0;
}
.seminar-select .seminar-schedule__box {
  display: flex;
  gap: 8px;
  align-items: flex-end;
}
@container (min-width: 768px) {
  .seminar-select .seminar-schedule__box {
    display: block;
  }
}
.seminar-schedule--archive .seminar-schedule__box {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.seminar-select .seminar-schedule--confirm .seminar-schedule__box {
  display: flex;
  gap: 8px;
  align-items: flex-end;
}
.seminar-schedule__date {
  display: block;
  margin-block: 0;
  font-size: var(--font-heading-md);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-sm);
}
@container (min-width: 768px) {
  .seminar-schedule__date {
    font-size: var(--font-pc-heading-sm);
  }
}
.seminar-schedule__date span {
  display: inline-block;
  margin-left: 4px;
  font-size: var(--font-base);
  font-weight: var(--font-weight-regular);
}
@container (min-width: 768px) {
  .seminar-schedule__date span {
    font-size: var(--font-pc-sm);
  }
}
.seminar-schedule__time {
  display: block;
  margin-block: 0;
  color: var(--brand-main-500);
  font-size: var(--font-base);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-sm);
}
@container (min-width: 768px) {
  .seminar-schedule__time {
    font-size: var(--font-pc-base);
  }
}
.seminar-schedule__text {
  width: 100%;
  margin-block: 0;
  color: var(--brand-main-500);
  font-size: var(--font-base);
  font-weight: var(--font-weight-regular);
}
@container (min-width: 768px) {
  .seminar-schedule__text {
    display: block;
    font-size: var(--font-pc-sm);
  }
}

/* ------------------------------
  seminar-select
------------------------------ */
.seminar-select__box {
  margin-bottom: 32px;
  padding: 20px;
  border-radius: 6px;
  background-color: var(--color-bg-main);
}
@container (min-width: 768px) {
  .seminar-select__box {
    margin-bottom: 40px;
    padding: 40px;
  }
}
.seminar-select__heading {
  display: grid;
  margin-block: 8px 20px;
  row-gap: 4px;
  color: var(--brand-main-500);
  font-size: var(--font-heading-lg);
  font-weight: var(--font-weight-bold);
}
@container (min-width: 768px) {
  .seminar-select__heading {
    grid-template-columns: auto 1fr;
    align-items: center;
    margin-bottom: 32px;
    column-gap: 20px;
    font-size: var(--font-pc-heading-md);
  }
}
.seminar-select__map {
  display: inline-block;
  position: relative;
  margin-left: 4px;
  padding: 0 6px;
  border-radius: 100vh;
  background-color: var(--brand-main-100);
  color: var(--brand-main-500);
  font-size: 10px;
  font-weight: var(--font-weight-bold);
  text-decoration: none;
}
@container (min-width: 768px) {
  .seminar-select__map {
    padding-block: 2px;
  }
}
.seminar-select__map::before {
  content: "";
  position: absolute;
  transition: opacity 0.2s ease;
  border-radius: 100vh;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.08);
  pointer-events: none;
  inset: 0;
}
@media (any-hover: hover) {
  .seminar-select__map:hover::before {
    opacity: 1;
  }
}

/* ------------------------------
  seminar-tag
------------------------------ */
.seminar-tag {
  display: flex;
  margin-block: 16px 0;
  padding-left: 0;
  gap: 8px;
  color: var(--brand-main-500);
  list-style: none;
}
.seminar-tag__item {
  padding: 2px 6px;
  border-radius: 4px;
  background-color: var(--color-bg-main);
  font-size: var(--font-base);
}
@container (min-width: 768px) {
  .seminar-tag__item {
    padding: 6px 16px;
    font-size: var(--font-pc-base);
  }
}

/* ------------------------------
  seminar-tag-archive
------------------------------ */
.seminar-tag-archive {
  display: flex;
  align-items: center;
  width: fit-content;
  padding: 8px 12px;
  column-gap: 6px;
  border-radius: 10px;
  background-color: var(--color-bg-transparent);
  color: var(--brand-main-500);
  font-size: var(--font-base);
  font-weight: var(--font-weight-bold);
}
.modal .seminar-tag-archive {
  position: absolute;
  top: 0;
  right: 0;
}
.seminar-type .seminar-tag-archive {
  position: absolute;
  top: 20px;
  right: 20px;
}
@container (min-width: 768px) {
  .seminar-type .seminar-tag-archive {
    top: 40px;
    right: 40px;
  }
}
.seminar-tag-archive::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/seminar/ico_archive.svg") no-repeat center/24px;
}

/* ------------------------------
  seminar-tag-live
------------------------------ */
.seminar-tag-live {
  display: flex;
  align-items: center;
  width: fit-content;
  padding: 8px 12px;
  column-gap: 6px;
  border-radius: 10px;
  background-color: var(--color-bg-transparent);
  color: var(--brand-main-500);
  font-size: var(--font-base);
  font-weight: var(--font-weight-bold);
}
.modal .seminar-tag-live {
  position: absolute;
  top: 0;
  right: 0;
}
.seminar-type .seminar-tag-live {
  position: absolute;
  top: 20px;
  right: 20px;
}
@container (min-width: 768px) {
  .seminar-type .seminar-tag-live {
    top: 40px;
    right: 40px;
  }
}
.seminar-tag-live::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/seminar/ico_live.svg") no-repeat center/24px;
}

/* ------------------------------
  seminar-title
------------------------------ */
.seminar-title {
  margin-block: 40px 4px;
  color: var(--brand-main-500);
  font-size: var(--font-heading-xl);
  font-weight: var(--font-weight-bold);
}
@container (min-width: 768px) {
  .seminar-title {
    margin-block: 80px 12px;
    font-size: var(--font-pc-heading-md);
  }
}
.seminar-title:first-child {
  margin-top: 0;
}
.heading02 + .seminar-title {
  margin-block: 0;
}

/* ------------------------------
  seminar-trend
------------------------------ */
.seminar-trend {
  margin-inline: -24px;
  overflow: scroll;
}
@container (min-width: 768px) {
  .seminar-trend {
    overflow: visible;
  }
}
.seminar-trend__wrap {
  display: flex;
  width: fit-content;
  padding-inline: 24px;
  column-gap: 16px;
}
@container (min-width: 768px) {
  .seminar-trend__wrap {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 40px;
    padding-inline: 0;
  }
}
.seminar-trend__item {
  width: minmax(260px, 66vw);
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
}
@container (min-width: 768px) {
  .seminar-trend__item {
    display: grid;
    grid-template-columns: 160px 1fr;
    align-items: center;
    width: auto;
    padding: 32px;
    gap: 24px 28px;
  }
}
.seminar-trend__chart {
  width: 160px;
  margin: 20px auto;
}
@container (min-width: 768px) {
  .seminar-trend__chart {
    margin: 0;
  }
}
.seminar-trend__title {
  margin-block: 0;
  color: var(--brand-main-500);
  font-size: var(--font-heading-md);
  font-weight: var(--font-weight-bold);
  text-align: center;
}
@container (min-width: 768px) {
  .seminar-trend__title {
    grid-column: span 2;
    font-size: var(--font-pc-heading-sm);
  }
}
.seminar-trend__note {
  margin-block: 12px 0;
  color: var(--text-support);
  font-size: var(--font-sm);
  line-height: var(--line-height-xs);
}
@container (min-width: 768px) {
  .seminar-trend__note {
    font-size: var(--font-pc-sm);
  }
}

/* ------------------------------
  seminar-trend-legend
------------------------------ */
.seminar-trend-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
  margin-block: 0;
  padding-left: 0;
  list-style: none;
}
@container (min-width: 768px) {
  .seminar-trend-legend {
    flex-direction: column;
    row-gap: 6px;
  }
}
.seminar-trend-legend__item {
  font-size: var(--font-base);
  font-weight: var(--font-weight-bold);
}
.seminar-trend-legend__item--blue {
  font-size: var(--font-pc-sm);
}
.seminar-trend-legend__color {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 6px;
  border-radius: 100%;
  vertical-align: -2px;
}
.seminar-trend-legend__color--01 {
  background-color: #112a61;
}
.seminar-trend-legend__color--02 {
  background-color: #364a7a;
}
.seminar-trend-legend__color--03 {
  background-color: #657599;
}
.seminar-trend-legend__color--04 {
  background-color: #8894b0;
}
.seminar-trend-legend__color--05 {
  background-color: #a5aec3;
}
.seminar-trend-legend__color--06 {
  background-color: #bfc5d5;
}
.seminar-trend-legend__color--07 {
  background-color: #b8bfd0;
}
.seminar-trend-legend__color--08 {
  background-color: #dcdde1;
}
.seminar-trend-legend__color--09 {
  background-color: #dcdde1;
}

/* ------------------------------
  seminar-type
------------------------------ */
.seminar-type {
  margin-bottom: 40px;
  border-radius: 6px;
  background-color: var(--color-bg);
}
@container (min-width: 768px) {
  .seminar-type {
    display: grid;
    grid-template-columns: 280px 1fr;
  }
}
.seminar-type__header {
  position: relative;
  padding: 20px;
}
@container (min-width: 768px) {
  .seminar-type__header {
    padding: 40px;
    border-right: 1px solid var(--color-border);
  }
}
.seminar-type__number {
  width: fit-content;
  margin-block: 0;
  color: var(--brand-main-500);
  font-family: var(--font-family-en);
  font-size: var(--font-heading-lg);
  font-weight: var(--font-weight-medium);
  position: relative;
}
.seminar-type__number::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  /* 単位を px にする */
  height: 2px;
  background: var(--gradient-brand);
}
@container (min-width: 768px) {
  .seminar-type__number {
    font-size: var(--font-pc-heading-sm);
  }
}
.seminar-type__title {
  margin-block: 12px 0;
  color: var(--brand-main-500);
  font-size: var(--font-heading-xl);
  font-weight: var(--font-weight-bold);
}
@container (min-width: 768px) {
  .seminar-type__title {
    margin-top: 20px;
    font-size: var(--font-pc-heading-md);
  }
}
.seminar-type__description {
  margin-block: 6px 0;
  font-size: var(--font-heading-sm);
  font-weight: var(--font-weight-bold);
}
@container (min-width: 768px) {
  .seminar-type__description {
    font-size: var(--font-pc-base);
  }
}
@container (min-width: 768px) {
  .seminar-type__detail {
    padding: 40px;
  }
}
.seminar-type__detail .heading04 {
  margin-block: 0 16px;
}
.seminar-type__overview {
  display: none;
}
@container (min-width: 768px) {
  .seminar-type__overview {
    display: contents;
  }
}
.seminar-type__box {
  padding: 20px;
  border-top: 1px solid var(--color-border);
}
.seminar-type__box:first-child {
  padding-top: 0;
  border-top: 0;
}
@container (min-width: 768px) {
  .seminar-type__box {
    margin-top: 40px;
    padding: 0;
    border-top: 0;
  }
  .seminar-type__box:first-child {
    margin-top: 0;
    padding-top: 0;
  }
}
.seminar-type__button {
  width: 100%;
}
@container (min-width: 768px) {
  .seminar-type__button {
    display: none;
  }
}
.seminar-type__button::after {
  display: none;
}
.seminar-type__button[aria-expanded=true] {
  display: none;
}
.seminar-type .table-data th {
  font-weight: var(--font-weight-regular);
}
.seminar-type .table-data td:not(.seminar-address) {
  font-weight: var(--font-weight-bold);
}

/* ------------------------------
  news-list
------------------------------ */
.news-list {
  margin-top: 40px;
}
@container (min-width: 1024px) {
  .news-list {
    margin-top: 0;
    margin-left: 40px;
  }
}

/* ------------------------------
  staff-description
------------------------------ */
.staff-description {
  margin-block: 0;
  padding-left: 24px;
  font-size: 13px;
  line-height: 1.8;
}
@container (min-width: 768px) {
  .staff-description {
    padding-bottom: 40px;
    padding-left: 36px;
    border-bottom: 1px solid #F0F1F5;
    font-size: 16px;
  }
}

/* ------------------------------
  staff-list
------------------------------ */
.staff-list {
  margin-block: 0;
  padding-inline: 0;
  list-style: none;
}
@container (min-width: 768px) {
  .staff-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}
.staff-list__item {
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: center;
  margin-top: 28px;
  padding-bottom: 28px;
  gap: 16px;
  border-bottom: 1px solid #F0F1F5;
}
.staff-list__item:first-of-type {
  margin-top: 0;
}
.staff-list__item:last-of-type {
  padding-bottom: 0;
  border-bottom: none;
}
@container (min-width: 768px) {
  .staff-list__item {
    display: flex;
    flex-direction: column;
    margin-top: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
}
.staff-list__image {
  align-self: flex-start;
  margin-block: 0;
  margin-inline: 0;
  overflow: hidden;
  border-radius: 3px;
}
@container (min-width: 768px) {
  .staff-list__image {
    border-radius: 6px;
  }
}
.staff-list__info {
  position: relative;
  width: 100%;
}
@container (min-width: 768px) {
  .staff-list__info {
    padding-inline: 8px;
  }
}
.staff-list__name {
  margin-block: 0;
  color: #122A62;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.5;
}
@container (min-width: 768px) {
  .staff-list__name {
    font-size: 16px;
  }
}
.staff-list__name span {
  display: block;
  opacity: 0.5;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.01em;
}
@container (min-width: 768px) {
  .staff-list__name span {
    font-size: 14px;
  }
}
.staff-list__icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #F0F1F5;
}
@container (min-width: 768px) {
  .staff-list__icon {
    width: 32px;
    height: 32px;
  }
}
.staff-list__icon::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  transform: translate(-50%, -50%);
  background-color: var(--brand-main-500);
  mask: url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/icon/ico_modal.svg") no-repeat center/12px;
}

/* ------------------------------
  staff-profile
------------------------------ */
.staff-profile {
  margin-top: 40px;
  padding-bottom: 40px;
}
@container (min-width: 768px) {
  .staff-profile {
    display: grid;
    grid-template-columns: 455px 1fr;
    gap: 40px;
    margin-top: 80px;
    padding-bottom: 0;
  }
}
.staff-profile__image {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}
@container (min-width: 768px) {
  .staff-profile__image {
    height: fit-content;
    border-radius: 12px;
  }
}
.staff-profile__position {
  position: absolute;
  top: 0;
  left: 0;
  margin-block: 0;
  padding: 8px 12px 12px 8px;
  border-bottom-right-radius: 6px;
  background-color: var(--brand-white);
  color: var(--brand-main-500);
  font-size: var(--font-heading-sm);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-lg);
}
@container (min-width: 768px) {
  .staff-profile__position {
    padding: 16px 28px 20px 20px;
    font-size: var(--font-pc-base);
  }
}
.staff-profile__position::before {
  bottom: -6px;
  left: 0;
  rotate: 180deg;
  content: "";
  display: block;
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: var(--brand-white);
  mask: url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/common/bg_mask.svg") no-repeat center/contain;
}
@container (min-width: 768px) {
  .staff-profile__position::before {
    width: 12px;
    height: 12px;
  }
}
.staff-profile__position::after {
  top: 0;
  right: -6px;
  rotate: 180deg;
  content: "";
  display: block;
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: var(--brand-white);
  mask: url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/common/bg_mask.svg") no-repeat center/contain;
}
.staff-profile__description {
  padding: 24px 8px;
}
@container (min-width: 768px) {
  .staff-profile__description {
    padding: 0;
  }
}
.staff-profile__name {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-block: 0;
  color: var(--brand-main-500);
  font-size: var(--font-heading-xl);
  font-weight: var(--font-weight-medium);
  letter-spacing: var(--letter-spacing-lg);
  line-height: var(--line-height-xs);
}
@container (min-width: 768px) {
  .staff-profile__name {
    font-size: var(--font-pc-heading-md);
  }
}
.staff-profile__name span {
  opacity: 0.5;
  color: var(--brand-main-500);
  font-size: var(--font-base);
}
@container (min-width: 768px) {
  .staff-profile__name span {
    font-size: var(--font-pc-base);
  }
}
.staff-profile__content {
  padding: 24px 8px;
  border-top: 1px solid var(--color-border);
}
@container (min-width: 768px) {
  .staff-profile__content {
    padding: 32px 0;
    border-top: none;
  }
}
.staff-profile__copy {
  margin-block: 0;
  color: var(--brand-main-500);
  font-size: var(--font-heading-md);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-lg);
  line-height: var(--line-height-xs);
}
@container (min-width: 768px) {
  .staff-profile__copy {
    font-size: var(--font-pc-base);
    line-height: var(--line-height-lg);
  }
}
.staff-profile__text {
  margin-top: 12px;
  margin-bottom: 0;
  color: var(--brand-black-900);
  font-size: var(--font-base);
}
@container (min-width: 768px) {
  .staff-profile__text {
    margin-top: 16px;
    font-size: var(--font-pc-base);
  }
}

/* ------------------------------
  treatment-seminar
------------------------------ */
.treatment-seminar {
  display: grid;
  row-gap: 16px;
  margin-top: 16px;
  padding: 24px;
  border-radius: 3px;
  background-color: var(--color-bg);
}
@container (min-width: 768px) {
  .treatment-seminar {
    grid-template-columns: 284px 1fr;
    gap: 20px 40px;
    margin-top: 80px;
    padding: 28px;
  }
}
.treatment-seminar__title {
  margin-block: 0;
  color: var(--brand-main-500);
  font-size: var(--font-heading-md);
  font-weight: var(--font-weight-bold);
}
@container (min-width: 768px) {
  .treatment-seminar__title {
    grid-column: span 2;
    font-size: var(--font-pc-heading-sm);
  }
}
.treatment-seminar__image {
  overflow: hidden;
  border-radius: 3px;
}
@container (min-width: 768px) {
  .treatment-seminar__image {
    border-radius: 6px;
  }
}
.treatment-seminar__copy {
  margin-block: 0 4px;
  font-size: var(--font-base);
  font-weight: var(--font-weight-bold);
}
@container (min-width: 768px) {
  .treatment-seminar__copy {
    font-size: var(--font-pc-base);
  }
}
.treatment-seminar__text {
  margin: 0;
  font-size: var(--font-base);
}
@container (min-width: 768px) {
  .treatment-seminar__text {
    font-size: var(--font-pc-sm);
  }
}

/* ------------------------------
  treatment-case
------------------------------ */
.treatment-case {
  display: grid;
  gap: 16px;
  margin-block: 0 16px;
  padding-left: 0;
  list-style: none;
}
@container (min-width: 768px) {
  .treatment-case {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 24px;
    gap: 20px;
  }
}
.treatment-case__item {
  display: grid;
  grid-template-columns: 48px 1fr;
  padding: 18px 20px;
  column-gap: 20px;
  border-radius: 3px;
  background-color: var(--color-bg);
  color: var(--brand-main-500);
}
@container (min-width: 768px) {
  .treatment-case__item {
    grid-template-columns: 72px 1fr;
    padding: 24px;
    column-gap: 28px;
    border-radius: 6px;
  }
}
.treatment-case__image {
  grid-row: span 2;
}
.treatment-case__image--single {
  grid-row: auto;
}
.treatment-case__text {
  margin-block: 0;
  font-size: var(--font-heading-sm);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-sm);
}
@container (min-width: 768px) {
  .treatment-case__text {
    font-size: var(--font-pc-base);
  }
}
.treatment-case__case {
  align-self: center;
  margin-block: 0;
  font-family: var(--font-family-mix);
  font-size: var(--font-heading-md);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-xs);
}
@container (min-width: 768px) {
  .treatment-case__case {
    font-size: var(--font-pc-heading-sm);
  }
}
.treatment-case__value {
  margin-inline: 6px 4px;
  font-family: var(--font-family-en);
  font-size: var(--font-heading-xxl);
  font-weight: var(--font-weight-medium);
  position: relative;
}
.treatment-case__value::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  /* 単位を px にする */
  height: 2px;
  background: var(--gradient-brand);
}
@container (min-width: 768px) {
  .treatment-case__value {
    font-size: var(--font-pc-heading-lg);
  }
}
.treatment-case__value span {
  font-size: var(--font-heading-xl);
}
@container (min-width: 768px) {
  .treatment-case__value span {
    font-size: var(--font-pc-heading-sm);
  }
}

/* ------------------------------
  treatment-description
------------------------------ */
.treatment-description {
  display: grid;
  margin-bottom: 24px;
}
@container (min-width: 768px) {
  .treatment-description {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 40px;
    column-gap: 40px;
  }
}

/* ------------------------------
  treatment-flow
------------------------------ */
.treatment-flow {
  display: grid;
  row-gap: 16px;
  margin-block: 16px 0;
  padding-left: 0;
  list-style: none;
}
.treatment-flow__item {
  overflow: hidden;
  border-radius: 6px;
  background-color: var(--color-bg);
}
.treatment-flow__title {
  position: relative;
  width: 100%;
  padding: 20px 62px 16px 20px;
  transition: background-color 0.2s ease;
  border: 0;
  background-color: transparent;
  color: var(--brand-main-500);
  font-size: var(--font-heading-lg);
  font-weight: var(--font-weight-bold);
  text-align: left;
}
@container (min-width: 768px) {
  .treatment-flow__title {
    font-size: var(--font-pc-heading-sm);
  }
}
@media (any-hover: hover) {
  .treatment-flow__item:not(.is-open):hover .treatment-flow__title {
    background-color: var(--brand-black-100);
  }
}
.treatment-flow__title span[class^=icon] {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 32px;
  height: 32px;
  transform: translateY(-50%);
}
.treatment-flow__step {
  display: block;
  font-family: var(--font-family-en);
  font-size: var(--font-heading-sm);
  font-weight: var(--font-weight-medium);
}
@container (min-width: 768px) {
  .treatment-flow__step {
    font-size: var(--font-pc-base);
  }
}
.treatment-flow__content {
  display: none;
}

/* ------------------------------
  treatment-flow-data
------------------------------ */
.treatment-flow-data {
  padding: 16px 20px;
  border-top: 1px solid var(--color-border);
}
@container (min-width: 768px) {
  .treatment-flow-data {
    display: grid;
    grid-template-columns: 72px 1fr;
    padding: 20px 24px;
    column-gap: 24px;
  }
}
.treatment-flow-data__label {
  color: var(--brand-main-500);
  font-size: var(--font-heading-sm);
  font-weight: var(--font-weight-bold);
}
@container (min-width: 768px) {
  .treatment-flow-data__label {
    font-size: var(--font-pc-base);
  }
}
.treatment-flow-data__label::before {
  content: "";
  margin-right: 8px;
  vertical-align: 3px;
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background-color: var(--brand-accent-red);
}
@container (min-width: 768px) {
  .treatment-flow-data__label::before {
    width: 6px;
    height: 6px;
  }
}
.treatment-flow-data__period {
  margin-left: 12px;
  color: var(--brand-main-500);
  font-size: var(--font-base);
}
@container (min-width: 768px) {
  .treatment-flow-data__period {
    font-size: var(--font-pc-base);
  }
}
.treatment-flow-data__data {
  margin-left: 12px;
  font-size: var(--font-base);
}
.treatment-flow-data__title {
  margin-block: 8px 0;
  font-size: var(--font-heading-sm);
  font-weight: var(--font-weight-bold);
}
.treatment-flow-data__text {
  margin-block: 0;
  font-size: var(--font-base);
}
@container (min-width: 768px) {
  .treatment-flow-data__text {
    font-size: var(--font-pc-sm);
  }
}

/* ------------------------------
  treatment-movie
------------------------------ */
.treatment-movie {
  display: grid;
  place-content: center;
  overflow: hidden;
  border-radius: 6px;
}
@container (min-width: 768px) {
  .treatment-movie {
    padding: 20px;
    background-color: var(--color-bg-main);
  }
}
.treatment-movie > div {
  width: calc(100vw - 48px);
  height: 194px;
}
@container (min-width: 768px) {
  .treatment-movie > div {
    width: 427px;
    height: 240px;
  }
}

/* ------------------------------
  treatment-optional
------------------------------ */
.treatment-optional {
  display: grid;
  row-gap: 16px;
  margin-block: 16px 0;
  padding-left: 0;
  list-style: none;
}
.treatment-optional__item {
  overflow: hidden;
  transition: background-color 0.2s ease;
  border-radius: 6px;
  background-color: var(--color-bg);
}
@media (any-hover: hover) {
  .treatment-optional__item:not(.is-open):hover {
    background-color: var(--brand-black-100);
  }
}
.treatment-optional__title {
  position: relative;
  width: 100%;
  padding: 16px 62px 16px 20px;
  border: 0;
  background-color: transparent;
  color: var(--brand-main-500);
  font-size: var(--font-heading-sm);
  font-weight: var(--font-weight-bold);
  text-align: left;
}
@container (min-width: 768px) {
  .treatment-optional__title {
    font-size: var(--font-pc-base);
  }
  .treatment-optional__title::before {
    content: "";
    margin-right: 8px;
    vertical-align: 3px;
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background-color: var(--brand-accent-red);
  }
}
.treatment-optional__title span[class^=icon] {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 32px;
  height: 32px;
  transform: translateY(-50%);
}
.treatment-optional__content {
  display: none;
  padding: 0 20px 16px;
}

/* ------------------------------
  treatment-optional-list
------------------------------ */
.treatment-optional-list {
  display: grid;
  margin: 0;
  padding-left: 0;
  color: var(--brand-main-500);
  list-style: none;
  gap: 12px;
}
@container (min-width: 768px) {
  .treatment-optional-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
.treatment-optional-list__card {
  position: relative;
  padding: 16px;
  border-radius: 4px;
  background-color: var(--brand-white);
}
@container (min-width: 768px) {
  .treatment-optional-list__card {
    padding: 24px;
    border-radius: 6px;
  }
}
.treatment-optional-list__heading {
  position: relative;
  margin-block: 0;
  padding-right: 44px;
  font-size: var(--font-heading-md);
  font-weight: var(--font-weight-bold);
}
@container (min-width: 768px) {
  .treatment-optional-list__heading {
    font-size: var(--font-pc-base);
  }
}
.treatment-optional-list__heading::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 1px;
  right: 0;
  width: 24px;
  height: 24px;
  transition: background 0.2s ease;
  border-radius: 100%;
  background: var(--color-bg) url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/icon/ico_modal.svg") no-repeat center/14px;
}
@media (any-hover: hover) {
  .treatment-optional-list__heading {
    cursor: pointer;
  }
  .treatment-optional-list__heading:hover::after {
    background: var(--brand-main-500) url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/icon/ico_modal_white.svg") no-repeat center/14px;
  }
}
.treatment-optional-list__application {
  margin-block: 4px 0;
  font-size: var(--font-base);
}
@container (min-width: 768px) {
  .treatment-optional-list__application {
    margin-block: 8px 0;
    font-size: var(--font-pc-sm);
  }
}

/* ------------------------------
  treatment-relations
------------------------------ */
.treatment-relations {
  display: grid;
  margin-top: 16px;
  padding: 20px 20px 16px;
  row-gap: 16px;
  border-radius: 6px;
  background-color: var(--color-bg-transparent);
}
@container (min-width: 768px) {
  .treatment-relations {
    margin-top: 24px;
    padding: 4px 20px;
    row-gap: 0;
  }
}
@container (min-width: 768px) {
  .treatment-relations__box {
    display: grid;
    grid-template-columns: 160px 1fr;
    align-items: start;
    padding-block: 12px;
    column-gap: 16px;
    border-top: 1px solid var(--color-border-transparent);
  }
  .treatment-relations__box:first-child {
    border-top: none;
  }
}
.treatment-relations__title {
  display: flex;
  align-items: center;
  margin-block: 0 8px;
  column-gap: 8px;
  color: var(--brand-main-500);
  font-size: var(--font-heading-sm);
  font-weight: var(--font-weight-bold);
}
@container (min-width: 768px) {
  .treatment-relations__title {
    margin-block: 0;
    column-gap: 12px;
    font-size: var(--font-pc-base);
  }
}
.treatment-relations__content {
  margin-left: 0;
}
@container (min-width: 768px) {
  .treatment-relations__content {
    align-self: center;
  }
}
.treatment-relations__content:not(:last-child) {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border-transparent);
}

/* ------------------------------
  treatment-slider
------------------------------ */
.treatment-slider {
  position: relative;
  margin-inline: -24px;
  padding-top: 24px;
  overflow: hidden;
}
@container (min-width: 768px) {
  .treatment-slider {
    margin-inline: -62px;
    padding-top: 40px;
  }
}
@container (min-width: 1024px) {
  .treatment-slider {
    margin-inline: 0;
    overflow: visible;
  }
}
.treatment-slider__view {
  overflow: hidden;
}
.treatment-slider__content {
  width: calc(100vw - 96px);
  margin-inline: auto;
  overflow: visible;
}
@container (min-width: 768px) {
  .treatment-slider__content {
    width: 40vw;
    margin-inline: 0;
    padding-bottom: 0;
  }
}
@container (min-width: 1024px) {
  .treatment-slider__content {
    width: 29vw;
    margin-inline: 0;
    padding-bottom: 0;
  }
}
@container (min-width: 1280px) {
  .treatment-slider__content {
    width: 455px;
    padding-bottom: 0;
  }
}
.treatment-slider__image {
  box-sizing: content-box;
  margin-left: 24px;
}
@container (min-width: 768px) {
  .treatment-slider__image {
    margin-left: 40px;
  }
}
.treatment-slider:has(.swiper-initialized) .treatment-slider__image {
  margin-left: 0;
}
.treatment-slider__image:first-child {
  margin-left: 0;
}
@container (min-width: 768px) {
  .treatment-slider__image:first-child {
    padding-left: 62px;
  }
}
@container (min-width: 1024px) {
  .treatment-slider__image:first-child {
    padding-left: 0;
  }
}
.treatment-slider__image img {
  display: block;
  box-sizing: border-box;
  border: 1px solid var(--color-border);
  border-radius: 3px;
}
@container (min-width: 768px) {
  .treatment-slider__image img {
    border-radius: 12px;
  }
}
.treatment-slider__prev {
  display: grid;
  place-content: center;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 0;
  width: 44px;
  height: 44px;
  transform: translate(-50%, -50%) scale(-1, 1);
  border: 1px solid var(--color-border);
  border-radius: 100%;
  background-color: var(--brand-white);
}
@media (any-hover: hover) {
  .treatment-slider__prev {
    cursor: pointer;
  }
}
.treatment-slider__prev.swiper-button-disabled {
  background-color: var(--color-bg);
  pointer-events: none;
}
.treatment-slider__next {
  display: grid;
  place-content: center;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 0;
  width: 44px;
  height: 44px;
  transform: translate(50%, -50%);
  border: 1px solid var(--color-border);
  border-radius: 100%;
  background-color: var(--brand-white);
}
@media (any-hover: hover) {
  .treatment-slider__next {
    cursor: pointer;
  }
}
.treatment-slider__next.swiper-button-disabled {
  background-color: var(--color-bg);
  pointer-events: none;
}
.treatment-slider__pagination {
  display: none;
  position: relative;
  bottom: 0 !important;
  left: 0;
  width: fit-content;
  max-width: fit-content;
  margin: 16px auto 0;
  padding: 5px 20px 10px;
  border-radius: 100vh;
  background-color: var(--color-bg);
  text-align: center;
}
@container (min-width: 768px) {
  .treatment-slider__pagination {
    bottom: 20px;
  }
}
.treatment-slider:has(.swiper-initialized) .treatment-slider__pagination {
  display: block;
}
.treatment-slider__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  opacity: 1;
  background-color: var(--color-border);
}
.treatment-slider__pagination .swiper-pagination-bullet-active {
  background-color: var(--brand-main-500);
}

/* ------------------------------
  treatment-tag
------------------------------ */
.treatment-tag {
  display: flex;
  margin-block: 12px 0;
  padding-left: 0;
  gap: 8px;
  color: var(--brand-main-500);
  list-style: none;
}
.treatment-tag__item {
  padding: 2px 4px;
  border-radius: 4px;
  background-color: var(--color-bg-main);
  font-size: var(--font-sm);
}
@container (min-width: 768px) {
  .treatment-tag__item {
    font-size: var(--font-pc-sm);
  }
}

/* ------------------------------
  treatment-text-list
------------------------------ */
.treatment-text-list {
  margin-block: 16px 0;
  padding-left: 0;
  list-style: none;
}
.treatment-flow-data .treatment-text-list {
  margin-block: 8px 0;
}
.treatment-text-list__item {
  font-size: var(--font-base);
}
@container (min-width: 768px) {
  .treatment-text-list__item {
    font-size: var(--font-pc-base);
  }
}
.treatment-data-list .treatment-text-list__item {
  font-size: var(--font-sm);
}
@container (min-width: 768px) {
  .treatment-data-list .treatment-text-list__item {
    font-size: var(--font-pc-sm);
  }
}
.treatment-text-list__item::before {
  content: "・";
  margin-inline: 4px;
}

/* ------------------------------
  treatment-voice
------------------------------ */
.treatment-voice {
  position: relative;
  margin-inline: -24px;
  padding-bottom: 40px;
  overflow: hidden;
}
@container (min-width: 768px) {
  .treatment-voice {
    margin-inline: -62px;
  }
}
@container (min-width: 1024px) {
  .treatment-voice {
    margin-inline: 0;
    overflow: visible;
  }
}
.treatment-voice__content {
  width: calc(100vw - 96px);
  overflow: visible;
}
@container (min-width: 1024px) {
  .treatment-voice__content {
    width: 61vw;
    margin-inline: 0;
    padding-bottom: 0;
    overflow: hidden;
  }
}
@container (min-width: 1280px) {
  .treatment-voice__content {
    width: 950px;
    margin-inline: 0;
    padding-bottom: 0;
  }
}
.treatment-voice__box {
  width: 300px;
  margin-left: 18px;
  padding: 68px 28px 28px;
  border-radius: 6px;
  background: var(--color-bg) url("https://www.haramedical.or.jp/wordpress/wp-content/themes/haramedical/assets/img/article/bg_quote.svg") no-repeat 28px 28px/20px;
}
@container (min-width: 768px) {
  .treatment-voice__box {
    max-width: 455px;
    margin-left: 0;
    padding: 80px 32px 32px;
    background-position: 32px 32px;
    background-size: 28px;
  }
}
.treatment-voice__box:first-child {
  margin-left: 24px;
}
@container (min-width: 768px) {
  .treatment-voice__box:first-child {
    margin-left: 62px;
  }
}
@container (min-width: 1024px) {
  .treatment-voice__box:first-child {
    margin-left: 0;
  }
}
.treatment-voice__age {
  margin-block: 0;
  color: var(--brand-main-500);
  font-size: var(--font-heading-md);
  font-weight: var(--font-weight-bold);
}
@container (min-width: 768px) {
  .treatment-voice__age {
    font-size: var(--font-pc-heading-sm);
  }
}
.treatment-voice__period {
  margin: 4px 0;
  color: var(--brand-main-500);
  font-size: var(--font-base);
}
@container (min-width: 768px) {
  .treatment-voice__period {
    font-size: var(--font-pc-base);
  }
}
.treatment-voice__text {
  margin-block: 20px 0;
  font-size: var(--font-base);
}
@container (min-width: 768px) {
  .treatment-voice__text {
    font-size: var(--font-pc-sm);
  }
}

/* ------------------------------
  initiatives-list
------------------------------ */
.initiatives-list {
  margin-block: 40px;
}
@container (min-width: 768px) {
  .initiatives-list {
    margin-block: 80px;
  }
}

/* ------------------------------
  recruit
------------------------------ */
.recruit .heading02 {
  margin-block: 40px 24px;
}
@container (min-width: 768px) {
  .recruit .heading02 {
    margin-block: 80px 32px;
  }
}
@container (min-width: 1024px) {
  .recruit .heading02:first-child {
    margin-top: 0;
  }
}
.recruit .heading03 {
  margin-block: 32px 16px;
}
@container (min-width: 768px) {
  .recruit .heading03 {
    margin-top: 40px;
  }
}

/* ------------------------------
  recruite-attention
------------------------------ */
.recruit-attention {
  margin-top: 24px;
}
@container (min-width: 768px) {
  .recruit-attention {
    margin-top: 40px;
  }
}
.recruit-attention__title {
  margin-block: 0;
  color: var(--brand-main-500);
  font-size: var(--font-base);
  font-weight: var(--font-weight-bold);
}
@container (min-width: 768px) {
  .recruit-attention__title {
    font-size: var(--font-pc-base);
  }
}
.recruit-attention__text {
  margin-block: 8px 0;
  font-size: var(--font-base);
}
@container (min-width: 768px) {
  .recruit-attention__text {
    font-size: var(--font-pc-base);
  }
}

/*# sourceMappingURL=main.css.map */
