/**
 * File: base.css
 * Usage: 全ページ共通のスタイルを定義します。レイアウト、モジュールなど。
 * Example: ly_header, ly_footer, el_btn, el_gradientGold, el_subpTtl, el_normalTtl
*/

@charset "UTF-8";

/* ================================================  
 リセットの記述
================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[role='list'],
ol[role='list'] {
  list-style: none;
  padding: 0;
  margin: 0;
}

html:focus-visible {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  /* Fallback */
  min-height: calc(var(--vh, 1vh) * 100);
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  overflow-x: hidden;
}

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

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
}

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

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* WordPress管理画面のツールバー */
#wpadminbar {
  display: none !important;
}

:root {
  --color-primary: #008dda;
  --color-secondary: #5fe6ff;
  --color-tertiary: #baf3ff;
  --color-accent-orange: #f38352;
  --color-accent-gray: #f2f3f3;
  --color-white: #fff;
  --text-primary: #4a4a4a;
  --text-secondary: #01527d;
}

/* ================================================  
 フォントの読み込み
================================================ */
/*
@font-face {
  font-family: 'Montserrat';
  font-weight: 400;
  src: url(../fonts/Montserrat-Regular.ttf) format('truetype');
}

@font-face {
  font-family: 'Montserrat';
  font-weight: 500;
  src: url(../fonts/Montserrat-Medium.ttf) format('truetype');
}

@font-face {
  font-family: 'Zen Kaku Gothic New';
  font-weight: 400;
  src: url(../fonts/ZenKakuGothicNew-Regular.ttf) format('truetype');
}

@font-face {
  font-family: 'Zen Kaku Gothic New';
  font-weight: 700;
  src: url(../fonts/ZenKakuGothicNew-Bold.ttf) format('truetype');
}

@font-face {
  font-family: 'Yu Gothic';
  font-weight: 400;
  src: url(../fonts/YuGothic-Regular.ttf) format('truetype');
}

@font-face {
  font-family: 'Yu Gothic';
  font-weight: 700;
  src: url(../fonts/YuGothic-Bold.ttf) format('truetype');
}
*/
/* ================================================  
 スタイルの適用(モバイルファーストで記述)
================================================ */
body {
  background-color: #fff;
  color: #4a4a4a;
  width: 100%;
  -webkit-text-size-adjust: 100%;
  font-family: 'Yu Gothic', '游ゴシック体', 'Noto Sans JP',
    'Hiragino Kaku Gothic Pro', 'Meiryo', sans-serif;
  overscroll-behavior: none;
  position: relative;
}

body:has(.bl_nav.isActive) {
  overflow-y: hidden;
}

h1 {
  font-size: 2em;
}

h2 {
  font-size: 1.5em;
}

h3 {
  font-size: 1.17em;
}

h4 {
  font-size: 1.12em;
}

h5 {
  font-size: 0.83em;
}

h6 {
  font-size: 0.75em;
}

.clearfix::after {
  clear: both;
}

li {
  list-style: none;
}

html {
  margin-top: 0 !important;
}

/* メディアクエリ用の表示・非表示 */
.sm_only {
  display: block !important;
}

.md_only,
.moreThan_md,
.lg_only {
  display: none !important;
}

#el_circle {
  position: absolute;
  z-index: 10000;
  border-radius: 50%;
  background-color: #baf3ff;
  mix-blend-mode: multiply;
  color: var(--color-accent-orange);
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

#el_circle::after {
  content: attr(data-text);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.7rem;
  color: black;
  pointer-events: none;
  transition: font-size 1s;
}

/* ================================================  
  レイアウト
================================================ */
/* 全体のレイアウト */

/* ================================================   */
/*   予約フォーム */
/* ================================================ */

.ly_reserve {
  padding-block: 80px;
}

.bl_reserve small {
  display: block;
  width: 100%;
  padding-bottom: 4px;
}

.bl_reserve h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-secondary);
  padding-bottom: 64px;
}
.bl_reserve h2 .shop_name{
  display: block;
  font-size: min(4.5vw, 20px);
}

.bl_reserve h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
}

.bl_reserveLine a {
  display: block;
  padding-top: 40px;
  padding-bottom: 20px;
  width: 160px;
}

.bl_reserveLine p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
}

.bl_reserveLine {
  margin-bottom: 64px;
}

.el_asterisk {
  color: #ff0000;
  font-size: 8px;
  font-weight: 500;
  line-height: 1.8;
}

.bl_reserveForm form {
  margin-top: 40px;
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.bl_formInput {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bl_formInput span {
  font-size: 16px;
  font-weight: 500;
}

.bl_formInput:has(.el_formDate) {
  flex-wrap: wrap;
  flex-direction: row;
}

.bl_formInput:has(.el_formDate) label {
  width: 100%;
}

.bl_formInputDatetime input {
  text-align: center;
}

.bl_formInputDatetime {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
}

.bl_formInputDatetime>div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.bl_formInput:has(.el_formDate) span {
  display: flex;
  flex-direction: column;
  max-width: calc(45% - 4px);
  flex: 0 0 calc(50% - 16px);
  width: 100%;
}

.bl_formInput:has(.el_formDate) span.wpcf7-not-valid-tip {
  width: 100%;
  max-width: unset;
}

.bl_formInput:has(.el_formDate) small {
  width: 100%;
  margin-bottom: -8px;
}

.bl_reserveForm label {
  font-size: 16px;
  font-weight: 500;
  color: #000;
}

.el_formDropdown {
  appearance: none;
}

.bl_formInput .wpcf7-not-valid-tip {
  font-size: 11px;
  position: absolute;
  top: 0;
  left: 4px;
}

.bl_formInput .wpcf7-form-control-wrap:has(.wpcf7-not-valid-tip) {
  position: relative;
}

.bl_formInput .wpcf7-form-control-wrap:has(.wpcf7-not-valid-tip) input {
  border-color: #dc3232;
}

.bl_reserveForm input:not([type='radio']),
.bl_reserveForm select,
.bl_reserveForm textarea {
  padding-block: 8px;
  padding-inline: 12px;
  border: 1px solid #d9d9d9;
  background: #fff;
  border-radius: 4px;
  width: 100%;
  height: 100%;
  display: block;
  color: #333;
}

.bl_reserveForm span:has(input.el_formDate) {
  position: relative;
}

/* iOS Safari only */
@supports (-webkit-touch-callout: none) {
  @media screen and (max-device-width: 812px) and (-webkit-min-device-pixel-ratio: 2) {
    .bl_reserveForm span:has(input.el_formDate)::after {
      position: absolute;
      content: '';
      width: 16px;
      height: 16px;
      top: 50%;
      right: -12px;
      transform: translateY(-50%);
      background: url(../img/clinic/date-picker.svg) no-repeat center;
      background-size: contain;
    }
  }
}

.bl_reserveForm textarea {
  height: 250px;
}

.bl_reserveForm .el_formRadio {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bl_reserveForm .el_formRadio>span {
  margin: 0;
  font-weight: 500;
}

.bl_reserveForm input.el_formSubmit {
  color: #fff;
  background-color: #00527e;
  font-weight: 700;
  cursor: pointer;
}

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

.xdsoft_datetimepicker {
  min-width: 160px;
  width: 100%;
  max-width: min(360px, 44vw);
  padding-inline: 4px;
  padding-block: 4px;
}

.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box {
  max-height: 200px;
}

.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box>div>div {
  height: 40px;
  line-height: 40px;
  font-size: 16px;
}

.xdsoft_datetimepicker .xdsoft_timepicker {
  width: 100%;
  margin-left: unset;
}

.xdsoft_timepicker active {
  width: 100%;
}

.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_prev,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_next {
  margin-inline: auto;
}

/* ================================================   */
/*   医師や専門家 */
/* ================================================ */

.ly_introDoctors {
  padding-bottom: 80px;
}

.bl_introDoctors_heading {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding-inline: 24px;
  padding-block: 14px;
  color: #fff;
  background: #02517c;
}

.bl_introDoctors_list {
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.bl_introDoctors_list li {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.bl_introDoctors_itemImg {
  border-radius: 4px;
  overflow: hidden;
  width: 80px;
  height: 105px;
  flex-shrink: 0;
}

.bl_introDoctors_itemText {
  letter-spacing: 0.04em;
  font-weight: 700;
}

.bl_introDoctors_itemText h4 {
  color: var(--text-secondary);
  font-size: 16px;
}

.bl_introDoctors_itemText span {
  margin-top: 13px;
  margin-bottom: 16px;
  display: block;
  width: fit-content;
  font-size: 16px;
  color: #fff;
  padding-inline: 16px;
  padding-block: 4px;
  border-radius: 80px;
  background: var(--color-accent-orange);
  white-space: nowrap;
  width: fit-content;
}

.bl_introDoctors_itemText p {
  font-weight: 500;
}

/* ================================================   */
/*   症状 */
/* ================================================ */

.ly_symptomsList {
  padding-top: 40px;
  padding-inline: 20px;
  padding-bottom: 80px;
}

.ly_symptomsList .bl_symptoms {
  padding-top: 0;
}

.bl_symptoms {
  padding-block: 80px;
}

.bl_symptoms h2 {
  padding-bottom: 40px;
}

.bl_symptomsList {
  display: flex;
  flex-wrap: wrap;
  gap: 4vw;
}

.bl_symptomsList li {
  width: calc(50% - 2vw);
  background: white;
}

.bl_symptomsList .bl_symptomsList_item {
  display: flex;
  flex-direction: column;
  gap: 3.2vw;
  padding: 3.2vw;
  background: var(--color-white);
}

.bl_symptomsList a .bl_symptomsList_imgCont {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.bl_symptomsList a .bl_symptomsList_imgCont img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.bl_symptomsList_item h4 {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

/* =====

floating cta buttons

===== */

.bl_floatingCta {
  width: 100%;
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  height: 70px;
  color: #fff;
  position: fixed;
  bottom: -1px;
  z-index: 1001;
}

.bl_floatingCta>* {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 4px;
}

.bl_floatingCta a p {
  z-index: 2;
  position: relative;
  font-size: 16px;
  font-weight: 700;
}

.bl_floatingCta a:first-child {
  background: #f38353;
  position: relative;
}

.bl_floatingCta a:nth-child(2) {
  background: #06c755;
  position: relative;
}

.bl_floatingCta a:nth-child(3) {
  background: #00527e;
  position: relative;
}

.bl_floatingCta a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
      rgba(141, 39, 0, 0) 0%,
      rgba(141, 39, 0, 0.16) 84%,
      rgba(141, 39, 0, 0.2) 100%);
}

.ly_floatingCta_sec.is-active {
  display: block !important;
}

.ly_floatingCta_sec {
  display: none !important;
  background: #f2f9fd;
  padding: 16px 20px 64px 20px;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100dvh;
  overflow-y: scroll;
  z-index: 1000001;
}

.el_btnCloseModal {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  margin-left: auto;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-secondary);
  cursor: pointer;
  margin-bottom: 40px;
}

.bl_floatingCta_mailInner .bl_reserveForm form {
  margin-top: 8px;
}

.ly_floatingCta_sec .bl_reserveForm label {
  display: flex;
  align-items: flex-end;
  gap: 4px;
}

.ly_floatingCta_sec .bl_reserveForm .el_content {
  display: none;
}

.ly_floatingCta_phone {
  padding-top: 40px;
}

.ly_floatingCta_phone h3 {
  font-size: 28px;
  text-align: center;
  font-weight: 700;
  color: var(--text-secondary);
  padding-bottom: 40px;
}

.bl_floatingCta_phoneArea h3,
.bl_clinincArea h3 {
  color: #fff;
  background: var(--text-secondary);
  padding: 8px 16px;
}

.bl_floatingCta_phoneAreaList {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 10px;
}

.bl_floatingCta_phoneAreaList li {
  background: #fff;
  padding: 16px;
}

.bl_floatingCta_phoneAreaList .clinic-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  padding-bottom: 16px;
}

.bl_floatingCta_phoneArea .clinic-address,
.bl_floatingCta_phoneArea .clinic-phone {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  color: #364238;
  font-weight: 500;
}

.bl_floatingCta_phoneArea .clinic-phone,
.bl_archiveContent_item .clinic-phone {
  font-size: 24px;
  color: #df6d14;
  align-items: center;
  font-family: 'Zen Kaku Gothic New';
  font-weight: 600;
}

.bl_clinincArea h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bl_clinincArea h3 svg {
  transition: transform 0.3s;
}

.bl_clinincArea h3 svg path {
  stroke: #fff;
  stroke-width: 3;
}

/* .bl_clinincArea_list:not(:first-of-type) {
  display: none !important;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bl_clinincArea.is-active .bl_clinincArea_list {
  display: grid !important;
} */

.bl_clinincArea.is-active svg {
  transform: rotate(45deg);
}

.bl_clinincArea_title {
  cursor: pointer;
  user-select: none;
  position: relative;
  padding-right: 20px;
}

@media screen and (min-width: 768px) {
  body {
    font-size: 16px;
  }

  .ly_symptomsList {
    padding-top: 80px;
    padding-bottom: 120px;
  }

  .bl_symptomsList {
    column-gap: 10px;
    row-gap: 12px;
  }

  .bl_symptomsList .bl_symptomsList_item {
    padding: 20px;
  }

  .bl_symptomsList_item svg {
    width: 30px;
    height: 30px;
  }

  .bl_symptomsList li {
    width: calc(25% - 10px);
    max-width: 312px;
  }

  .bl_symptomsList_item h4 {
    font-size: 18px;
  }

  .ly_floatingCta_sec .bl_reserveForm label {
    width: fit-content;
  }

  .bl_formInput {
    justify-content: space-between;
  }
  .bl_reserve h2 .shop_name{
    font-size: 76%;
  }

}

/* ================================================  
 ブロックモジュール
================================================ */
/* ヘッダー */

.ly_header {
  background: #fff;
  padding-inline: 20px;
  padding-block: 10px;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000000;

  position: relative;
}

.bl_headerCont {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bl_header_logo_wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  max-width: 200px;
  width: 100%;
}

.bl_header_logo {
  display: block;
  width: 100%;
  max-width: 200px;
}

.bl_header_logo img {
  width: 100%;
  height: auto;
  max-width: 200px;
}

.bl_header_logo_title {
  position: absolute;
  top: 4px;
  left: 4px;

  width: 100%;
  font-size: 8px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.el_humb,
.el_nav_close.sm_only {
  width: 54px;
  height: 52px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #00527e;
  border-radius: 2px;
}

.el_humb small {
  font-size: 10px;
  color: #fff;
  font-weight: 700;
  text-align: center;
}

.el_humb span,
.el_nav_close span {
  display: block;
  width: 40px;
  height: 4px;
  margin-inline: auto;
  margin-top: 4px;
  border-radius: 999px;
  background: #fff;
  transition: all 0.3s;
}

.el_humb span:nth-child(1) {
  margin-top: 10px;
}

.el_humb.isActive span:nth-child(1) {
  transform: translateY(8px) rotate(30deg);
  transition: all 0.3s;
}

.el_humb.isActive span:nth-child(2) {
  transform: translateY(-8px) rotate(-30deg);
  transition: all 0.3s;
}

.bl_nav {
  display: none;
  width: 100%;
  overflow-y: scroll;
  padding-block: 23px;
  padding-inline: 20px;
  background: #fff;
  color: var(--text-secondary);
  font-weight: 700;
  border-bottom: 1px solid #e5e5e5;
  max-height: calc(100vh - 73px);
}

.bl_nav.isActive {
  display: block;
  position: fixed;
  top: 73px;
  z-index: 10000;
}

.bl_nav .el_allClinics {
  background: var(--text-secondary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 46px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.bl_nav_ulMain>li>a {
  display: block;
  font-size: 16px;
  padding-inline: 8px;
  padding-block: 18px;
  border-bottom: 1px solid var(--text-secondary);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.bl_nav_ulMain_open {
  display: block;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: var(--color-white);
}

.bl_nav_ulSecondary {
  display: none;
  flex-direction: column;
  gap: 28px;
  padding-block: 20px;
  color: #002300;
}

.bl_nav_ulSecondary_open svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}

.bl_nav_ulSecondary_item.is-open .bl_nav_ulSecondary_open svg {
  transform: rotate(45deg);
}

.bl_nav_ulSecondary_item {
  padding: 0px 20px 10px;
  border-bottom: 1px solid rgba(1, 82, 125, 0.2);
}

.bl_nav_ulSecondary_link {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

li:has(.bl_nav_ulMain_link.isActive) .bl_nav_ulSecondary {
  display: flex;
}

.bl_nav_ulMain_link {
  background: #fff;
}

.bl_nav_ulMain_link.isActive,
.bl_nav_ulMain>li>a:hover,
.bl_nav_ulMain>li>a:focus {
  background: rgba(0, 141, 218, 0.1);
}

.bl_nav_ulMain_link.isActive svg {
  transform: rotate(180deg);
}

.bl_nav_ulSecondary,
.bl_nav_ulTertiary {
  display: none;
}

.is-open>.bl_nav_ulSecondary {
  display: flex;
}

.is-open>.bl_nav_ulTertiary {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 16px;
  font-size: 16px;
  font-weight: 400;
}

.is-open>.bl_nav_ulTertiary a {
  text-decoration: underline;
  text-decoration-color: #f38352;
  text-underline-offset: 2px;
}

.bl_nav_ulAbout {
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 16px;
}

.bl_nav_ulAbout_cta {
  display: flex;
  flex-direction: row;
  gap: 6px;
  align-items: center !important;
  justify-content: flex-start !important;
}

.bl_nav_close {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  padding-top: 64px;
  gap: 12px;
  font-size: 16px;
}

.el_nav_close {
  width: 18px;
  height: 18px;
}

.bl_nav_close span:first-child {
  transform: translateY(8px) rotate(45deg);
}

.bl_nav_close span:last-child {
  transform: translateY(-8px) rotate(-45deg);
}

/* フッター */
.ly_footer {
  color: var(--color-white);
  background: #00527e;
  padding-top: 80px;
  padding-bottom: 150px;
  padding-inline: 20px;
  letter-spacing: 0.02em;
}

.bl_footerCont {
  position: relative;
}

.bl_footer a {
  transition: opacity 0.3s;
}

.bl_footer img {
  width: 300px;
}

.bl_footer a:hover {
  opacity: 0.7;
}

.bl_footer h2 {
  font-size: 27.5px;
  font-weight: 500;
  padding-bottom: 80px;
}

.bl_footer h3 {
  color: rgba(229, 229, 229, 0.7);
  padding-bottom: 20px;
  font-size: 16px;
  font-weight: 700;
  border-bottom: 1px solid rgba(229, 229, 229, 0.7);
  margin-bottom: 27px;
}

.bl_footer_sitemapList {
  font-weight: 700;
  padding-bottom: 64px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-rows: auto;
  grid-template-rows: repeat(6, auto);
}

.bl_footer_sitemapList li:not(:last-child) {
  padding-bottom: 12px;
}

.bl_footer_address {
  padding-bottom: 64px;
  font-weight: 700;
}

.bl_footer_clinics {
  padding-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .bl_footer_clinics {
    padding-bottom: 0;
  }
}

.bl_footer_clinicsList {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-weight: 700;
}

.bl_footer_policies {
  border-top: 1px solid rgba(229, 229, 229, 0.7);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-weight: 700;
}

.bl_footer_copy {
  font-size: 12px;
  padding-top: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bl_footer_copy p {
  font-weight: 500;
  color: rgba(229, 229, 229, 0.7);
  font-family: 'Montserrat', sans-serif;
}

.bl_footer_copy span {
  display: flex;
  gap: 10px;
  align-items: center;
}

.el_toTopBtn {
  position: absolute;
  display: flex;
  gap: 10px;
  font-size: 12px;
  align-items: center;
  right: 0;
  bottom: 0;
  cursor: pointer;
}

/* breadcrumb */

.breadcrumb {
  display: flex;
  gap: 8px;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;

  align-items: center;
  flex-wrap: nowrap;

  font-size: 16px;
  font-weight: 500;
  color: #a8a8a8;
  padding-block: 15px;
}

.breadcrumb li {
  flex-shrink: 0;
}

.breadcrumb li:has(svg) {
  display: flex;
  align-items: center;
}

/* ================================================  
  エレメントモジュール
================================================ */
/* ボタン */

.bl_btn {
  display: flex;
  margin-top: 46px;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
}

.bl_btn svg {
  width: 56px;
  height: 56px;
}

#parallax {
  overflow: hidden;
  height: 70vw;
  position: relative;
  margin-inline: auto;
}

.parallax-item {
  width: 100%;
  min-height: 20vh;
}

.bl_imageFill {
  background-image: url(../img/top/fill.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 70vh;
  width: 100%;
}

/* datetime pickerの営業時間外を削除、jQueryよりcssが楽だったのでこちらに記述 */
.xdsoft_time[data-hour='0'],
.xdsoft_time[data-hour='1'],
.xdsoft_time[data-hour='2'],
.xdsoft_time[data-hour='3'],
.xdsoft_time[data-hour='4'],
.xdsoft_time[data-hour='5'],
.xdsoft_time[data-hour='6'],
.xdsoft_time[data-hour='7'],
.xdsoft_time[data-hour='8'],
.xdsoft_time[data-hour='12'][data-minute='45'],
.xdsoft_time[data-hour='13'],
.xdsoft_time[data-hour='14'],
.xdsoft_time[data-hour='18'][data-minute='45'],
.xdsoft_time[data-hour='19'],
.xdsoft_time[data-hour='20'],
.xdsoft_time[data-hour='21'],
.xdsoft_time[data-hour='22'],
.xdsoft_time[data-hour='23'],
.xdsoft_time[data-hour='24'] {
  display: none;
}

/* ================================================  
 お問い合わせ件数
================================================ */

.bl_floatingCases {
  position: fixed;
  top: 74px;
  padding: 6px 12px;
  right: 20px;
  background: #fff;
  border: 1px solid #00527e;
  border-radius: 2px;
  color: #075681;
  font-size: 14px;
  z-index: 1001;
  pointer-events: none;
  transition: opacity 0.3s;
}

/* ================================================  
 ヘルパー
================================================ */
/* 余白の調整 */

.hp_normalSec {
  padding-inline: 20px;
}

.hp_wMax {
  width: max-content;
  margin-inline: auto;
}

.hp_wMax_1280 {
  max-width: 1280px;
  margin-inline: auto;
}

.hp_bgBlack {
  background: #000;
}

.hp_bgAlt {
  background: rgba(0, 141, 218, 0.05);
}

.hp_txtSec {
  color: var(--text-secondary);
}

.hp_txtCenter {
  text-align: center;
}

.hp_txtAccent {
  color: var(--color-accent-orange);
}

.hp_txtRed {
  color: #ff0000;
}

.hp_txtOrange {
  color: #f38353;
}

.el_txtLignt {
  color: #4a4a4a;
}

.hp_txtBold {
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .sm_only {
    display: none !important;
  }

  .md_only {
    display: block !important;
  }

  .moreThan_md {
    display: block !important;
  }

  .breadcrumb {
    max-width: 1280px;
    margin-inline: auto;
    justify-content: flex-end;
  }

  .breadcrumb.hp_normalSec {
    padding-inline: 20px;
  }

  .hp_normalSec {
    padding-inline: 80px;
  }

  .bl_btn {
    margin-top: 64px;
    font-size: 18px;
  }

  #parallax {
    height: 50vw;
  }

  .bl_imageFill {
    height: 100vw;
  }

  .ly_header {
    padding: 0;
  }

  .bl_headerCont {
    padding-inline: 40px;
    gap: 40px;
    padding-block: 11px;
    position: relative;
  }

  .bl_header_logo_title {
    font-size: 12px;
  }

  .bl_header_nav {
    display: flex !important;
    gap: 12px;
    color: var(--text-secondary);
    font-weight: 700;
    letter-spacing: 0.04em;
    align-items: flex-end;
    transition: all 0.3s;
    user-select: none;
    align-items: center;
  }

  .bl_header_nav * {
    user-select: none;
  }

  .bl_header_nav .bl_header_nav_item svg {
    height: 75px;
  }

  .bl_header_nav li:not(:has(.el_header_nav_companyBtn)):hover {
    /* text-decoration: underline; */
    text-underline-offset: 2px;
    transition: all 0.3s;
  }

  .bl_header_nav_ul {
    display: flex;
    gap: 40px;
    color: var(--text-secondary);
    font-weight: 700;
    letter-spacing: 0.04em;
  }

  .bl_header_nav_ul_li_rel a {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    height: 100%;
    cursor: pointer;
  }

  .bl_header_nav_ul_li_rel.isActive ul {
    display: flex;
  }

  .bl_header_nav_ul_li_rel ul {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100vw;
    flex-direction: row;
    flex-wrap: wrap;
    background: #f2f9fd;
    z-index: 10000;
  }

  .bl_header_nav_reserve {
    line-height: 1;
  }

  .bl_header_nav_reserve button {
    border: none;
    background: none;
    height: fit-content;
    line-height: 1;
    cursor: pointer;
  }

  .bl_header_nav_reserveClinicsModal {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    padding: 40px;
    z-index: 20000;
  }

  .bl_header_nav_reserveClinicsModal.is-active {
    display: block !important;
  }

  .bl_header_nav_reserveClinics {
    background: #fff;
    padding: 40px 60px;
    max-height: calc(100vh - 80px - 115px);
    overflow-y: auto;
  }

  .bl_header_nav_reserveClinics ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 16px;
    gap: 80px;
  }

  .ly_header_symptomMenu {
    padding-block: 40px;
    display: flex;
    flex-direction: column !important;
    gap: 20px;
  }

  .bl_header_symptomMenu {
    display: flex;
    max-width: 1120px;
    margin-inline: auto;
    gap: 7%;
    width: 100%;
  }

  .bl_header_symptomTtl_wrapper {
    max-width: 1120px;
    width: 100%;
    margin-inline: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .bl_header_symptomTtl {
    color: #fff;
    background: #01527d;
    font-size: 24px;
    width: fit-content;
    border-radius: 4px;
    padding: 8px 24px;
  }

  .bl_header_symptomMenu_categories {
    flex: 0 0 295px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .bl_header_symptomMenu_categories button {
    all: unset;
    cursor: pointer;
    padding: 8px 15px;
    font-weight: 500;
    color: #002300;
    text-decoration: none;
    border-bottom: 1px solid var(--text-secondary);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .bl_header_symptomMenu_categories button:hover,
  .bl_header_symptomMenu_categories button:focus {
    background: #fff;
  }

  .bl_header_symptomMenu_categories button svg {
    transition: transform 0.3s;
    width: 16px;
    height: 16px;
  }

  .bl_header_symptomMenu_categories button.is-active svg {
    transform: rotate(45deg);
  }

  .bl_header_symptomMenu_items {
    flex: 1;
    background: #f2f9fd;
  }

  .bl_header_symptomMenu_items .symptom-list {
    display: none !important;
    width: fit-content;
    position: static;
    flex-wrap: wrap;
    gap: 12px;
  }

  .bl_header_symptomMenu_items .symptom-list a {
    font-size: 24px;
    font-weight: 400;
    color: var(--text-primary);
    text-decoration: underline;
    text-decoration-color: var(--color-accent-orange);
    text-underline-offset: 8px;
  }

  .bl_header_symptomMenu_items .symptom-list a:hover,
  .bl_header_symptomMenu_items .symptom-list a:focus {
    color: var(--text-secondary);
  }

  .bl_header_symptomMenu_items .symptom-list.is-active {
    display: flex !important;
    gap: 40px 44px;
  }

  .bl_header_nav_ul_li_rel p {
    padding-inline: 20px;
  }

  .bl_header_nav_ul_clinic .thumbnail {
    aspect-ratio: 4 / 3;
    flex-shrink: 0;
    max-width: 200px;
    max-height: 150px;
    height: 100%;
  }

  .bl_header_nav_ul_li_rel .thumbnail img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  .bl_header_nav_company {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-end;
  }

  .bl_header_nav_company span {
    width: 1px;
    height: 16px;
    background: #e5e5e5;
  }

  .el_header_nav_companyBtn {
    display: flex;
    gap: 6px;
    align-items: center;
    color: #f38353;
    border-radius: 5px;
    transition: all 0.3s;
  }

  .el_header_nav_companyBtn:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
  }

  .el_header_nav_companyBtn svg {
    flex-shrink: 0;
  }

  .el_header_nav_companyBtn svg path {
    fill: #fff;
  }

  .ly_reserve {
    padding-bottom: 120px;
  }

  .bl_reserve h2 {
    font-size: 34px;
  }

  .bl_reserveLine {
    margin-bottom: 80px;
  }

  .bl_reserveLineCont {
    padding-inline: 9vw;
    display: flex;
    gap: 110px;
    align-items: center;
    padding-top: 60px;
  }

  .bl_reserveLine a {
    padding: 0;
  }

  .bl_reserveLine p {
    font-size: 16px;
  }

  .bl_reserveForm form {
    padding-inline: 9vw;
    margin-top: 64px;
    gap: 0;
  }

  .bl_formInput {
    border-top: 1px solid #e5e5e5;
    flex-direction: row;
    column-gap: 45px;
    align-items: center;
    padding-block: 20px;
  }

  .bl_formInput label {
    width: 160px;
    flex-shrink: 0;
  }

  .bl_formInputDatetime {
    width: calc(100% - 185px);
  }

  .bl_formInput:has(.el_formDate) {
    flex-wrap: nowrap;
  }

  .bl_formInput:has(.el_formDate) label {
    width: 160px;
  }

  .bl_formInput:has(.el_formDate) label span {
    display: inline;
  }

  .bl_formInput>span {
    width: calc(100% - 205px);
    flex-shrink: 0;
  }

  .bl_formInput:has(textarea) label {
    align-self: flex-start;
  }

  .bl_formInput:has(textarea) {
    border-bottom: 1px solid #e5e5e5;
  }

  .bl_reserveForm input.el_formSubmit {
    width: 400px;
    height: 64px;
    margin-inline: auto;
    margin-top: 20px;
  }

  .bl_introDoctors_itemText_meta {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .bl_introDoctors_itemText span {
    margin: 0;
  }

  .bl_introDoctors_itemText h4 {
    font-size: 20px;
  }

  .bl_symptoms {
    padding-top: 160px;
    padding-bottom: 150px;
  }

  .ly_symptoms .bl_symptoms {
    padding-bottom: 0;
  }

  .bl_symptoms h2 {
    padding-bottom: 64px;
    font-size: 40px;
  }

  .bl_symptomsList .bl_symptomsList_item {
    padding: 22px;
    gap: 22px;
  }

  .bl_symptoms .bl_btn {
    margin-top: 64px;
  }

  /* footer */

  .ly_footer {
    padding-inline: 10vw;
  }

  .bl_footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 5.5vw;
    padding-bottom: 0;
  }

  .bl_footer h2 {
    font-size: 28px;
  }

  .bl_footer h3 {
    color: #ffffff;
  }

  .bl_footerCont {
    width: 50vw;
    display: flex;
    flex-wrap: wrap;
    row-gap: 50px;
    column-gap: 4.5vw;
  }

  .bl_footer ul,
  .bl_footer_address {
    font-weight: 500;
    padding-bottom: 0;
  }

  .bl_footer_sitemap,
  .bl_footer_address {
    width: calc(50% - 2.25vw);
  }

  .bl_footer_clinics,
  .bl_footer_policies {
    width: 100%;
  }

  .bl_footer_policies {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding-top: 55px;
    column-gap: 55px;
  }

  .el_toTopBtn svg {
    width: 24px;
    height: 24px;
  }

  .el_btnCloseModal {
    margin-bottom: 40px;
    padding-right: 20px;
  }

  /* ================================================  
 お問い合わせ件数
================================================ */

  .bl_floatingCases {
    padding: 8px 16px;
    right: 40px;
    top: 144px;
    font-size: 20px;
  }
}

@media screen and (min-width: 860px) {
  .bl_floatingCases {
    top: 101px;
  }
}

@media screen and (min-width: 1024px) {
  .lg_only {
    display: block !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .bl_footer_sitemapList {
    columns: 1;
  }
}

@media screen and (min-width: 1208px) {
  .bl_floatingCases {
    top: 101px;
  }
}

@media screen and (min-width: 1370px) {
  .bl_introDoctors_itemText_meta {
    flex-direction: row;
    gap: 24px;
    align-items: center;
  }

  .breadcrumb.hp_normalSec {
    padding-inline: 0px;
  }

  .bl_headerCont {
    padding-inline: 80px;
  }

  .bl_header_nav_reserveClinics ul {
    grid-template-columns: repeat(3, 1fr);
  }
}