@charset "UTF-8";
/* Document
 * ========================================================================== */
/**
 * Add border box sizing in all browsers (opinionated).
 */
*,
::before,
::after {
  box-sizing: border-box;
}

/**
  * 1. Add text decoration inheritance in all browsers (opinionated).
  * 2. Add vertical alignment inheritance in all browsers (opinionated).
  */
::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}

/**
  * 1. Use the default cursor in all browsers (opinionated).
  * 2. Change the line height in all browsers (opinionated).
  * 3. Use a 4-space tab width in all browsers (opinionated).
  * 4. Remove the grey highlight on links in iOS (opinionated).
  * 5. Prevent adjustments of font size after orientation changes in
  *    IE on Windows Phone and in iOS.
  * 6. Breaks words to prevent overflow in all browsers (opinionated).
  */
html {
  cursor: default; /* 1 */
  line-height: 1.5; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  -webkit-tap-highlight-color: transparent;
  -ms-text-size-adjust: 100%; /* 5 */
  -webkit-text-size-adjust: 100%; /* 5 */
  word-break: break-word; /* 6 */
}

/* Sections
  * ========================================================================== */
/**
  * Remove the margin in all browsers (opinionated).
  */
body {
  margin: 0;
}

/**
  * Correct the font size and margin on `h1` elements within `section` and
  * `article` contexts in Chrome, Edge, Firefox, and Safari.
  */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
  * ========================================================================== */
/**
  * Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
  */
dl dl,
dl ol,
dl ul,
ol dl,
ul dl {
  margin: 0;
}

/**
  * Remove the margin on nested lists in Edge 18- and IE.
  */
ol ol,
ol ul,
ul ol,
ul ul {
  margin: 0;
}

/**
  * 1. Add the correct sizing in Firefox.
  * 2. Show the overflow in Edge 18- and IE.
  */
hr {
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
  * Add the correct display in IE.
  */
main {
  display: block;
}

/**
  * Remove the list style on navigation lists in all browsers (opinionated).
  */
nav ol,
nav ul {
  list-style: none;
  padding: 0;
}

/**
  * 1. Correct the inheritance and scaling of font size in all browsers.
  * 2. Correct the odd `em` font sizing in all browsers.
  */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
  * ========================================================================== */
/**
  * Remove the gray background on active links in IE 10.
  */
a {
  background-color: transparent;
}

/**
  * Add the correct text decoration in Edge 18-, IE, and Safari.
  */
abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
  * Add the correct font weight in Chrome, Edge, and Safari.
  */
b,
strong {
  font-weight: bolder;
}

/**
  * 1. Correct the inheritance and scaling of font size in all browsers.
  * 2. Correct the odd `em` font sizing in all browsers.
  */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
  * Add the correct font size in all browsers.
  */
small {
  font-size: 80%;
}

/* Embedded content
  * ========================================================================== */
/*
  * Change the alignment on media elements in all browsers (opinionated).
  */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/**
  * Add the correct display in IE 9-.
  */
audio,
video {
  display: inline-block;
}

/**
  * Add the correct display in iOS 4-7.
  */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
  * Remove the border on iframes in all browsers (opinionated).
  */
iframe {
  border-style: none;
}

/**
  * Remove the border on images within links in IE 10-.
  */
img {
  border-style: none;
}

/**
  * Change the fill color to match the text color in all browsers (opinionated).
  */
svg:not([fill]) {
  fill: currentColor;
}

/**
  * Hide the overflow in IE.
  */
svg:not(:root) {
  overflow: hidden;
}

/* Tabular data
  * ========================================================================== */
/**
  * Collapse border spacing in all browsers (opinionated).
  */
table {
  border-collapse: collapse;
}

/* Forms
  * ========================================================================== */
/**
  * Remove the margin on controls in Safari.
  */
button,
input,
select {
  margin: 0;
}

/**
  * 1. Show the overflow in IE.
  * 2. Remove the inheritance of text transform in Edge 18-, Firefox, and IE.
  */
button {
  overflow: visible; /* 1 */
  text-transform: none; /* 2 */
}

/**
  * Correct the inability to style buttons in iOS and Safari.
  */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
  * 1. Change the inconsistent appearance in all browsers (opinionated).
  * 2. Correct the padding in Firefox.
  */
fieldset {
  border: 1px solid #a0a0a0; /* 1 */
  padding: 0.35em 0.75em 0.625em; /* 2 */
}

/**
  * Show the overflow in Edge 18- and IE.
  */
input {
  overflow: visible;
}

/**
  * 1. Correct the text wrapping in Edge 18- and IE.
  * 2. Correct the color inheritance from `fieldset` elements in IE.
  */
legend {
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  white-space: normal; /* 1 */
}

/**
  * 1. Add the correct display in Edge 18- and IE.
  * 2. Add the correct vertical alignment in Chrome, Edge, and Firefox.
  */
progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
  * Remove the inheritance of text transform in Firefox.
  */
select {
  text-transform: none;
}

/**
  * 1. Remove the margin in Firefox and Safari.
  * 2. Remove the default vertical scrollbar in IE.
  * 3. Change the resize direction in all browsers (opinionated).
  */
textarea {
  margin: 0; /* 1 */
  overflow: auto; /* 2 */
  resize: vertical; /* 3 */
}

/**
  * Remove the padding in IE 10-.
  */
[type=checkbox],
[type=radio] {
  padding: 0;
}

/**
  * 1. Correct the odd appearance in Chrome, Edge, and Safari.
  * 2. Correct the outline style in Safari.
  */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
  * Correct the cursor style of increment and decrement buttons in Safari.
  */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
  * Correct the text style of placeholders in Chrome, Edge, and Safari.
  */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
  * Remove the inner padding in Chrome, Edge, and Safari on macOS.
  */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
  * 1. Correct the inability to style upload buttons in iOS and Safari.
  * 2. Change font properties to `inherit` in Safari.
  */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
  * Remove the inner border and padding of focus outlines in Firefox.
  */
::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
  * Restore the focus outline styles unset by the previous rule in Firefox.
  */
:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
  * Remove the additional :invalid styles in Firefox.
  */
:-moz-ui-invalid {
  box-shadow: none;
}

/* Interactive
  * ========================================================================== */
/*
  * Add the correct display in Edge 18- and IE.
  */
details {
  display: block;
}

/*
  * Add the correct styles in Edge 18-, IE, and Safari.
  */
dialog {
  background-color: white;
  border: solid;
  color: black;
  display: block;
  height: -moz-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
}

dialog:not([open]) {
  display: none;
}

/*
  * Add the correct display in all browsers.
  */
summary {
  display: list-item;
}

/* Scripting
  * ========================================================================== */
/**
  * Add the correct display in IE 9-.
  */
canvas {
  display: inline-block;
}

/**
  * Add the correct display in IE.
  */
template {
  display: none;
}

/* User interaction
  * ========================================================================== */
/*
  * 1. Remove the tapping delay in IE 10.
  * 2. Remove the tapping delay on clickable elements
       in all browsers (opinionated).
  */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] { /* 1 */
  touch-action: manipulation; /* 2 */
}

/**
  * Add the correct display in IE 10-.
  */
[hidden] {
  display: none;
}

/* Accessibility
  * ========================================================================== */
/**
  * Change the cursor on busy elements in all browsers (opinionated).
  */
[aria-busy=true] {
  cursor: progress;
}

/*
  * Change the cursor on control elements in all browsers (opinionated).
  */
[aria-controls] {
  cursor: pointer;
}

/*
  * Change the cursor on disabled, not-editable, or otherwise
  * inoperable elements in all browsers (opinionated).
  */
[aria-disabled=true],
[disabled] {
  cursor: not-allowed;
}

/*
  * Change the display on visually hidden accessible elements
  * in all browsers (opinionated).
  */
[aria-hidden=false][hidden] {
  display: initial;
}

[aria-hidden=false][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

/* scss/foundation/_setting.scss */
:root {
  /* ==================================== */
  /* 1. システムカラー */
  /* ==================================== */
  --color-brand-primary: #5F371C;
  --color-brand-accent: #56C7C6;
  --color-decorative-accent: #7CDEDC;
  --color-title-accent:#539DA3;
  /* ==================================== */
  /* 2. サーフェスカラー (背景とその上の要素) */
  /* ==================================== */
  --color-surface-base: #FFFFFF; /* 基本背景: #FFF */
  --color-on-base: var(--color-brand-primary); /* 地の上のテキスト: #5F371C */
  --color-surface-secondary: #9ADDE3; /* フッター背景: #9ADDE3 */
  --color-on-secondary-surface: var(--color-brand-primary); /* フッター上のテキスト: #5F371C (Primaryを流用) */
  --color-surface-section: #DBEFF0; /* セクションで青背景を付ける時 */
  --color-on-accent: #FFF; /* アクセント色の上のテキスト*/
  --color-on-accent2: #539DA3; /* アクセント色の上のテキスト2*/
  /* ==================================== */
  /* 3. ユーティリティカラー (機能と装飾) */
  /* ==================================== */
  --color-warning: #FF9B52; /* 注意文: #FF9B52 */
  --color-warning--red:#FF2E2E;
  --color-link:#539DA3;
  --color-fill-light-1: #EFDCD5; /* 装飾色1: #EFDCD5 淡い小豆系・ダスティピンク系 */
  --color-fill-light-2: #F8F6F0; /* 装飾色2: #F8F6F0 薄い生成り/ベージュ系　*/
  --color-line-base: var(--color-brand-primary); /* 線色1: #5F371C */
  --color-line-accent: var(--color-decorative-accent); /* 線色2: #7CDEDC */
  --colo-line-accent-2:#E3E3E3;
  --color-list-accent:#9ADDE3;
}

html {
  scroll-behavior: smooth;
}

.inner {
  max-width: 1200px;
  margin: auto;
}

a {
  text-decoration: none;
  transition: 0.8s;
}
a:hover {
  opacity: 0.6;
}

.l-header__inner {
  width: 100%;
  margin: 0 auto;
}

.l-header__flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .l-header__flex {
    justify-content: flex-start;
    align-items: center;
  }
}

.l-main {
  overflow: hidden;
}

.l-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .l-inner {
    padding: 0 4%;
  }
}

.l-inner-1440 {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
}

.l-inner-1345 {
  width: 100%;
  max-width: 1345px;
  margin: 0 auto;
  overflow: hidden;
}

.c-tel-button {
  background: var(--color-brand-accent);
  color: var(--color-on-accent);
  padding: 1rem 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 200px;
}
.c-tel-button__text {
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
}
.c-tel-button__icon {
  margin-right: 8px;
}
.c-tel-button__num {
  font-size: 1.125rem;
  letter-spacing: 0.05em;
}

.c-drawer {
  position: fixed;
  z-index: -1;
  opacity: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-surface-base);
  transition: all 0.3s;
}
.c-drawer.c-drawer--open {
  opacity: 1;
  z-index: 999;
}
.c-drawer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  border-top: 1px var(--colo-line-accent-2) solid;
}
.c-drawer__item {
  border-bottom: 1px var(--colo-line-accent-2) solid;
  position: relative;
}
.c-drawer__item::after {
  content: "";
  position: absolute;
  background: url("../images/c-drawer-arrow.svg") no-repeat left center;
  width: 7.3px;
  height: 13px;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.c-drawer__link {
  color: var(--color-on-base);
  display: block;
  padding: 1rem 19px;
  position: relative;
}
.c-drawer__footer {
  width: 200px;
  margin: 2rem auto;
}
.c-drawer__footer .c-tel-button {
  border-radius: 8px;
}
.c-drawer__logo-area {
  width: -moz-fit-content;
  width: fit-content;
  margin: 1rem 36px;
}
.c-drawer__logo-image {
  max-width: 196px;
}
.c-drawer__sub-text {
  letter-spacing: 0.05em;
}
.c-drawer__sub-text--lead {
  margin-right: 5px;
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .c-drawer__logo-area {
    margin: 12px 0 12px 5.3%;
    width: auto;
    display: flex;
    flex-flow: row-reverse;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
  }
  .c-drawer__logo-image {
    max-width: 99px;
  }
  .c-drawer__sub-text {
    min-width: 144px;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    white-space: nowrap;
  }
}
.c-drawer__nav-area {
  display: flex;
  align-items: flex-end;
}
.c-drawer__nav-list-wrap {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
}
@media (max-width: 1280px) {
  .c-drawer__tel-btn-wrap .c-tel-button {
    padding: 1rem 10px;
  }
}
@media (max-width: 1024px) {
  .c-drawer__tel-btn-wrap .c-tel-button {
    padding: 1rem 20px;
  }
}

.c-icon {
  display: inline-block;
}
.c-icon--sm {
  width: 20px;
  height: 20px;
}
.c-icon--sm img {
  width: 100%;
  max-width: 20px;
}
.c-icon--md {
  width: 36px;
  height: 36px;
}
.c-icon--md img {
  width: 100%;
  max-width: 36px;
}
.c-icon--lg {
  width: 49px;
  height: 49px;
}
.c-icon--lg img {
  width: 100%;
  max-width: 49px;
}

@media (max-width: 768px) {
  .c-gnav {
    display: none;
  }
}
.c-gnav__list {
  display: flex;
  list-style-type: none;
  align-items: center;
  margin: 0 auto;
  padding: 0;
  row-gap: 16px;
}

@media (max-width: 1024px) {
  .c-fnav {
    display: none;
  }
}
.c-fnav__list {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  align-items: center;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}
.c-fnav__item {
  width: 33%;
}
.c-fnav__link {
  display: inline-block;
  letter-spacing: 0.1em;
  line-height: 2.8;
  color: var(--color-on-base);
  font-weight: bold;
  position: relative;
  padding-left: 16px;
}
.c-fnav__link::before {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  background: url("../images/c-fnav-arrow.svg") no-repeat center center;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.c-section-heading {
  font-size: 2rem;
}
@media (max-width: 1024px) {
  .c-section-heading {
    font-size: 1.75rem;
  }
}
@media (min-width: 600px) and (max-width: 767px) {
  .c-section-heading {
    font-size: 1.5rem;
  }
}
@media (max-width: 599px) {
  .c-section-heading {
    font-size: 1.5rem;
  }
}

.c-heading-level2 {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.1em;
  margin: 2rem auto 1rem;
  padding-bottom: 1rem;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 767px) {
  .c-heading-level2 {
    font-size: 1.5rem;
    margin: 1.5rem auto 1rem;
    padding-bottom: 0.5rem;
  }
}
.c-heading-level2::after {
  position: absolute;
  content: "";
  width: 80px;
  height: 3px;
  background-color: var(--color-on-accent2);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.c-heading-level3 {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.33;
  letter-spacing: 0.08em;
  margin: 2rem auto 1rem;
  color: var(--color-on-accent2);
}
@media (max-width: 767px) {
  .c-heading-level3 {
    font-size: 1.25rem;
    margin: 1.5rem auto 1rem;
  }
}
@media (max-width: 599px) {
  .c-heading-level3 {
    font-size: 1.125rem;
  }
}

.c-heading-level4 {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.33;
  letter-spacing: 0.08em;
  margin: 2rem auto 1rem;
  color: var(--color-on-accent2);
}
@media (max-width: 767px) {
  .c-heading-level4 {
    margin: 1.5rem auto 1rem;
  }
}
@media (max-width: 599px) {
  .c-heading-level4 {
    font-size: 1rem;
  }
}

/* ------------------------------------- */
/* フォント設定 */
/* ------------------------------------- */
.zen-maru-gothic {
  font-family: "Zen Maru Gothic", sans-serif;
}

.zen-kaku-gothic-antique {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: medium;
}

.lato {
  font-family: "Lato", sans-serif;
}

body {
  font-family: "Noto Sans JP", "Noto Sans CJK JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  box-sizing: border-box;
  color: var(--color-brand-primary);
}

.c-text {
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.7;
  letter-spacing: 0.08em;
}
@media (max-width: 599px) {
  .c-text {
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.75;
  }
}
.c-text {
  /* ------------------------------------- */
  /* Modifier:  */
  /* ------------------------------------- */
}
.c-text--xlg {
  font-size: 1.5rem;
}
@media (max-width: 1024px) {
  .c-text--xlg {
    font-size: 1.375rem;
  }
}
@media (max-width: 599px) {
  .c-text--xlg {
    font-size: 1.125rem;
  }
}
.c-text--lg {
  font-size: 1.125rem;
}
@media (max-width: 1024px) {
  .c-text--lg {
    font-size: 1rem;
  }
}
.c-text--sm {
  font-size: 1rem;
}
@media (max-width: 768px) {
  .c-text--sm {
    font-size: 0.875rem;
  }
}
.c-text--xsm {
  font-size: 0.875rem;
}
@media (max-width: 599px) {
  .c-text--xsm {
    font-size: 0.75rem;
  }
}
@media (max-width: 767px) {
  .c-text--sm-u768 {
    font-size: 0.875rem;
  }
}
.c-text {
  /* ------------------------------------- */
  /* 特定部分のみの設定 */
  /* ------------------------------------- */
}
.c-text__sub-text--lead {
  font-size: 0.8125rem;
  line-height: 1.1;
  letter-spacing: 0.05em;
}
@media (max-width: 599px) {
  .c-text__sub-text--lead {
    font-size: 0.75rem;
    line-height: 1.4;
  }
}
.c-text__sub-text--body {
  font-size: 0.8125rem;
  line-height: 1.1;
  letter-spacing: 0.05em;
}
@media (max-width: 599px) {
  .c-text__sub-text--body {
    font-size: 0.75rem;
  }
}
@media (max-width: 1024px) {
  .c-text__item {
    font-size: 0.875rem;
  }
}
.c-text__top-hero-title {
  font-size: 2.5rem;
  line-height: 1.4;
  letter-spacing: 0.3em;
}
@media (max-width: 1024px) {
  .c-text__top-hero-title {
    font-size: 2rem;
    letter-spacing: 0.2em;
  }
}
@media (max-width: 767px) {
  .c-text__top-hero-title {
    font-size: 1.5rem;
    letter-spacing: 0.2em;
  }
}
@media (max-width: 599px) {
  .c-text__top-hero-title {
    font-size: 1.25rem;
    line-height: 1.6;
    letter-spacing: 0.1em;
  }
}
.c-text__top-hero-text {
  font-size: 1rem;
}
@media (min-width: 600px) {
  .c-text__top-hero-text {
    letter-spacing: 0.4em;
    line-height: 1.8;
  }
}
@media (max-width: 599px) {
  .c-text__top-hero-text {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    line-height: 2;
  }
}
.c-text__top-about {
  font-size: 1.125rem;
  line-height: 1.7778;
  letter-spacing: 0.08em;
}
@media (max-width: 1200px) {
  .c-text__top-about {
    font-size: 1rem;
  }
}
.c-text__catchphrase {
  font-size: 1.5rem;
  letter-spacing: 0.1em;
}
@media (max-width: 1200px) {
  .c-text__catchphrase {
    font-size: 1.25rem;
  }
}
@media (max-width: 767px) {
  .c-text__catchphrase {
    font-size: 1.125rem;
  }
}
.c-text__top-recruit-lead {
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  line-height: 1.3;
}
@media (max-width: 1200px) {
  .c-text__top-recruit-lead {
    font-size: 1.375rem;
  }
}
@media (max-width: 1024px) {
  .c-text__top-recruit-lead {
    font-size: 1.25rem;
  }
}
@media (max-width: 599px) {
  .c-text__top-recruit-lead {
    font-size: 1.125rem;
  }
}
.c-text__top-recruit-text {
  font-size: 1.125rem;
  letter-spacing: 0.08em;
  line-height: 1.7;
}
@media (max-width: 1200px) {
  .c-text__top-recruit-text {
    font-size: 1rem;
  }
}
@media (max-width: 1024px) {
  .c-text__top-recruit-text {
    font-size: 0.875rem;
  }
}
.c-text__recruit-banner-text {
  font-size: 1.5rem;
}
@media (max-width: 599px) {
  .c-text__recruit-banner-text {
    font-size: 1.25rem;
  }
}
.c-text__medical-guideline-num {
  font-size: 1.5rem;
}
@media (max-width: 599px) {
  .c-text__medical-guideline-num {
    font-size: 1rem;
  }
}
.c-text__recruit-num {
  font-size: 2.5rem;
}
@media (max-width: 599px) {
  .c-text__recruit-num {
    font-size: 2rem;
  }
}
@media (max-width: 1200px) {
  .c-text__fnav-list {
    font-size: 0.875rem;
  }
}

.c-hamburger-button {
  display: none;
}
@media (max-width: 768px) {
  .c-hamburger-button {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background-color: var(--color-brand-accent);
    border-radius: 0 0 0 8px;
    cursor: pointer;
    z-index: 1000;
  }
  .c-hamburger-button span {
    position: absolute;
    left: 15px;
    width: 30px;
    height: 1px;
    background-color: var(--color-on-accent);
    transition: top 0.2s ease, transform 0.2s ease, opacity 0.2s ease, left 0.2s ease;
  }
  .c-hamburger-button span:nth-of-type(1) {
    top: 20px;
  }
  .c-hamburger-button span:nth-of-type(2) {
    top: 30px;
  }
  .c-hamburger-button span:nth-of-type(3) {
    top: 40px;
  }
  .c-hamburger-button.active span {
    width: 36px;
    left: 12px;
  }
  .c-hamburger-button.active span:nth-of-type(1) {
    transform: translateY(10px) rotate(-45deg);
  }
  .c-hamburger-button.active span:nth-of-type(2) {
    opacity: 0;
  }
  .c-hamburger-button.active span:nth-of-type(3) {
    transform: translateY(-10px) rotate(45deg);
  }
}

.c-circle-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background-color: var(--color-surface-secondary);
  color: var(--color-on-secondary-surface);
}
.c-circle-box--light-1 {
  /* 装飾色1: #EFDCD5 淡い小豆系・ダスティピンク系 */
  background-color: var(--color-fill-light-1);
  color: var(--color-on-base);
}
.c-circle-box--light-2 {
  /* 装飾色2: #F8F6F0 薄い生成り/ベージュ系　*/
  background-color: var(--color-fill-light-2);
  color: var(--color-on-base);
}
.c-circle-box {
  width: 120px;
  height: 120px;
}
.c-circle-box--lg {
  width: 164px;
  height: 164px;
}
@media (max-width: 599px) {
  .c-circle-box--lg {
    width: 120px;
    height: 120px;
  }
}
.c-circle-box--sm {
  width: 80px;
  height: 80px;
}

.c-schedule-table {
  width: 100%;
  max-width: 644px;
  border-collapse: collapse;
  border-bottom: 1px solid var(--color-brand-primary);
  color: var(--color-brand-primary);
  --u-border-color: var(--color-brand-primary);
}
.c-schedule-table__header--time {
  border-right: none;
  text-align: left;
  width: 120px;
  text-align: center;
  padding: 10px 0;
}
.c-schedule-table th,
.c-schedule-table td {
  padding: 0 5px;
  font-weight: medium;
}
.c-schedule-table th {
  line-height: 4.06em;
}
@media (max-width: 599px) {
  .c-schedule-table th {
    line-height: 1.5rem;
    padding: 0;
  }
}
.c-schedule-table td {
  text-align: center;
}
@media (max-width: 599px) {
  .c-schedule-table td {
    line-height: 2.0625rem;
    padding: 0;
  }
}
.c-schedule-table__header--time {
  width: 143px;
  letter-spacing: 0.05em;
}
@media (max-width: 1200px) {
  .c-schedule-table__header--time {
    width: 23.7%;
  }
}
@media (max-width: 599px) {
  .c-schedule-table__header--time {
    width: 25.2%;
  }
}
.c-schedule-table__l-spacing-u {
  letter-spacing: -0.2em;
}
.c-schedule-table__data {
  width: 70px;
}
@media (max-width: 1200px) {
  .c-schedule-table__data {
    width: 10%;
  }
}
@media (max-width: 599px) {
  .c-schedule-table__data {
    width: 11%;
  }
}
.c-schedule-table__data--circle {
  color: var(--color-brand-accent);
}
.c-schedule-table__data--star {
  color: var(--color-warning);
}
.c-schedule-table__data--star-blue {
  color: #406ea3;
}
.c-schedule-table--footer {
  background: #fff;
  border-radius: 4px;
  border-bottom: none;
}
.c-schedule-table--footer th {
  line-height: 3.35em;
}
@media (max-width: 599px) {
  .c-schedule-table--footer th {
    width: auto;
  }
}
@media (max-width: 1200px) {
  .c-schedule-table--footer .c-schedule-table__data {
    width: 60px;
  }
}
@media (max-width: 599px) {
  .c-schedule-table--footer .c-schedule-table__data {
    width: 40px;
  }
}

.c-schedule-info {
  padding-top: 20px;
  line-height: 2;
}
@media (max-width: 599px) {
  .c-schedule-info {
    line-height: 1;
  }
}
.c-schedule-info__summary {
  margin: 0 auto;
}
.c-schedule-info__notes-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 0;
  letter-spacing: 0.04em;
}
.c-schedule-info__notes-item {
  line-height: 1.5;
}

.c-list-link__button {
  width: 49px;
}
.c-list-link__button img {
  width: 100%;
}
@media (max-width: 767px) {
  .c-list-link__button {
    width: 30px;
  }
}
.c-list-link__text {
  margin-left: 12px;
}
.c-list-link__text a {
  color: var(--color-link);
  letter-spacing: 0.08em;
  border-bottom: 1px var(--color-link) solid;
  padding-bottom: 0.4rem;
}

.c-hero {
  width: 96.7%;
  max-width: 1392px;
  margin: 0 auto;
  padding: 60px 0;
  border-radius: 4px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 599px) {
  .c-hero {
    border-radius: 8px;
    padding: 30px 0;
  }
}
.c-hero--medical {
  background: url("../images/medical-treatment-header.jpg") no-repeat top center;
  background-size: cover;
}
.c-hero--hospital {
  background: url("../images/hospital-header.jpg") no-repeat top center;
  background-size: cover;
}
.c-hero--staff {
  background: url("../images/staff-header.jpg") no-repeat top center;
  background-size: cover;
}
.c-hero--access, .c-hero--recruit {
  background: url("../images/access-header.jpg") no-repeat top center;
  background-size: cover;
}
.c-hero--blog-list, .c-hero--blog, .c-hero--news {
  background: url("../images/access-header.jpg") no-repeat top center;
  background-size: cover;
}

.c-page-header {
  background: var(--color-surface-base);
  aspect-ratio: 408/200;
  width: 82.2%;
  max-width: 408px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 599px) {
  .c-page-header {
    aspect-ratio: 295/98;
  }
}
.c-page-header__title {
  color: var(--color-title-accent);
  font-size: 2.5rem;
  letter-spacing: 0.1em;
  line-height: 1.4;
  margin: 0 auto;
}
@media (max-width: 599px) {
  .c-page-header__title {
    font-size: 2rem;
  }
}
.c-page-header__sub-title {
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.c-breadcrumb {
  margin: 1rem 16px;
}
@media (max-width: 599px) {
  .c-breadcrumb {
    margin: 1rem 12px;
  }
}
.c-breadcrumb__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.c-breadcrumb__item {
  margin-right: 16px;
  padding-right: 26px;
  position: relative;
}
@media (max-width: 599px) {
  .c-breadcrumb__item {
    margin-right: 12px;
    padding-right: 20px;
  }
}
.c-breadcrumb__item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  background: url("../images/breadcrumbs-arrow.svg") no-repeat center center;
  background-size: contain;
  width: 8px;
  height: 14px;
  transform: translateY(-50%);
}
@media (max-width: 599px) {
  .c-breadcrumb__item::after {
    top: 60%;
    width: 7px;
    height: 12px;
  }
}
.c-breadcrumb__item:last-child {
  margin-right: 0;
  padding-right: 0;
}
.c-breadcrumb__item:last-child::after {
  background: none;
}
.c-breadcrumb__link {
  color: var(--color-on-base);
}
.c-breadcrumb__item-here {
  color: var(--color-title-accent);
}

.c-photo-gallery__container {
  gap: 16px;
}
.c-photo-gallery__main {
  margin: 0;
  text-align: center;
  aspect-ratio: 520/340;
  border-radius: 4px;
}
.c-photo-gallery__img {
  width: 100%;
  max-width: 520px;
  border-radius: 4px;
}
.c-photo-gallery__sub-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.c-photo-gallery__sub-item {
  width: 100%;
  max-width: 150px;
}
.c-photo-gallery__sub-photo {
  margin: 0;
  text-align: center;
  border-radius: 4px;
}
.c-photo-gallery__sub-img {
  width: 100%;
  max-width: 161px;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.c-photo-gallery__sub-img:hover {
  opacity: 0.7;
}

.c-profile-card__photo {
  text-align: center;
}
.c-profile-card__photo-img {
  width: 100%;
  max-width: 1140px;
  border-radius: 4px;
  margin: 0 auto;
}

.c-info-body__role {
  color: var(--color-title-accent);
  margin: 0 auto;
}
@media (max-width: 599px) {
  .c-info-body__role {
    text-align: center;
  }
}
.c-info-body__name {
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.3;
  margin: 0 auto;
  display: flex;
  gap: 24px;
  align-items: center;
}
@media (max-width: 599px) {
  .c-info-body__name {
    flex-direction: column;
    gap: 4px;
  }
}
.c-info-body__name__text {
  margin: 1.5rem auto 0;
}

.c-profile-list {
  width: 100%;
  margin: 0 auto;
  padding: 36px 0 0 26px;
  position: relative;
}
@media (max-width: 599px) {
  .c-profile-list {
    padding: 48px 0 0;
  }
}
.c-profile-list__title {
  position: absolute;
  background: url(../images/staff-prof-background.svg) no-repeat left top;
  background-size: contain;
  width: 81px;
  height: 74px;
  top: 0;
  left: 0;
  margin: 0;
  line-height: 74px;
  text-align: center;
  z-index: 1;
  color: var(--color-surface-base);
  font-weight: bold;
}
@media (max-width: 599px) {
  .c-profile-list__title {
    left: 16px;
  }
}
.c-profile-list__dl-wrap {
  position: relative;
  z-index: 0;
  width: 100%;
  max-width: 600px;
  background: var(--color-fill-light-2);
  padding: 32px 42px;
}
@media (max-width: 1024px) {
  .c-profile-list__dl-wrap {
    padding: 32px 20px;
  }
}
@media (max-width: 599px) {
  .c-profile-list__dl-wrap {
    padding: 32px;
  }
}
.c-profile-list__dl {
  margin: 0 auto;
  padding: 0;
}
@media (max-width: 599px) {
  .c-profile-list__item {
    width: 100%;
    flex-direction: column;
  }
}
.c-profile-list__dt {
  white-space: nowrap;
  width: 120px;
  min-width: 120px;
  flex-shrink: 0;
  color: var(--color-title-accent);
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 2;
  text-align: right;
  margin-bottom: 1rem;
}
@media (max-width: 599px) {
  .c-profile-list__dt {
    text-align: left;
    margin-bottom: 0;
  }
}
.c-profile-list__dd {
  font-size: 1.125rem;
  font-weight: 500;
  flex-grow: 1;
  letter-spacing: 0.1em;
  line-height: 1.7;
  margin-left: 32px;
  margin-bottom: 1rem;
}
@media (max-width: 1024px) {
  .c-profile-list__dd {
    font-size: 1rem;
  }
}

.c-profile-list--staff .c-profile-list__dl-wrap {
  padding: 32px 24px 32px 40px;
  max-width: 554px;
}
@media (max-width: 1024px) {
  .c-profile-list--staff .c-profile-list__dl-wrap {
    padding: 32px 20px;
  }
}
@media (max-width: 599px) {
  .c-profile-list--staff .c-profile-list__dl-wrap {
    padding: 32px 24px 32px 40px;
  }
}
.c-profile-list--staff .c-profile-list__dt {
  width: 94px;
  min-width: 94px;
}
.c-profile-list--staff .c-profile-list__dd {
  margin-left: 22px;
}

.c-google-button {
  /* 共通プロパティ */
  border-radius: 999px;
  background: var(--color-on-accent);
}
.c-google-button__map-link {
  gap: 6px;
  align-items: center;
  letter-spacing: 0.05em;
  padding: 4px 16px;
  color: var(--color-on-accent2);
}
.c-google-button--accent {
  background: var(--color-on-accent2);
}

.c-google-button--accent .c-google-button__map-link {
  color: var(--color-on-accent);
}

.c-information-list {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  position: relative;
}
.c-information-list__dl {
  margin: 0 auto;
  padding: 0;
}
@media (max-width: 599px) {
  .c-information-list__item {
    width: 100%;
    flex-direction: column;
  }
}
.c-information-list__dt {
  white-space: nowrap;
  width: 72px;
  min-width: 72px;
  flex-shrink: 0;
  color: var(--color-title-accent);
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 2;
  text-align: right;
  margin-bottom: 1rem;
}
@media (max-width: 599px) {
  .c-information-list__dt {
    text-align: left;
    margin-bottom: 0;
  }
}
.c-information-list__dd {
  font-size: 1.125rem;
  font-weight: 500;
  flex-grow: 1;
  letter-spacing: 0.1em;
  line-height: 1.7;
  margin-left: 32px;
  margin-bottom: 1rem;
}
@media (max-width: 599px) {
  .c-information-list__dd {
    font-size: 1rem;
  }
}

.p-header {
  padding-bottom: 1rem;
}
@media (min-width: 600px) {
  .p-header__inner {
    height: 120px;
    padding: 0;
  }
}
.p-header__logo-area {
  width: -moz-fit-content;
  width: fit-content;
  margin: 1rem 36px;
}
.p-header__logo-image {
  max-width: 196px;
}
.p-header__sub-text {
  letter-spacing: 0.05em;
}
.p-header__sub-text--lead {
  margin-right: 5px;
  white-space: nowrap;
}
@media (max-width: 1200px) {
  .p-header__logo-area {
    width: -moz-fit-content;
    width: fit-content;
    margin: 1rem 22px;
  }
  .p-header__logo-image {
    max-width: 150px;
  }
}
@media (max-width: 768px) {
  .p-header__logo-area {
    margin: 12px 0 12px 5.3%;
    width: auto;
    display: flex;
    flex-flow: row-reverse;
    justify-content: flex-end;
    align-items: center;
    gap: 27px;
  }
  .p-header__logo-image {
    max-width: 99px;
  }
  .p-header__sub-text {
    min-width: 144px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    white-space: nowrap;
  }
}
.p-header__nav-area {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}
@media (max-width: 1200px) {
  .p-header__nav-area {
    margin-left: 20px;
  }
}
@media (max-width: 768px) {
  .p-header__nav-area {
    margin-left: 0;
  }
}
.p-header__nav-area.is-fixed {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 0 0 10px;
  animation: slideDown 0.3s ease;
  width: 100%;
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.p-header__nav-list-wrap {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
}
@media (max-width: 1280px) {
  .p-header__tel-btn-wrap .c-tel-button {
    padding: 1rem 10px;
  }
}
@media (max-width: 768px) {
  .p-header__tel-btn-wrap .c-tel-button {
    padding: 1rem 20px;
  }
}

.p-header--top .p-header__logo-area {
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 1024px) {
  .p-header--top .p-header__logo-area {
    width: 150px;
  }
}
@media (max-width: 767px) {
  .p-header--top .p-header__logo-area {
    width: -moz-fit-content;
    width: fit-content;
  }
}
.p-header--top .p-header__logo-area .p-header__sub-text {
  display: block;
  order: 1;
  margin-bottom: 1rem;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .p-header--top .p-header__logo-area .p-header__sub-text.u-disp-u768 {
    display: none;
  }
}
@media (max-width: 768px) {
  .p-header--top .p-header__logo-area .p-header__sub-text {
    margin-bottom: 0;
  }
}
.p-header--top .p-header__logo-area .p-header__logo {
  order: 2;
}
.p-header--top .p-header__nav-list-wrap {
  margin-top: 41px;
}
@media (max-width: 768px) {
  .p-header--top .p-header__nav-list-wrap {
    margin-top: 0;
  }
}
.p-header--top .p-header__nav-area .p-header__sub-text {
  display: none;
}
@media (max-width: 768px) {
  .p-header--top .p-header__nav-area .p-header__sub-text {
    display: flex;
    flex-direction: column;
    margin: 0 0 0 16px;
    align-items: flex-start;
  }
}

.p-header--page .p-header__logo-area .p-header__sub-text {
  display: none;
}
.p-header--page__nav-list-wrap {
  flex-direction: column;
  align-items: flex-end;
}
.p-header--page .p-header__sub-text {
  display: block;
  order: 1;
  margin: 0 16px 1rem 0;
}
@media (max-width: 1024px) {
  .p-header--page .p-header__sub-text {
    margin: 0 16px 0 0;
  }
}
@media (max-width: 768px) {
  .p-header--page .p-header__sub-text {
    margin: 0 0 0 26px;
    display: flex;
    flex-direction: column;
    margin: 0 0 0 16px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .p-header--page .p-gnav__list {
    display: none;
  }
}
.p-header--page .p-gnav__list {
  order: 2;
}

.p-top-hero__inner {
  width: 100%;
  max-width: 1080px;
  max-height: 800px;
  margin: 0 auto;
  padding: 0;
  display: flex;
}
@media (max-width: 1200px) {
  .p-top-hero__inner {
    padding: 0 4%;
  }
}
@media (max-width: 1024px) {
  .p-top-hero__inner {
    max-height: 580px;
  }
}
@media (min-width: 600px) and (max-width: 767px) {
  .p-top-hero__inner {
    max-height: 440px;
  }
}
@media (max-width: 599px) {
  .p-top-hero__inner {
    width: 100%;
    max-width: 375px;
    padding: 0;
  }
}
@media (min-width: 600px) {
  .p-top-hero__inner {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-start;
  }
}
@media (max-width: 599px) {
  .p-top-hero__inner {
    flex-direction: column;
  }
}
.p-top-hero__title-area, .p-top-hero__sub-text {
  position: relative;
  z-index: 3;
  writing-mode: vertical-rl;
}
@media (min-width: 600px) {
  .p-top-hero__title-area, .p-top-hero__sub-text {
    flex-shrink: 0;
    width: auto;
    height: auto;
  }
}
@media (max-width: 599px) {
  .p-top-hero__title-area, .p-top-hero__sub-text {
    writing-mode: horizontal-tb;
  }
}
@media (max-width: 599px) {
  .p-top-hero__title-area {
    order: 2;
    margin-top: -2rem;
    margin-left: 37px;
  }
}
@media (max-width: 1024px) {
  .p-top-hero__title {
    height: 500px;
  }
}
@media (min-width: 600px) and (max-width: 767px) {
  .p-top-hero__title {
    height: 400px;
  }
}
@media (max-width: 599px) {
  .p-top-hero__title {
    display: flex;
    flex-direction: column;
    height: auto;
    margin-bottom: 0;
  }
}
.p-top-hero__title-line {
  display: block;
}
.p-top-hero__title-line--shift {
  padding-top: 13rem;
}
@media (max-width: 1024px) {
  .p-top-hero__title-line--shift {
    padding-top: 10rem;
  }
}
@media (min-width: 600px) and (max-width: 767px) {
  .p-top-hero__title-line--shift {
    padding-top: 6rem;
  }
}
@media (max-width: 599px) {
  .p-top-hero__title-line--shift {
    padding-top: 0;
  }
}
@media (min-width: 600px) {
  .p-top-hero__sub-text {
    order: 3;
    margin-top: 13%;
    margin-right: -32px;
  }
}
@media (max-width: 1024px) {
  .p-top-hero__sub-text {
    margin-right: -69px;
  }
}
@media (max-width: 599px) {
  .p-top-hero__sub-text {
    order: 3;
    margin: 0 0 0 37px;
  }
}
.p-top-hero__visual {
  position: relative;
  width: 784px;
  height: 757px;
  z-index: 2;
}
@media (max-width: 1024px) {
  .p-top-hero__visual {
    width: 585px;
    height: 550px;
  }
}
@media (min-width: 600px) and (max-width: 767px) {
  .p-top-hero__visual {
    width: 440px;
    height: 407px;
  }
}
@media (max-width: 599px) {
  .p-top-hero__visual {
    order: 1;
    width: 100%;
    max-width: 375px;
    height: 379px;
  }
}
.p-top-hero__visual-layer1 {
  z-index: 0;
  width: 605px;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 82px;
}
@media (max-width: 1024px) {
  .p-top-hero__visual-layer1 {
    width: 440px;
    bottom: 0;
    left: 76px;
  }
}
@media (min-width: 600px) and (max-width: 767px) {
  .p-top-hero__visual-layer1 {
    width: 325px;
    bottom: 0;
    left: 56px;
  }
}
@media (max-width: 599px) {
  .p-top-hero__visual-layer1 {
    width: 329px;
    bottom: 0;
    left: 3px;
  }
}
.p-top-hero__visual-layer2 {
  z-index: 1;
  width: 560px;
  height: auto;
  position: absolute;
  top: 125px;
  left: 152px;
  border-radius: 80px;
}
@media (max-width: 1024px) {
  .p-top-hero__visual-layer2 {
    width: 407px;
    top: 90px;
    left: 124px;
  }
}
@media (min-width: 600px) and (max-width: 767px) {
  .p-top-hero__visual-layer2 {
    width: 301px;
    top: 67px;
    left: 92px;
  }
}
@media (max-width: 599px) {
  .p-top-hero__visual-layer2 {
    width: 306px;
    top: 38px;
    left: 35px;
  }
}
.p-top-hero__visual-layer3 {
  z-index: 2;
  width: 113px;
  height: auto;
  position: absolute;
  top: 106px;
  left: 111px;
}
@media (max-width: 1024px) {
  .p-top-hero__visual-layer3 {
    width: 82px;
    top: 77px;
    left: 95px;
  }
}
@media (min-width: 600px) and (max-width: 767px) {
  .p-top-hero__visual-layer3 {
    width: 66px;
    top: 56px;
    left: 70px;
  }
}
@media (max-width: 599px) {
  .p-top-hero__visual-layer3 {
    width: 62px;
    top: 35px;
    left: 29px;
  }
}
.p-top-hero__visual-layer4 {
  z-index: 2;
  width: 100px;
  height: auto;
  position: absolute;
  top: 418px;
  left: 0;
}
@media (max-width: 1024px) {
  .p-top-hero__visual-layer4 {
    width: 73px;
    top: 303px;
    left: 14px;
  }
}
@media (min-width: 600px) and (max-width: 767px) {
  .p-top-hero__visual-layer4 {
    width: 54px;
    top: 224px;
    left: 10px;
  }
}
@media (max-width: 599px) {
  .p-top-hero__visual-layer4 {
    width: 50px;
    top: 125px;
    left: 4px;
  }
}
.p-top-hero__visual-layer5 {
  z-index: 2;
  width: 142px;
  height: auto;
  position: absolute;
  top: 523px;
  right: 0px;
}
@media (max-width: 1024px) {
  .p-top-hero__visual-layer5 {
    width: 103px;
    top: 380px;
    right: 0;
  }
}
@media (min-width: 600px) and (max-width: 767px) {
  .p-top-hero__visual-layer5 {
    width: 77px;
    top: 281px;
    right: 0;
  }
}
@media (max-width: 599px) {
  .p-top-hero__visual-layer5 {
    width: 75px;
    top: 242px;
    right: 6px;
  }
}

.p-gnav__list {
  letter-spacing: 0.1em;
}
.p-gnav__item {
  border-left: 1px var(--color-decorative-accent) solid;
  padding: 0 30px;
}
@media (max-width: 1024px) {
  .p-gnav__item {
    padding: 0 16px;
  }
}
.p-gnav__link {
  color: var(--color-on-base);
}

.p-gnav-tel {
  padding: 0;
  border-left: none;
}
@media (max-width: 768px) {
  .p-gnav-tel {
    display: none;
  }
}
.p-gnav-tel .c-tel-button {
  border-radius: 0 0 0 8px;
}

.p-footer {
  background: var(--color-surface-secondary);
  padding: 80px 0 60px;
  border-radius: 64px 64px 0 0;
}
@media (max-width: 599px) {
  .p-footer {
    padding: 52px 0;
  }
}
.p-footer__container {
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .p-footer__container {
    flex-direction: column;
  }
}
.p-footer__column-main {
  width: 42.3%;
  margin: 0 32px;
}
@media (max-width: 1280px) {
  .p-footer__column-main {
    margin: 0 2%;
  }
}
@media (max-width: 1024px) {
  .p-footer__column-main {
    padding: 0 4%;
    margin: 0 auto;
  }
}
@media (max-width: 1024px) {
  .p-footer__column-main {
    width: 100%;
    max-width: 644px;
    padding: 0 4%;
  }
}
@media (max-width: 767px) {
  .p-footer__column-main {
    width: 100%;
  }
}
@media (max-width: 599px) {
  .p-footer__contact-header {
    flex-direction: column;
  }
}
.p-footer__call-num-group {
  margin-left: 38px;
  letter-spacing: 0.05em;
}
@media (max-width: 1280px) {
  .p-footer__call-num-group {
    margin-left: 3%;
  }
}
@media (max-width: 599px) {
  .p-footer__call-num-group {
    margin-top: 8px;
    margin-left: 0;
  }
}
@media (max-width: 599px) {
  .p-footer__logo-link {
    text-align: center;
  }
}
.p-footer__logo-image {
  max-width: 156px;
  width: 100%;
}
.p-footer__address-group {
  gap: 16px;
  margin-top: 16px;
}
@media (max-width: 1200px) {
  .p-footer__address-group {
    flex-wrap: wrap;
  }
}
@media (max-width: 599px) {
  .p-footer__address-group {
    justify-content: center;
    margin-top: 24px;
  }
}
.p-footer__address-group--lead, .p-footer__address-group--body {
  letter-spacing: 0.05em;
}
@media (max-width: 599px) {
  .p-footer__address-group--lead, .p-footer__address-group--body {
    font-size: 0.8125rem;
  }
}
.p-footer__call-num-group--primary {
  letter-spacing: 0.05em;
}
@media (max-width: 599px) {
  .p-footer__call-num-group--primary {
    text-align: center;
  }
}
.p-footer__nav {
  margin-top: 32px;
}
.p-footer__column-schedule {
  width: 54%;
}
@media (max-width: 1024px) {
  .p-footer__column-schedule {
    width: 100%;
    max-width: 644px;
    padding: 0 4%;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .p-footer__column-schedule {
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }
}
.p-footer__column-schedule .c-schedule-info__notes-item span.u-text-warning {
  color: var(--color-on-base);
  font-weight: bold;
  border-bottom: 2px var(--color-warning--red) solid;
}

.p-top-schedule {
  margin: 0 auto;
  background: url("../images/p-medical-treatment__back.jpg") no-repeat top left;
  background-size: 20% auto;
}
@media (max-width: 1024px) {
  .p-top-schedule {
    background-size: 15% auto;
  }
}
@media (max-width: 767px) {
  .p-top-schedule {
    background-size: 38% auto;
    background-position-y: 16px;
  }
}
.p-top-schedule__inner {
  padding-top: 75px;
}
@media (min-width: 600px) {
  .p-top-schedule__inner {
    max-width: 1200px;
    margin: 0 auto;
  }
}
.p-top-schedule__left {
  width: 30%;
  align-items: flex-end;
}
@media (max-width: 1024px) {
  .p-top-schedule__left {
    width: 20%;
  }
}
@media (max-width: 767px) {
  .p-top-schedule__left {
    width: 100%;
    margin-bottom: 60px;
    align-items: center;
  }
}
.p-top-schedule__left .c-circle-box__text {
  margin-bottom: 5px;
}
.p-top-schedule__left .c-circle-box__icon img {
  width: 24px;
}
@media (max-width: 599px) {
  .p-top-schedule__left .c-circle-box__icon img {
    width: 10.5px;
  }
}
.p-top-schedule__title {
  width: 100%;
  max-width: 160px;
  text-align: center;
  letter-spacing: 0.1em;
}
.p-top-schedule__right {
  width: 63%;
}
@media (max-width: 1024px) {
  .p-top-schedule__right {
    width: 75%;
  }
}
@media (max-width: 767px) {
  .p-top-schedule__right {
    width: 100%;
  }
}
.p-top-schedule .disp-top {
  display: none;
}

.p-top-information {
  margin: 0 auto 24px;
}
@media (max-width: 1280px) {
  .p-top-information {
    margin: 80px 2% 0;
  }
}
@media (max-width: 1024px) {
  .p-top-information {
    margin: 80px 4% 0;
  }
}
.p-top-information__inner {
  padding: 48px 80px 80px;
}
@media (max-width: 1024px) {
  .p-top-information__inner {
    padding: 40px 48px 56px;
  }
}
@media (max-width: 599px) {
  .p-top-information__inner {
    padding: 24px 20px 48px;
  }
}
.p-top-information__inner {
  background: url("../images/information-background02.jpg") no-repeat top center;
  background-size: cover;
  border-radius: 80px;
}
@media (max-width: 1024px) {
  .p-top-information__inner {
    border-radius: 56px;
  }
}
@media (max-width: 599px) {
  .p-top-information__inner {
    border-radius: 32px;
  }
}
.p-top-information__list-news {
  background: var(--color-surface-base);
  padding: 4px 56px 16px;
  border-radius: 8px;
}
@media (max-width: 1024px) {
  .p-top-information__list-news {
    padding: 4px 32px 16px;
  }
}
@media (max-width: 599px) {
  .p-top-information__list-news {
    padding: 4px 16px 16px;
  }
}
.p-top-information__list-item {
  margin-left: 0;
}
.p-top-information__blog {
  margin: 80px auto 0;
}
@media (max-width: 1024px) {
  .p-top-information__blog {
    margin: 56px auto 0;
    flex-direction: column;
  }
}
@media (max-width: 599px) {
  .p-top-information__blog {
    margin: 32px auto 0;
  }
}
.p-top-information__blog-title {
  width: 24%;
  max-width: 240px;
}
@media (max-width: 1024px) {
  .p-top-information__blog-title {
    width: 100%;
    max-width: 800px;
    display: flex;
    align-items: center;
    gap: 20px;
  }
}
.p-top-information__blog-title-mg {
  margin-left: 32px;
}
@media (max-width: 1024px) {
  .p-top-information__blog-title-mg {
    margin-left: 0;
  }
}
.p-top-information__blog-list-area {
  width: 74%;
  max-width: 764px;
}
@media (max-width: 1024px) {
  .p-top-information__blog-list-area {
    width: 100%;
    max-width: 800px;
  }
}
.p-top-information__blog-list {
  margin: 0 auto;
  padding-left: 0;
}
@media (max-width: 599px) {
  .p-top-information__blog-list {
    flex-direction: column;
    row-gap: 16px;
  }
}
.p-top-information__blog-item {
  width: 30%;
}
@media (max-width: 599px) {
  .p-top-information__blog-item {
    width: 100%;
    display: flex;
    gap: 20px;
  }
}
.p-top-information__blog-thumbnail {
  height: 170px;
  width: 100%;
  border-radius: 4px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 599px) {
  .p-top-information__blog-thumbnail {
    border-radius: 2px;
    height: 150px;
    margin-top: 0.5rem;
  }
}
.p-top-information__blog-date {
  margin-top: 0.5rem;
  padding-right: 32px;
}
@media (max-width: 599px) {
  .p-top-information__blog-date {
    width: 70%;
    padding-right: 0;
    margin-top: 0;
  }
}

.p-top-about {
  margin: 0 auto;
  padding: 160px 0;
  position: relative;
}
@media (max-width: 767px) {
  .p-top-about {
    padding: 120px 0 104px;
  }
}
.p-top-about::before {
  position: absolute;
  content: "";
  background: url("../images/p-top-about__back-right.png") no-repeat top right;
  background-size: 100% 100%;
  top: -36px;
  right: 0;
  width: 372px;
  height: 430px;
  z-index: -1;
  aspect-ratio: 372/430;
}
@media (max-width: 1280px) {
  .p-top-about::before {
    top: 0;
    width: 25.8%;
    height: auto;
    right: -2%;
  }
}
@media (max-width: 599px) {
  .p-top-about::before {
    top: auto;
    width: 38.6%;
    height: auto;
    right: 0;
    bottom: 186px;
  }
}
.p-top-about::after {
  position: absolute;
  content: "";
  background: url("../images/p-top-about__back-left.jpg") no-repeat top left;
  background-size: 100% 100%;
  bottom: 120px;
  left: 0;
  width: 337px;
  height: 366px;
  z-index: -1;
  aspect-ratio: 337/366;
}
@media (max-width: 1280px) {
  .p-top-about::after {
    bottom: 22vw;
    width: 23.4%;
    height: auto;
    left: -2%;
  }
}
@media (max-width: 767px) {
  .p-top-about::after {
    left: 0;
    top: 335px;
    bottom: auto;
  }
}
@media (max-width: 599px) {
  .p-top-about::after {
    width: 40.5%;
    height: auto;
    left: 0;
    top: 335px;
    bottom: auto;
  }
}
@media (max-width: 767px) {
  .p-top-about__inner.u-flex {
    flex-direction: column;
  }
}
.p-top-about__left, .p-top-about__content {
  width: 50%;
}
@media (max-width: 767px) {
  .p-top-about__left, .p-top-about__content {
    width: 100%;
  }
}
.p-top-about__left {
  align-items: self-end;
}
.p-top-about__photo-wrap {
  position: relative;
  text-align: center;
}
.p-top-about__doctor-photo {
  max-width: 479px;
  width: 80%;
  border-radius: 208px;
  margin-top: 112px;
}
@media (max-width: 767px) {
  .p-top-about__doctor-photo {
    width: 100%;
    margin-top: 0;
  }
}
.p-top-about__decoration {
  position: absolute;
  max-width: 144px;
  width: 100%;
  height: 106px;
  left: 47px;
  bottom: 0;
}
@media (max-width: 1200px) {
  .p-top-about__decoration {
    width: 30%;
    left: 5%;
    bottom: 0;
  }
}
@media (max-width: 1024px) {
  .p-top-about__decoration {
    width: 28%;
    left: 0%;
    bottom: -8%;
  }
}
@media (max-width: 767px) {
  .p-top-about__decoration {
    width: 39%;
    left: 14%;
    bottom: -1%;
  }
}
@media (max-width: 599px) {
  .p-top-about__decoration {
    width: 33.9%;
    left: 0%;
    bottom: -24px;
  }
}
.p-top-about__illust {
  max-width: 144px;
  width: 100%;
  height: auto;
}
.p-top-about__doctor-name {
  text-align: center;
  margin: 2rem auto;
}
.p-top-about__title {
  letter-spacing: 0.1em;
}
@media (max-width: 1200px) {
  .p-top-about__title {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
.p-top-about__text {
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .p-top-about__text {
    padding: 0 24px;
  }
}
.p-top-about__footer-link {
  margin-top: 2rem;
}

.p-top-treatment {
  margin: 0 auto;
  padding-bottom: 208px;
}
@media (max-width: 1280px) {
  .p-top-treatment {
    margin: 0 2%;
  }
}
@media (max-width: 1024px) {
  .p-top-treatment {
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .p-top-treatment {
    padding-bottom: 104px;
  }
}
@media (max-width: 1200px) {
  .p-top-treatment__inner.u-flex {
    flex-direction: column;
  }
}
.p-top-treatment__left {
  width: 251px;
}
@media (max-width: 767px) {
  .p-top-treatment__left {
    width: 100%;
  }
}
.p-top-treatment__title {
  letter-spacing: 0.1em;
}
@media (max-width: 1200px) {
  .p-top-treatment__title {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
.p-top-treatment__list-area {
  width: 949px;
}
@media (max-width: 1200px) {
  .p-top-treatment__list-area {
    width: 100%;
  }
}
.p-top-treatment__list {
  list-style: none;
  width: 100%;
  max-width: 949px;
  padding: 0;
}
@media (max-width: 1200px) {
  .p-top-treatment__list {
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .p-top-treatment__list {
    flex-direction: column;
    align-items: center;
  }
}
.p-top-treatment__list-item {
  width: 31.7%;
  max-width: 301px;
  height: 100%;
  aspect-ratio: 301/300;
  position: relative;
}
.p-top-treatment__list-item:before {
  content: "";
  position: absolute;
  z-index: -1;
  background-image: url("../images/p-top-treatment__list-back.svg");
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 301px;
  max-height: 300px;
}
.p-top-treatment__list-item:nth-child(1) {
  margin-top: 107px;
}
.p-top-treatment__list-item:nth-child(2) {
  margin-top: 48px;
}
@media (max-width: 767px) {
  .p-top-treatment__list-item {
    width: 100%;
    margin-bottom: 104px;
  }
  .p-top-treatment__list-item:nth-child(1) {
    margin-top: 0;
  }
  .p-top-treatment__list-item:nth-child(2) {
    margin-top: 0;
  }
}
@media (max-width: 599px) {
  .p-top-treatment__list-item {
    margin-bottom: 88px;
  }
  .p-top-treatment__list-item:last-child {
    margin-top: 64px;
  }
}
.p-top-treatment__num-wrap {
  aspect-ratio: 301/54;
  height: 18%;
  padding-left: 21%;
  letter-spacing: 0.1em;
}
.p-top-treatment__num {
  padding: 8px;
  background: url("../images/p-top-treatment__num-line.svg") no-repeat bottom center;
  background-size: contain;
  color: var(--color-list-accent);
}
@media (max-width: 767px) {
  .p-top-treatment__num {
    color: var(--color-link);
    background: url("../images/p-top-treatment__num-line02.svg") no-repeat bottom center;
  }
}
.p-top-treatment__illust {
  width: -moz-fit-content;
  width: fit-content;
  aspect-ratio: 301/179;
  height: 59.5%;
}
.p-top-treatment__illust-01 {
  max-width: 123px;
  width: 41%;
}
.p-top-treatment__illust-02 {
  max-width: 115px;
  width: 38.2%;
}
.p-top-treatment__illust-03 {
  max-width: 140px;
  width: 46.5%;
}
.p-top-treatment__catchphrase {
  width: -moz-fit-content;
  width: fit-content;
  aspect-ratio: 301/67;
  margin: 0 auto;
  height: 22%;
  text-align: center;
}
.p-top-treatment__footer-link .c-list-link.u-jc-end {
  justify-content: center;
}

.p-top-recruit {
  margin: 0 auto;
  padding-bottom: 126px;
}
@media (max-width: 599px) {
  .p-top-recruit {
    padding-bottom: 104px;
  }
}
.p-top-recruit__inner {
  max-width: 985px;
  width: 82%;
  margin: 0 auto;
  background: url("../images/recruit-back_pc.jpg") no-repeat top center;
  background-size: 100% 100%;
}
@media (max-width: 1024px) {
  .p-top-recruit__inner {
    border-radius: 999px 0 0 999px;
    width: 92%;
  }
}
@media (max-width: 599px) {
  .p-top-recruit__inner {
    width: 92%;
    background: url("../images/recruit-back_sp.jpg") no-repeat bottom center;
    background-size: 100% 100%;
    border-radius: 0 0 36px 36px;
  }
}
@media (max-width: 599px) {
  .p-top-recruit__link {
    flex-direction: column;
    flex-direction: column-reverse;
  }
}
.p-top-recruit__banner-image {
  max-width: 380px;
  width: 38.8%;
  aspect-ratio: 380/329;
  background: url("../images/recruit-cat_pc.jpg") no-repeat top center;
  background-size: cover;
  border-radius: 999px 0 0 999px;
}
@media (max-width: 599px) {
  .p-top-recruit__banner-image {
    max-width: 552px;
    width: 100%;
    aspect-ratio: 335/220;
    background: url("../images/recruit-cat_sp.jpg") no-repeat top center;
    background-size: cover;
    border-radius: 0 0 36px 36px;
  }
}
.p-top-recruit__content {
  margin: 40px 0 0 40px;
}
@media (max-width: 1024px) {
  .p-top-recruit__content {
    margin: 24px 0 0 24px;
  }
}
@media (max-width: 599px) {
  .p-top-recruit__content {
    margin: 56px 10px 48px 20px;
  }
}
.p-top-recruit__title {
  margin-top: 0;
}
.p-top-recruit__lead-text {
  margin-bottom: 0.5rem;
}
.p-top-recruit .c-list-link {
  margin-right: 72px;
}
@media (max-width: 599px) {
  .p-top-recruit .c-list-link {
    margin-top: 32px;
    margin-right: 20px;
  }
}

.p-medical-careful__wrap {
  display: flex;
  gap: 113px;
  position: relative;
}
@media (max-width: 1024px) {
  .p-medical-careful__wrap {
    gap: 50px;
  }
}
@media (max-width: 767px) {
  .p-medical-careful__wrap {
    display: block; /* H2とコンテンツの Flex を解除 */
    gap: 0;
  }
}
.p-medical-careful__title-area {
  flex-basis: 121px;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .p-medical-careful__title-area {
    flex-basis: auto;
  }
}
@media (max-width: 767px) {
  .p-medical-careful__title-area {
    position: absolute;
  }
}
.p-medical-careful__title {
  writing-mode: vertical-rl;
  letter-spacing: 0.4em;
  line-height: 1.34;
  font-size: 2rem;
  align-items: center;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .p-medical-careful__title {
    font-size: 1.5rem;
  }
}
.p-medical-careful__title-icon {
  width: 64px;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .p-medical-careful__title-icon {
    width: 40px;
    margin-bottom: 8px;
  }
}
@media (max-width: 767px) {
  .p-medical-careful__lead {
    padding-left: 72px;
  }
}
.p-medical-careful__lead-text {
  max-width: 874px;
}
.p-medical-careful__content {
  position: relative;
  flex-grow: 1;
  padding-bottom: 64px;
}
@media (max-width: 767px) {
  .p-medical-careful__content {
    padding-bottom: 36px;
  }
}
.p-medical-careful__content::before {
  content: "";
  position: absolute;
  width: 1172px;
  height: 517px;
  right: -120px;
  bottom: 0;
  background: url("../images/medical-background.jpg") no-repeat;
  background-size: cover;
  z-index: -1;
  aspect-ratio: 1172/517;
}
@media (max-width: 1339px) {
  .p-medical-careful__content::before {
    width: 113%;
    height: 60%;
    right: -7%;
  }
}
@media (max-width: 767px) {
  .p-medical-careful__content::before {
    position: absolute;
    content: "";
    background: url("../images/medical-background-sp.jpg") no-repeat;
    background-size: cover;
    width: 108%;
    height: 70%;
    right: -4%;
    left: -4%;
    bottom: 0;
    z-index: -1;
    aspect-ratio: 375/928;
  }
}
@media (max-width: 599px) {
  .p-medical-careful__content::before {
    height: auto;
  }
}
.p-medical-careful__detail-list {
  position: relative;
  width: 100%;
  list-style: none;
  margin: 40px auto 56px;
  padding: 0;
  gap: 96px;
}
@media (max-width: 1024px) {
  .p-medical-careful__detail-list {
    gap: 48px;
  }
}
@media (max-width: 767px) {
  .p-medical-careful__detail-list {
    width: -moz-fit-content;
    width: fit-content;
    gap: 80px;
    flex-direction: column;
  }
}
.p-medical-careful__detail-item {
  width: 100%;
  max-width: 400px;
}
.p-medical-careful__detail-photo {
  width: 100%;
  max-width: 400px;
  border-radius: 4px;
}
.p-medical-careful__detail-wrap {
  padding: 0 8px;
}
.p-medical-careful__detail-text {
  margin: 0;
}
@media (max-width: 767px) {
  .p-medical-careful__note {
    text-align: center;
  }
}
@media (max-width: 599px) {
  .p-medical-careful__note {
    text-align: left;
  }
}

.p-medical-guideline {
  background: var(--color-surface-section);
  padding: 128px 48px 160px;
}
@media (max-width: 1339px) {
  .p-medical-guideline {
    padding: 128px 3% 160px;
  }
}
@media (max-width: 599px) {
  .p-medical-guideline {
    padding: 90px 20px 120px;
  }
}
.p-medical-guideline__wrap {
  background: var(--color-surface-base);
  border-radius: 80px;
  margin: 52px auto 0;
  padding: 0 72px;
}
@media (max-width: 1024px) {
  .p-medical-guideline__wrap {
    margin: 40px auto 0;
    padding: 0 32px;
  }
}
@media (max-width: 767px) {
  .p-medical-guideline__wrap {
    border-radius: 40px;
    margin: 20px auto 0;
  }
}
@media (max-width: 599px) {
  .p-medical-guideline__wrap {
    padding: 0 20px;
  }
}
.p-medical-guideline__list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
}
.p-medical-guideline__item {
  position: relative;
  padding: 120px 70px 120px 76px;
  gap: 49px;
  align-items: center;
}
@media (max-width: 1024px) {
  .p-medical-guideline__item {
    padding: 60px 0;
    gap: 16px;
  }
}
@media (max-width: 767px) {
  .p-medical-guideline__item {
    gap: 0;
    flex-direction: column;
  }
}
@media (max-width: 599px) {
  .p-medical-guideline__item {
    padding: 60px 0 32px 0;
  }
}
.p-medical-guideline__item:nth-child(even) {
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .p-medical-guideline__item:nth-child(even) {
    flex-direction: column;
  }
}
.p-medical-guideline__item::after {
  position: absolute;
  content: "";
  height: 2px;
  width: 100%;
  background-image: url("../images/guideline-line.svg");
  background-repeat: no-repeat;
  background-position: top left;
  bottom: 0;
  left: 0;
}
.p-medical-guideline__item:last-child {
  padding-bottom: 165px;
}
@media (max-width: 767px) {
  .p-medical-guideline__item:last-child {
    padding-bottom: 65px;
  }
}
.p-medical-guideline__item:last-child::after {
  background-image: url("../images/guideline-line-arrow.svg");
  height: 41px;
  width: 100%;
  background-position: center center;
}
@media (max-width: 599px) {
  .p-medical-guideline__item:last-child::after {
    background-image: url("../images/guideline-line-arrow-sm.svg");
  }
}
.p-medical-guideline__illust {
  margin: 0;
  width: 209px;
}
@media (max-width: 767px) {
  .p-medical-guideline__illust {
    text-align: center;
    margin: 0 auto;
  }
}
@media (max-width: 599px) {
  .p-medical-guideline__illust-img {
    width: 141px;
    height: 100%;
  }
}
.p-medical-guideline__detail {
  width: 800px;
}
@media (max-width: 1339px) {
  .p-medical-guideline__detail {
    width: 70%;
  }
}
@media (max-width: 767px) {
  .p-medical-guideline__detail {
    width: 100%;
  }
}
.p-medical-guideline__title {
  align-items: flex-start;
}
.p-medical-guideline__num {
  padding: 8px;
  background: url("../images/p-top-treatment__num-line02.svg") no-repeat bottom center;
  background-size: contain;
  color: var(--color-list-accent2);
  margin-right: 24px;
  min-width: 42px;
  white-space: nowrap;
}
@media (max-width: 599px) {
  .p-medical-guideline__num {
    background-size: contain;
    margin-right: 12px;
    min-width: 28px;
  }
}
.p-medical-guideline__text-wrap, .p-medical-guideline__footer-content {
  margin-top: 32px;
}
.p-medical-guideline__footer-wrap {
  padding-bottom: 100px;
}
@media (max-width: 767px) {
  .p-medical-guideline__footer-wrap {
    padding-bottom: 0;
  }
}
.p-medical-guideline__text, .p-medical-guideline__footer-text {
  line-height: 2;
}
.p-medical-guideline__footer {
  padding: 60px 70px 0 76px;
  gap: 64px;
  align-items: stretch;
}
@media (max-width: 1024px) {
  .p-medical-guideline__footer {
    padding: 80px 0 0;
  }
}
@media (max-width: 767px) {
  .p-medical-guideline__footer {
    gap: 0;
    padding: 80px 0 0 0;
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 599px) {
  .p-medical-guideline__footer {
    padding: 60px 0 0 0;
  }
}
.p-medical-guideline__footer-illust {
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .p-medical-guideline__footer-illust {
    width: 100px;
  }
}
@media (max-width: 599px) {
  .p-medical-guideline__footer-illust {
    width: 77px;
  }
}

.p-medical-schedule__inner {
  max-width: 644px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .p-medical-schedule__inner {
    padding: 0 4%;
  }
}
@media (max-width: 599px) {
  .p-medical-schedule__inner {
    padding: 0 20px;
  }
}
.p-medical-schedule__title {
  margin-bottom: 40px;
}
.p-medical-schedule__footer-link {
  margin-top: 1rem;
}

@media (max-width: 1339px) {
  .p-target-animals {
    padding: 0 4%;
  }
}
.p-target-animals__wrap {
  width: 100%;
  margin: 0 auto;
  border-radius: 999px;
  background: var(--color-fill-light-2);
  padding: 100px 0;
}
@media (max-width: 1024px) {
  .p-target-animals__wrap {
    padding: 60px 0;
  }
}
@media (max-width: 599px) {
  .p-target-animals__wrap {
    padding: 120px 20px;
    background: url("../images/target-animals-background.jpg") no-repeat center center;
    background-size: cover;
    border-radius: 8px;
  }
}
.p-target-animals__content {
  max-width: 768px;
  margin: 0 auto;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .p-target-animals__content {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.p-target-animals__list-wrap {
  width: 60%;
}
@media (max-width: 1024px) {
  .p-target-animals__list-wrap {
    margin-top: 40px;
  }
}
@media (max-width: 599px) {
  .p-target-animals__list-wrap {
    width: 100%;
  }
}
.p-target-animals__list {
  list-style: none;
  justify-content: space-between;
  max-width: 460px;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  align-items: flex-end;
}
.p-target-animals__item {
  width: 33%;
  max-width: 140px;
  text-align: center;
}
@media (max-width: 599px) {
  .p-target-animals__item {
    width: 90px;
  }
}
.p-target-animals__illust {
  margin: 0 auto;
  max-width: 84px;
}
@media (max-width: 599px) {
  .p-target-animals__illust {
    width: 62px;
  }
}
.p-target-animals__name {
  margin-top: 1rem;
}
@media (max-width: 599px) {
  .p-target-animals__name {
    margin-top: 0.5rem;
    font-size: 1rem;
  }
}

.p-hospital-introduction__gallery {
  padding: 0 30px;
  justify-content: space-between;
  row-gap: 62px;
}
@media (max-width: 1280px) {
  .p-hospital-introduction__gallery {
    padding: 0 2.5%;
  }
}
.p-hospital-introduction .c-photo-gallery {
  width: 45.6%;
  max-width: 520px;
}
@media (max-width: 599px) {
  .p-hospital-introduction .c-photo-gallery {
    width: 100%;
  }
}

.p-hospital-equipment__gallery {
  padding: 0 30px;
  justify-content: space-between;
  row-gap: 62px;
}
@media (max-width: 1280px) {
  .p-hospital-equipment__gallery {
    padding: 0 2.5%;
  }
}
.p-hospital-equipment__gallery .c-photo-gallery {
  width: 45.6%;
  max-width: 520px;
}
@media (max-width: 599px) {
  .p-hospital-equipment__gallery .c-photo-gallery {
    width: 100%;
  }
}
.p-hospital-equipment .c-photo-gallery__main {
  background-color: #CBCBCB;
}
.p-hospital-equipment .c-photo-gallery__img--vertical {
  max-width: 260px;
  width: 50%;
}

.p-staff__director .c-profile-card {
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .p-staff__director .c-profile-card {
    flex-direction: column;
    row-gap: 24px;
  }
}
.p-staff__director .c-profile-card__photo {
  width: 42.1%;
  max-width: 480px;
}
@media (max-width: 599px) {
  .p-staff__director .c-profile-card__photo {
    width: 100%;
  }
}
.p-staff__director .c-profile-card__body {
  width: 52%;
  max-width: 630px;
}
@media (max-width: 1024px) {
  .p-staff__director .c-profile-card__body {
    width: 100%;
  }
}
@media (max-width: 599px) {
  .p-staff__director .c-profile-card__body {
    width: 100%;
  }
}
.p-staff__list-wrap {
  justify-content: space-between;
}
@media (max-width: 767px) {
  .p-staff__list-wrap {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 60px;
  }
}
.p-staff__list-wrap .c-profile-card {
  width: 48.4%;
  max-width: 580px;
}
@media (max-width: 1200px) {
  .p-staff__list-wrap .c-profile-card {
    width: 46%;
  }
}
@media (max-width: 767px) {
  .p-staff__list-wrap .c-profile-card {
    width: 100%;
  }
}
.p-staff__list-wrap .c-profile-card__photo {
  max-width: 520px;
  margin: 0 auto;
}
.p-staff__list-wrap .c-info-body {
  max-width: 520px;
  margin: 24px auto 40px;
}

.p-staff__items-wrap--wide-layout .p-staff__items-wrap__layout-container {
  justify-content: space-between;
}
@media (max-width: 767px) {
  .p-staff__items-wrap--wide-layout .p-staff__items-wrap__layout-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 60px;
  }
}
.p-staff__items-wrap--wide-layout .c-profile-card__body {
  width: 48.4%;
}
@media (max-width: 767px) {
  .p-staff__items-wrap--wide-layout .c-profile-card__body {
    width: 100%;
  }
}
.p-staff__items-wrap--wide-layout .c-info-body {
  margin: 22px 30px 40px 30px;
  width: 90%;
  max-width: 520px;
}
@media (max-width: 767px) {
  .p-staff__items-wrap--wide-layout .c-info-body {
    margin: 22px auto;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .p-staff__items-wrap--wide-layout .c-profile-card__body.u-mt-2xlg {
    margin-top: 0;
  }
}

@media (max-width: 1024px) {
  .p-access-information__wrap {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.p-access-information__list, .p-access-information__map {
  width: 46.7%;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .p-access-information__list, .p-access-information__map {
    width: 100%;
    max-width: 680px;
  }
}
.p-access-information__map {
  text-align: center;
  width: 440px;
  height: 380px;
}
@media (max-width: 1024px) {
  .p-access-information__map {
    margin-top: 60px;
  }
}
@media (max-width: 599px) {
  .p-access-information__map {
    width: 100%;
    height: 300px;
  }
}
.p-access-information__btn {
  width: -moz-fit-content;
  width: fit-content;
  margin: 1rem auto;
}
.p-access-information__sub-list {
  margin: 0 auto;
  padding: 0;
}

.p-access-parking__main-figure, .p-access-parking__other-figure {
  max-width: 680px;
  width: 56.7%;
  margin: 0;
}
@media (max-width: 599px) {
  .p-access-parking__main-figure, .p-access-parking__other-figure {
    width: 100%;
  }
}
.p-access-parking__other-map-figure {
  max-width: 480px;
  width: 40%;
  margin: 0;
}
@media (max-width: 599px) {
  .p-access-parking__other-map-figure {
    width: 100%;
  }
}
.p-access-parking__main-img, .p-access-parking__other-img {
  border-radius: 4px;
}
.p-access-parking__main-img, .p-access-parking__other-img, .p-access-parking__other-map-img {
  width: 100%;
}
.p-access-parking__other-map-img {
  border: 1px #707070 solid;
  border-radius: 4px;
}
.p-access-parking__main-figure {
  margin: 0 auto;
}
.p-access-parking__other-information {
  justify-content: space-between;
}
@media (max-width: 599px) {
  .p-access-parking__other-information {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.p-access-parking__main-figcaption {
  text-align: center;
  margin: 1.5rem auto;
}
.p-access-parking__other-figcaption, .p-access-parking__other-map-figcaption {
  text-align: center;
  margin: 1.5rem auto;
}
@media (max-width: 1024px) {
  .p-access-parking__other-figcaption, .p-access-parking__other-map-figcaption {
    text-align: left;
    margin: 1.5rem 4%;
  }
}
.p-access-parking__parking-mark {
  width: 46px;
  margin: 0 4px;
  vertical-align: middle;
}

.p-recruit-status {
  padding: 24px 0 0;
}
.p-recruit-status__inner {
  gap: 12px;
  justify-content: center;
}
.p-recruit-status__icon {
  width: 36px;
  flex-shrink: 0;
}
@media (max-width: 599px) {
  .p-recruit-status__icon {
    width: 28px;
  }
}
.p-recruit-status__text {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.5;
  color: var(--color-warning);
}
@media (max-width: 599px) {
  .p-recruit-status__text {
    font-size: 1rem;
  }
}

.p-recruit-first {
  position: relative;
}
.p-recruit-first::before {
  position: absolute;
  content: "";
  width: 229px;
  height: 276px;
  background: url("../images/recruit_back-left.jpg") no-repeat top right;
  left: 0;
  bottom: -138px;
  z-index: -1;
  background-size: contain;
}
@media (max-width: 1024px) {
  .p-recruit-first::before {
    bottom: -32px;
  }
}
@media (max-width: 599px) {
  .p-recruit-first::before {
    bottom: -80px;
  }
}
.p-recruit-first::after {
  position: absolute;
  content: "";
  width: 312px;
  height: 313px;
  background: url("../images/recruit_back-right.jpg") no-repeat top right;
  right: 0;
  bottom: -40px;
  z-index: -1;
  background-size: contain;
}
@media (max-width: 1024px) {
  .p-recruit-first::after {
    top: 100px;
    bottom: auto;
  }
}
@media (max-width: 599px) {
  .p-recruit-first__header-link {
    padding: 0 4%;
  }
}
.p-recruit-first__list {
  max-width: 524px;
  width: 100%;
  list-style: none;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0;
}
@media (max-width: 599px) {
  .p-recruit-first__list {
    gap: 16px;
  }
}
.p-recruit-first__list-item {
  max-width: 222px;
  width: 100%;
}
.p-recruit-first__list-link {
  background: var(--color-on-accent2);
  color: var(--color-on-accent);
  font-weight: 1.5rem;
  font-weight: bold;
  display: block;
  height: 67px;
  line-height: 67px;
  justify-content: center;
  border-radius: 4px;
}
.p-recruit-first__link-icon {
  margin-left: 18px;
}
.p-recruit-first__wrap {
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .p-recruit-first__wrap {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.p-recruit-first__title {
  margin-top: 8px;
}
@media (max-width: 1024px) {
  .p-recruit-first__content {
    margin-top: 2rem;
  }
}
.p-recruit-first__content-img {
  max-width: 560px;
  width: 46.7%;
}
@media (max-width: 1024px) {
  .p-recruit-first__content-img {
    width: 100%;
    flex-direction: column;
    justify-content: center;
  }
}
.p-recruit-first__content {
  max-width: 600px;
  width: 50%;
}
@media (max-width: 1024px) {
  .p-recruit-first__content {
    width: 100%;
  }
}
.p-recruit-first__footer-list {
  margin: 1.5rem auto;
  padding: 0;
}
@media (max-width: 599px) {
  .p-recruit-first__footer-list {
    flex-direction: column;
    row-gap: 20px;
    margin-left: 4%;
  }
}

.p-recruit-description {
  background: var(--color-fill-light-2);
  padding: 160px 0;
}
@media (max-width: 1024px) {
  .p-recruit-description {
    padding: 120px 0 60px;
  }
  .p-recruit-description.u-mb-2xlg {
    margin-bottom: 60px;
  }
}
@media (max-width: 599px) {
  .p-recruit-description {
    padding: 80px 0 32px;
  }
  .p-recruit-description.u-mb-2xlg {
    margin-bottom: 24px;
  }
}
.p-recruit-description__content-wrap {
  position: relative;
  max-width: 960px;
  width: 81.7%;
  background: var(--color-surface-base);
  margin: 140px auto;
  padding: 96px 32px 40px;
}
@media (max-width: 1024px) {
  .p-recruit-description__content-wrap {
    width: 100%;
    margin: 96px auto;
    padding: 64px 4% 32px;
  }
}
@media (max-width: 599px) {
  .p-recruit-description__content-wrap {
    margin: 40px auto 32;
    padding: 40px 4% 8px;
  }
}
.p-recruit-description__title-area {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 218px;
  height: 80px;
  background: url("../images/recruit-title_background.svg") no-repeat center center;
  background-size: contain;
}
.p-recruit-description__title {
  color: var(--color-on-accent);
  align-items: center;
  justify-content: center;
}
.p-recruit-description__list {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.p-recruit-description .section-line {
  width: 87%;
  margin: 2rem auto;
}
.p-recruit-description .section-line__img {
  width: 100%;
}
.p-recruit-description__comment-wrap {
  flex-direction: column;
}
@media (max-width: 1024px) {
  .p-recruit-description__comment-photo {
    margin: 2rem auto 1rem;
  }
}
.p-recruit-description__comment-img {
  max-width: 140px;
  width: 100%;
}
.p-recruit-description__comment-title {
  margin: 0 1rem;
}
.p-recruit-description__comment-text {
  margin: 1rem;
}

.p-recruit-banner__wrap {
  max-width: 500px;
  margin: 0 auto;
}
.p-recruit-banner__button {
  border-radius: 4px;
}
.p-recruit-banner__img {
  width: 36px;
  margin-right: 16px;
}
@media (max-width: 599px) {
  .p-recruit-banner__img {
    width: 24px;
  }
}

.p-blog-archive {
  padding: 60px 0;
}
@media (min-width: 768px) {
  .p-blog-archive {
    padding: 80px 0;
  }
}
.p-blog-archive__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.p-blog-archive__wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .p-blog-archive__wrap {
    flex-direction: row;
    gap: 60px;
  }
}
.p-blog-archive__main {
  flex: 1;
}
.p-blog-archive__sidebar {
  width: 100%;
  background-color: #f8f6f0;
  padding: 32px 40px;
}
@media (min-width: 768px) {
  .p-blog-archive__sidebar {
    width: 300px;
    flex-shrink: 0;
  }
}
.p-blog-archive__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media (min-width: 768px) {
  .p-blog-archive__list {
    gap: 40px;
  }
}
.p-blog-archive__item {
  width: 100%;
}
.p-blog-archive__item a {
  display: block;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.p-blog-archive__item a:hover {
  opacity: 0.7;
}
.p-blog-archive__item--empty {
  width: 100%;
  text-align: center;
  padding: 40px 0;
}
.p-blog-archive__img {
  margin: 0;
  overflow: hidden;
}
.p-blog-archive__img img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-blog-archive__text-area {
  padding: 15px;
  background-color: #f8f6f0;
}
.p-blog-archive__date {
  display: block;
  font-size: 14px;
  color: #333;
  margin-bottom: 8px;
}
.p-blog-archive__title {
  font-size: 16px;
  line-height: 1.6;
  color: #539da3;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .p-blog-archive__title {
    font-size: 18px;
  }
}
.p-blog-archive__excerpt {
  font-size: 14px;
  line-height: 1.8;
  color: #666;
  margin: 0 0 15px;
}
.p-blog-archive__category {
  display: inline-block;
  background-color: #539da3;
  color: #fff;
  font-size: 12px;
  padding: 6px 16px;
  border-radius: 4px;
}
.p-blog-archive__pagination {
  margin-top: 60px;
}

.p-blog-sidebar__title {
  font-size: 16px;
  font-weight: 600;
  color: #539da3;
  padding-bottom: 10px;
  border-bottom: 1.5px dashed #5f371c;
  margin: 0 0 15px;
}
.p-blog-sidebar__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-blog-sidebar__item {
  border-bottom: 1px solid #5f371c;
}
.p-blog-sidebar__item:last-child {
  border-bottom: none;
}
.p-blog-sidebar__link {
  display: flex;
  align-items: center;
  padding: 12px 0;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.p-blog-sidebar__link:hover {
  opacity: 0.7;
}
.p-blog-sidebar__cat-name {
  font-size: 14px;
  color: #5f371c;
}
.p-blog-sidebar__cat-count {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 28px;
  background-color: #efdcd5;
  color: #5f371c;
  font-size: 12px;
  border-radius: 50%;
  margin-left: 12px;
}
.p-blog-sidebar__arrow {
  width: 8px;
  height: 8px;
  border-top: 2px solid #999;
  border-right: 2px solid #999;
  transform: rotate(45deg);
  margin-left: auto;
}

.c-pagination-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.c-pagination-nav--single {
  gap: 20px;
}
.c-pagination-nav__list {
  display: flex;
  align-items: center;
  gap: 5px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.c-pagination-nav__num {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}
.c-pagination-nav__num:hover {
  color: #539da3;
}
.c-pagination-nav__num.is-current {
  color: #539da3;
  border-bottom: 2px solid #539da3;
}
.c-pagination-nav__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: #539da3;
  border-radius: 50%;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.c-pagination-nav__arrow:hover {
  opacity: 0.7;
}
.c-pagination-nav__arrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.c-pagination-nav__arrow--prev::before {
  transform: rotate(-135deg);
  margin-left: 3px;
}
.c-pagination-nav__arrow--next::before {
  transform: rotate(45deg);
  margin-right: 3px;
}
.c-pagination-nav__arrow.is-disabled {
  background-color: #ccc;
  pointer-events: none;
}
.c-pagination-nav__center {
  font-size: 14px;
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}
.c-pagination-nav__center:hover {
  color: #539da3;
}

.p-blog-single {
  padding: 60px 0;
}
@media (min-width: 768px) {
  .p-blog-single {
    padding: 80px 0;
  }
}
.p-blog-single__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.p-blog-single__wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  .p-blog-single__wrap {
    flex-direction: row;
    gap: 60px;
  }
}
.p-blog-single__main {
  flex: 1;
}
.p-blog-single__sidebar {
  width: 100%;
}
@media (min-width: 768px) {
  .p-blog-single__sidebar {
    width: 200px;
    flex-shrink: 0;
  }
}
.p-blog-single__meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.p-blog-single__date {
  font-size: 14px;
  color: #333;
}
.p-blog-single__title {
  font-size: 20px;
  line-height: 1.6;
  color: #539da3;
  margin: 0 0 30px;
  padding-bottom: 24px;
  border-bottom: 1px dashed #539da3;
}
@media (min-width: 768px) {
  .p-blog-single__title {
    font-size: 24px;
  }
}
.p-blog-single__body {
  font-size: 15px;
  line-height: 2;
  color: #5f371c;
  min-height: 300px;
}
.p-blog-single__body p {
  margin: 0 0 1.5em;
}
.p-blog-single__body img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}
.p-blog-single__body .wp-block-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 30px 0;
}
.p-blog-single__body .wp-block-columns .wp-block-column {
  flex: 1;
  min-width: 200px;
}
.p-blog-single__body .wp-block-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 30px 0;
}
.p-blog-single__body .wp-block-gallery .wp-block-image {
  flex: 1;
  min-width: 200px;
}
.p-blog-single__author {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}
.p-blog-single__author-icon {
  width: 18px;
  height: 18px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23666"><path d="M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.39-.39-1.02-.39-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
}
.p-blog-single__author-name {
  font-size: 14px;
  color: #666;
}
.p-blog-single__writer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px dashed #539da3;
}
.p-blog-single__writer-icon {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
}
.p-blog-single__writer-icon img {
  width: 100%;
  height: auto;
}
.p-blog-single__writer-name {
  font-size: 14px;
  color: #539da3;
}
.p-blog-single__pagination {
  margin-top: 50px;
}

.u-flex {
  display: flex;
}

.u-inline-flex {
  display: inline-flex;
}

.u-flex-row {
  flex-direction: row;
}

.u-flex-col {
  flex-direction: column;
}

.u-flex-row-rev {
  flex-direction: row-reverse;
}

.u-flex-col-rev {
  flex-direction: column-reverse;
}

.u-flex-wrap {
  flex-wrap: wrap;
}

.u-flex-nowrap {
  flex-wrap: nowrap;
}

.u-jc-start {
  justify-content: flex-start;
}

.u-jc-end {
  justify-content: flex-end;
}

.u-jc-center {
  justify-content: center;
}

.u-jc-between {
  justify-content: space-between;
}

.u-jc-around {
  justify-content: space-around;
}

.u-ai-start {
  align-items: flex-start;
}

.u-ai-center {
  align-items: center;
}

.u-ai-end {
  align-items: flex-end;
}

.u-ai-stretch {
  align-items: stretch;
}

.u-gap-16 {
  gap: var(--space-md);
}

.u-row-gap-24 {
  row-gap: var(--space-lg);
}

.u-flex-grow-1 {
  flex-grow: 1;
}

.u-flex-shrink-0 {
  flex-shrink: 0;
}

.u-align-self-end {
  align-self: flex-end;
}

.u-fw-400 {
  font-weight: 400;
}

.u-fw-500 {
  font-weight: 500;
}

.u-fw-600 {
  font-weight: 600;
}

.u-fw-700 {
  font-weight: 700;
}

.u-fz-24 {
  font-size: 1.5rem;
}

.u-fz-20 {
  font-size: 1.25rem;
}

.u-fz-18 {
  font-size: 1.125rem;
}

.u-fz-14 {
  font-size: 0.875rem;
}

.u-fz-13 {
  font-size: 0.8125rem;
}

.u-fz-12 {
  font-size: 0.75rem;
}

.u-border {
  border: 1px solid var(--u-border-color);
}

.u-border-left {
  border-left: 1px solid var(--u-border-color);
}

.u-border-top {
  border-top: 1px solid var(--u-border-color);
}

.u-border-bottom {
  border-bottom: 1px solid var(--u-border-color);
}

.u-border-right {
  border-right: 1px solid var(--u-border-color);
}

.u-text-primary {
  color: var(--color-brand-primary);
}

.u-text-accent {
  color: var(--color-brand-accent);
}

.u-text-accent2 {
  color: var(--color-on-accent2);
}

.u-text-warning {
  color: var(--color-warning);
}
.u-text-warning-blue {
  color: #406ea3;
}

.u-bg-light-1 {
  /* 装飾色1: #EFDCD5 淡い小豆系・ダスティピンク系 */
  background-color: var(--color-fill-light-1);
}

.u-bg-light-2 {
  /* 装飾色2: #F8F6F0 薄い生成り/ベージュ系　*/
  background-color: var(--color-fill-light-2);
}

.u-disp-sp {
  display: none;
}
@media (max-width: 599px) {
  .u-disp-sp {
    display: block;
  }
}

@media (max-width: 599px) {
  .u-disp-not-sp {
    display: none;
  }
}

.u-disp-u767 {
  display: none;
}
@media (max-width: 767px) {
  .u-disp-u767 {
    display: block;
  }
}

.u-disp-not-u767 {
  display: none;
}
@media (min-width: 768px) {
  .u-disp-not-u767 {
    display: block;
  }
}

@media (max-width: 1024px) {
  .u-disp-u1024 {
    display: none;
  }
}

@media (max-width: 768px) {
  .u-disp-u768 {
    display: none;
  }
}

@media (max-width: 599px) {
  .u-br--sp {
    display: none;
  }
}

.u-mt-lg {
  margin-top: 116px;
}
@media (max-width: 599px) {
  .u-mt-lg {
    margin-top: 88px;
  }
}

.u-mt-2xlg {
  margin-top: 160px;
}

.u-mb-2xlg {
  margin-bottom: 160px;
}

.u-mt-xlg {
  margin-top: 120px;
}

.u-mb-xlg {
  margin-bottom: 120px;
}

.u-mt-md {
  margin-top: 60px;
}

.u-mb-md {
  margin-bottom: 60px;
}

.u-list-style--none {
  list-style: none;
}

.u-fade__up {
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 1s, transform 1s;
}
.u-fade__up.active {
  opacity: 1;
  transform: translateY(0);
}

.u-fade__left {
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 1s, transform 1s;
}
.u-fade__left.active {
  opacity: 1;
  transform: translateX(0);
}

.u-fade__right {
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 1s, transform 1s;
}
.u-fade__right.active {
  opacity: 1;
  transform: translateX(0);
}

.u-fade-in {
  opacity: 0;
  transform: translateY(-30px);
  animation: fadeInDown 1.2s ease-out forwards;
}
.u-fade-in--delay1 {
  animation-delay: 0.3s;
}
.u-fade-in--delay2 {
  animation-delay: 1.2s;
}
.u-fade-in--delay3 {
  animation-delay: 1.8s;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}/*# sourceMappingURL=app.css.map */