@charset "UTF-8";
/* ===============================================
00_foundation
=============================================== */
/*
  Reset
----------------------------------------------- */
/*
  # Global
---------------------------------------------- */
*,
::before,
::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*
  # Document & Sections
---------------------------------------------- */
:where(html) {
  block-size: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: none;
}

:where(body) {
  min-block-size: 100%;
  text-rendering: optimizeLegibility;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
}

/*
  # Grouping content
---------------------------------------------- */
:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
  font-size: 100%;
  font: inherit;
}

:where(hr) {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(ul, ol) {
  list-style: none;
}

/*
  # Text-level semantics
---------------------------------------------- */
:where(a:not([class])) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

/*
  # Embedded content
---------------------------------------------- */
:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg) {
  max-inline-size: 100%; /* max-with:100%;と同じ */
  block-size: auto;
}

:where(svg:not([fill])) {
  fill: currentColor;
}

/*
  # Tabular data
---------------------------------------------- */
:where(table) {
  border-collapse: collapse;
}

/*
  # Forms
---------------------------------------------- */
:where(input, button, textarea, select, optgroup) {
  font: inherit;
  color: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  cursor: pointer;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(button) {
  border-style: solid;
}

/*
  # Interactive & Misc
---------------------------------------------- */
:where(template, [hidden]:not([hidden=until-found])) {
  display: none;
}

/*
  # Accessibility
---------------------------------------------- */
:where([disabled], [aria-disabled=true]) {
  cursor: not-allowed;
}

:where([aria-busy=true]) {
  cursor: progress;
}

:where([aria-controls]) {
  cursor: pointer;
}

:where([aria-hidden=false][hidden]) {
  display: initial;
}

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

:where(:focus:not(:focus-visible), ::before:focus:not(:focus-visible), ::after:focus:not(:focus-visible)) {
  outline: none;
}

/**
 * Prettier ignore
 */
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after,
  ::backdrop {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
    view-transition-name: none !important;
  }
}
/*
  # Other
---------------------------------------------- */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
table th, table td {
  font-weight: 400;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

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

img {
  width: 100%;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
}

/* ===============================================
font-size
=============================================== */
/* ===============================================
hover
=============================================== */
/*
  Base
----------------------------------------------- */
/* Custom Property */
:root {
  --mainColor: #333;
  --whiteColor: #fff;
  --greenColor01: #367935;
  --greenColor02: #d9e021;
  --greenColor03: #f1f3c7;
  --greenColor04: #58b665;
  --greenColor05: #eeee8c;
  --redColor: #e55936;
  --brownColor: #4e3a20;
  --grayColor01: #333;
  --grayColor02: #666;
  --grayColor03: #dcdcdc;
  --grayColor04: #f2f2f2;
  --lineColor: #ccc;
  --bgGreenColor: #f4f8ed;
  --bgYellowColor: #fbfcef;
  --content-width: 540px;
  --sansFont: "YakuHanJP", "Zen Kaku Gothic New", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic",
    "Meiryo", sans-serif;
}

/********** media query **********/
@media screen and (min-width: 768px) {
  :root {
    --content-width: 1440px;
  }
}
/* Default Style */
html {
  scroll-padding-top: 140px;
}

body {
  position: relative;
  font-family: var(--sansFont);
  font-weight: 500;
  line-height: 1.8;
  color: var(--mainColor);
  background-color: var(--whiteColor);
  font-feature-settings: "palt" 1;
  font-kerning: normal;
}

.br,
.spbr,
.tabbr {
  display: block;
}

.spNone {
  display: none;
}

.grecaptcha-badge {
  visibility: hidden;
}

/********** media query **********/
@media screen and (min-width: 768px) {
  .spbr {
    display: inline;
  }
  .pcbr {
    display: block;
  }
  .spNone {
    display: block;
  }
  .pcNone {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .tabbr {
    display: inline;
  }
}
/*
  Accesibility
----------------------------------------------- */
.visuallyHidden:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  margin: -1px;
}

@media (min-width: 751px) {
  a[href*="tel:"],
  a[href*="Tel:"] {
    pointer-events: none;
    cursor: default;
  }
}
/* ===============================================
L-Container
=============================================== */
.container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.l-S01,
.l-S02 {
  position: relative;
}

.l-S01 {
  width: 100%;
}

.l-S02 {
  width: 90%;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .l-S02 {
    max-width: var(--content-width);
  }
}
.l-L01,
.l-L02,
.l-L03,
.l-L04,
.l-L05,
.l-L06,
.l-L07,
.l-L08,
.l-L09,
.l-L10 {
  position: relative;
  width: 100%;
}

/* ===============================================
L-Header
=============================================== */
.l-header {
  position: sticky;
  top: -1px;
  left: 0;
  right: 0;
  z-index: 9999;
}
.l-header .l-S02, .l-header .l-L01 {
  height: 100%;
}
.l-header .l-L01 {
  display: grid;
  grid-template: "l-L02 l-L04"/1fr 40px;
  align-items: center;
  justify-content: end;
  gap: 0 16px;
  padding: 10px 0;
}
.l-header .l-L02 {
  grid-area: l-L02;
}
.l-header .l-L02 .b-header__title a {
  display: grid;
  grid-template: "logo text";
  justify-content: start;
  justify-items: center;
  align-items: end;
  gap: 0 30px;
}
.l-header .l-L02 .b-header__title a img {
  grid-area: logo;
  width: 110px;
  margin-bottom: 3px;
}
.l-header .l-L02 .b-header__title a .b-logo__text {
  grid-area: text;
}
.l-header .l-L03 {
  grid-area: l-L03;
  position: fixed;
  bottom: 10px;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
}
.l-header .l-L04 {
  grid-area: l-L04;
}
.l-header .b-header__iconBox {
  display: none;
}

/********** media query **********/
@media screen and (min-width: 768px) {
  .l-header {
    margin-top: 24px;
  }
  .l-header .l-L01 {
    grid-template: "l-L02 l-L03 l-L04"/1fr 220px 40px;
    gap: 0 40px;
  }
  .l-header .l-L02 .b-header__title a {
    grid-template: "logo" "text";
    gap: 12px 0;
  }
  .l-header .l-L02 .b-header__title a img {
    width: 160px;
    margin-bottom: 0;
  }
  .l-header .l-L02 .b-header__title a .b-logo__text {
    margin-left: 20px;
  }
}
@media screen and (min-width: 1000px) {
  .l-header {
    margin-top: 64px;
  }
  .l-header .l-L01 {
    grid-template: "l-L02 l-L03 l-L04"/1fr 220px 60px;
    gap: 0 50px;
  }
  .l-header .l-L02 .b-header__title a {
    gap: 24px 0;
  }
  .l-header .l-L02 .b-header__title a img {
    width: 215px;
  }
  .l-header .l-L03 {
    position: relative;
    bottom: 0;
  }
  .l-header .b-header__iconBox {
    position: absolute;
    top: 208px;
    right: 16px;
    width: 26px;
    display: grid;
    justify-content: start;
    justify-items: center;
    gap: 56px 0;
  }
  .l-header .b-header__iconBox .iconItem {
    width: 26px;
    aspect-ratio: 1;
  }
}
/* ===============================================
L-Main
=============================================== */
/*
  Hero
----------------------------------------------- */
.s-topHero {
  margin-bottom: 132px;
}
.s-topHero .l-S02 {
  width: 100%;
}
.s-topHero .l-L01 {
  padding: 50px 0 60px;
}
.s-topHero .l-L02 {
  position: static;
}
.s-topHero .l-L03 {
  position: relative;
  left: 0;
}
.s-topHero .l-L03::before {
  content: "";
  position: absolute;
  top: 0;
  background-image: url(../../assets/images/top/n-hospital-heroparts01-01-sp.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 100%;
  aspect-ratio: 760/809;
  z-index: -1;
}
.s-topHero .slideFade {
  width: 100%;
  margin: 0 auto;
}
.s-topHero .slideFade::before, .s-topHero .slideFade::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  z-index: 10;
}
.s-topHero .slideFade::before {
  top: -0.7%;
  left: 1%;
  background-image: url(../../assets/images/top/n-hospital-heroparts01-02-sp.svg);
  background-position: top center;
  width: 22.7%;
  aspect-ratio: 172/73;
}
.s-topHero .slideFade::after {
  bottom: 1.7%;
  right: 10.8%;
  background-image: url(../../assets/images/top/n-hospital-heroparts01-03-sp.svg);
  background-position: top center;
  width: 53.8%;
  aspect-ratio: 410/80;
}
.s-topHero .slideFade .splide__list {
  position: relative;
  -webkit-mask-image: url(../../assets/images/top/n-hospital-heroparts02-01-sp.svg);
          mask-image: url(../../assets/images/top/n-hospital-heroparts02-01-sp.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
}
.s-topHero .slideFade .splide__pagination {
  bottom: -60px;
  gap: 0 40px;
}
.s-topHero .slideFade .splide__pagination .splide__pagination__page {
  width: 6px;
  height: 6px;
  background-color: var(--grayColor03);
}
.s-topHero .slideFade .splide__pagination .splide__pagination__page.is-active {
  transform: scale(1.6);
  background-color: var(--grayColor02);
}

.b-topHero__copy01 {
  position: absolute;
  top: 3%;
  top: 16px;
  left: 2.5%;
  margin: 0 auto;
  max-width: max(74%, 280px);
  z-index: 20;
}

.b-topHero__copy02 {
  position: absolute;
  bottom: 40px;
  right: 20%;
  max-width: max(59%, 220px);
  z-index: 20;
}

/********** media query **********/
@media screen and (min-width: 540px) {
  .b-topHero__copy01 {
    top: 10px;
    left: 2.5%;
  }
  .b-topHero__copy02 {
    bottom: 24px;
    right: 20%;
  }
}
@media screen and (min-width: 768px) {
  .s-topHero {
    margin-bottom: 120px;
  }
  .s-topHero .l-L01 {
    padding: 72px 0 140px;
  }
  .s-topHero .l-L03 {
    left: 2%;
  }
  .s-topHero .l-L03::before {
    top: -0.5%;
    left: 1.5%;
    bottom: 0;
    margin: auto 0;
    background-image: url(../../assets/images/top/n-hospital-heroparts01-01.svg);
    background-position: top center;
    width: 92%;
    aspect-ratio: 1332/795;
  }
  .s-topHero .slideFade {
    width: 99%;
  }
  .s-topHero .slideFade::before {
    top: 6%;
    left: 3%;
    background-image: url(../../assets/images/top/n-hospital-heroparts01-02.svg);
    width: 10%;
    aspect-ratio: 142/228;
  }
  .s-topHero .slideFade::after {
    bottom: 1.8%;
    right: 8.2%;
    background-image: url(../../assets/images/top/n-hospital-heroparts01-03.svg);
    width: 35.2%;
    aspect-ratio: 500/137;
  }
  .s-topHero .slideFade .splide__list {
    -webkit-mask-image: url(../../assets/images/top/n-hospital-heroparts02-01.svg);
            mask-image: url(../../assets/images/top/n-hospital-heroparts02-01.svg);
  }
  .s-topHero .slideFade .splide__pagination {
    left: -4%;
    bottom: -140px;
    gap: 0 88px;
  }
  .b-topHero__copy01 {
    top: 32px;
    left: 15%;
    width: 85%;
    max-width: 38%;
  }
  .b-topHero__copy02 {
    bottom: 120px;
    right: 11%;
    width: 85%;
    max-width: 31%;
  }
}
@media screen and (min-width: 1000px) {
  .b-topHero__copy01 {
    top: 0;
  }
  .b-topHero__copy02 {
    bottom: 94px;
  }
}
/*
  About
----------------------------------------------- */
.s-topAbout {
  margin-bottom: 160px;
}
.s-topAbout .l-L02 {
  text-align: center;
  margin-bottom: 60px;
}
.s-topAbout .l-L03 {
  margin-bottom: 80px;
  display: flex;
  flex-direction: column-reverse;
}
.s-topAbout .l-L03 .textBox {
  position: relative;
  display: grid;
  padding: 80px 0 0px 0;
  z-index: 10;
}
.s-topAbout .l-L03 .textBox .b-text-lv1 {
  letter-spacing: 0.025rem;
  line-height: 2.62;
}
.s-topAbout .l-L03 .imageBox {
  display: none;
}
.s-topAbout .l-L04 {
  max-width: 800px;
  max-width: 950px;
  margin: 0 auto;
  margin-bottom: 80px;
}
.s-topAbout .l-L05 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px 0;
}

/********** media query **********/
@media screen and (min-width: 768px) {
  .s-topAbout .l-L03 {
    margin-bottom: 200px;
  }
  .s-topAbout .l-L03::before {
    content: "";
    position: absolute;
    top: 0;
    background-image: url(../../assets/images/top/n-hospital-heroparts03.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100vw;
    height: 100%;
    margin: 0 calc(50% - 50vw);
    z-index: -1;
  }
  .s-topAbout .l-L03 .textBox {
    text-align: center;
    padding: 130px 40px;
  }
  .s-topAbout .l-L03 .slideScroll {
    display: none;
  }
  .s-topAbout .l-L03 .imageBox {
    display: block;
    position: static;
  }
  .s-topAbout .l-L03 .imageBox .image {
    position: absolute;
    width: 240px;
    height: auto;
    aspect-ratio: 1;
    z-index: 10;
  }
  .s-topAbout .l-L03 .imageBox .image img {
    border-radius: 50%;
    height: 100%;
  }
  .s-topAbout .l-L03 .imageBox .image01 {
    top: -80px;
    left: clamp(-5rem, -21.5517241379rem + 34.4827586207vw, 0rem);
    transform-origin: bottom;
  }
  .s-topAbout .l-L03 .imageBox .image02 {
    top: -80px;
    right: clamp(-5rem, -21.5517241379rem + 34.4827586207vw, 0rem);
  }
  .s-topAbout .l-L03 .imageBox .image03 {
    bottom: -80px;
    left: clamp(-5rem, -21.5517241379rem + 34.4827586207vw, 0rem);
  }
  .s-topAbout .l-L03 .imageBox .image04 {
    bottom: -80px;
    right: clamp(-5rem, -21.5517241379rem + 34.4827586207vw, 0rem);
  }
  .s-topAbout .l-L04 {
    margin-bottom: 160px;
  }
  .s-topAbout .l-L05 {
    flex-direction: row;
    justify-content: center;
    gap: 0 56px;
  }
}
@media screen and (min-width: 1000px) {
  .s-topAbout .l-L02 {
    margin-bottom: 72px;
  }
  .s-topAbout .l-L03 .imageBox .image01 {
    top: -10px;
    left: clamp(-5rem, -15rem + 16vw, 0rem);
  }
  .s-topAbout .l-L03 .imageBox .image02 {
    top: -10px;
    right: clamp(-5rem, -15rem + 16vw, 0rem);
  }
  .s-topAbout .l-L03 .imageBox .image03 {
    bottom: -40px;
    left: clamp(-5rem, -15rem + 16vw, 0rem);
  }
  .s-topAbout .l-L03 .imageBox .image04 {
    bottom: -40px;
    right: clamp(-5rem, -15rem + 16vw, 0rem);
  }
  .s-topAbout .l-L05 {
    gap: 0 100px;
  }
}
@media screen and (min-width: 1200px) {
  .s-topAbout .l-L03 .imageBox .image {
    width: 324px;
  }
  .s-topAbout .l-L03 .imageBox .image01 {
    top: -10px;
    left: clamp(-7.5rem, -37.5rem + 40vw, 0rem);
  }
  .s-topAbout .l-L03 .imageBox .image02 {
    top: -10px;
    right: clamp(-7.5rem, -37.5rem + 40vw, 0rem);
  }
  .s-topAbout .l-L03 .imageBox .image03 {
    bottom: -40px;
    left: clamp(-7.5rem, -37.5rem + 40vw, 0rem);
  }
  .s-topAbout .l-L03 .imageBox .image04 {
    bottom: -40px;
    right: clamp(-7.5rem, -37.5rem + 40vw, 0rem);
  }
}
@media screen and (min-width: 1440px) {
  .s-topAbout .l-L03::before {
    background-size: contain;
  }
}
/*
  News
----------------------------------------------- */
.s-topNews {
  margin-bottom: 160px;
}
.s-topNews .l-S02 {
  max-width: 900px;
}
.s-topNews .l-L02 {
  text-align: center;
  margin-bottom: 22px;
}

.b-topNews__list {
  display: flex;
  flex-direction: column;
}
.b-topNews__list .textBox a {
  display: flex;
  flex-direction: column;
  gap: 0 4em;
  padding: 18px 8px;
  border-bottom: 1px solid var(--lineColor);
}
.b-topNews__list .textBox a time {
  width: 6em;
  letter-spacing: 0;
}
.b-topNews__list .textBox a .title {
  flex: 1;
}

/********** media query **********/
@media screen and (min-width: 768px) {
  .b-topNews__list .textBox a {
    flex-direction: row;
    padding: 18px 20px;
  }
}
@media screen and (min-width: 1000px) {
  .s-topNews {
    margin-bottom: 200px;
  }
  .s-topNews .l-L02 {
    margin-bottom: 88px;
  }
  .b-topNews__list .textBox a time {
    margin-left: 11vw;
  }
}
/*
  Data
----------------------------------------------- */
.s-topData {
  margin-bottom: 160px;
}
.s-topData .l-L02 {
  text-align: center;
  margin-bottom: 40px;
}
.s-topData .l-L03 {
  padding: 56px 5% 80px;
  background-color: var(--greenColor03);
}
.s-topData .l-L03 .b-dataButton {
  text-align: center;
  margin-top: 80px;
}

.b-dataList,
.b-staffBox {
  position: relative;
  max-width: 380px;
  margin: 0 auto;
  background-color: var(--whiteColor);
  border: 3px solid var(--greenColor02);
  border-radius: 50px;
  z-index: 1;
}
.b-dataList .listItem .title,
.b-staffBox .listItem .title {
  display: grid;
  justify-items: center;
  padding-bottom: 4px;
  margin-bottom: 32px;
  border-bottom: 3px solid var(--greenColor02);
}

.b-dataList {
  display: flex;
  flex-direction: column;
  padding: 16px;
  margin-bottom: 64px;
}
.b-dataList .listItem {
  flex: 1;
  padding: 40px 16px;
  border-bottom: 2px dotted var(--mainColor);
}
.b-dataList .listItem:last-child {
  border-bottom: none;
}
.b-dataList .listItem .text {
  text-align: justify;
  line-height: 2.3;
}

.b-staffBox {
  display: grid;
  grid-template: "textBox" "staffList01" "staffList02" "staffList03";
  gap: 2em 3em;
  padding: 56px 32px;
}
.b-staffBox .listItem {
  grid-area: textBox;
}
.b-staffBox .listItem .text {
  text-align: center;
}
.b-staffBox .staffList {
  grid-area: staffList01;
  display: grid;
  gap: 2px 0;
}
.b-staffBox .staffList .staffListItem {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-left: 1.2em;
}
.b-staffBox .staffList .staffListItem::before {
  content: "";
  position: absolute;
  top: 0.4em;
  left: 0;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  background-color: var(--greenColor02);
}
.b-staffBox .staffList__wrapper:first-child {
  grid-area: staffList02;
}
.b-staffBox .staffList__wrapper:last-child {
  grid-area: staffList03;
}

/********** media query **********/
@media screen and (min-width: 768px) {
  .s-topData .l-L03 {
    padding: 56px 2.5% 100px;
  }
  .s-topData .l-L03::before, .s-topData .l-L03::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
    background-repeat: no-repeat;
    background-size: 960px;
    width: 50%;
    height: 438px;
    z-index: 0;
  }
  .s-topData .l-L03::before {
    left: 0;
    background-image: url(../../assets/images/top/n-hospital-work01@2x.jpg);
  }
  .s-topData .l-L03::after {
    right: 0;
    background-image: url(../../assets/images/top/n-hospital-work02@2x.jpg);
  }
  .s-topData .b-dataButton {
    margin-top: 100px;
  }
  .b-dataList,
  .b-staffBox {
    max-width: 1000px;
  }
  .b-dataList {
    flex-direction: row;
    padding: 56px 8px;
  }
  .b-dataList .listItem {
    padding: 0 3%;
    border-bottom: none;
    border-right: 2px dotted var(--mainColor);
  }
  .b-dataList .listItem:last-child {
    border-right: none;
  }
  .b-staffBox {
    grid-template: "textBox staffList01 staffList02" "textBox staffList01 staffList03"/27% 37% 1fr;
    gap: 2em 2em;
    padding: 64px 5% 80px;
  }
  .b-staffBox .listItem {
    padding: 24px 0.5em 16px 0;
  }
}
@media screen and (min-width: 1000px) {
  .s-topData {
    margin-bottom: 200px;
  }
  .s-topData .l-L02 {
    margin-bottom: 56px;
  }
  .b-dataList {
    padding: 56px 16px;
  }
  .b-dataList .listItem {
    padding: 0 40px;
  }
  .b-staffBox {
    grid-template-columns: 30% 34% 1fr;
    gap: 2em 3em;
    padding: 64px 4% 80px;
  }
  .b-staffBox .listItem {
    padding: 24px 2em 16px 0;
  }
}
/*
  Support
----------------------------------------------- */
.s-topSupport {
  margin-bottom: 180px;
}
.s-topSupport .l-L02 {
  text-align: center;
  margin-bottom: 280px;
}
.s-topSupport .l-L03 {
  margin-bottom: 80px;
}
.s-topSupport .l-L04 {
  display: flex;
  flex-direction: column;
  gap: 40px 0;
  margin-bottom: 80px;
}
.s-topSupport .l-L04 .conditionList .listItem {
  position: relative;
  padding-left: 1.2em;
}
.s-topSupport .l-L04 .conditionList .listItem::before {
  content: "";
  position: absolute;
  top: 0.95em;
  left: 0.4em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--mainColor);
}
.s-topSupport .l-L05 {
  display: flex;
  justify-content: center;
  gap: 0 16px;
}

.b-supportBox {
  text-align: center;
  position: relative;
}
.b-supportBox .title {
  display: inline-grid;
  padding: 0 12px 24px;
  margin-bottom: 40px;
  border-bottom: 8px solid var(--greenColor01);
}
.b-supportBox .title span {
  word-break: keep-all;
}
.b-supportBox .text {
  line-height: 2.4;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.b-supportBox .imageBox .image {
  position: absolute;
  top: -220px;
  width: 50%;
  height: 180px;
}
.b-supportBox .imageBox .image img {
  height: 100%;
}
.b-supportBox .imageBox .image01 {
  left: 0;
}
.b-supportBox .imageBox .image02 {
  right: 0;
}

/********** media query **********/
@media screen and (min-width: 768px) {
  .s-topSupport .l-L02 {
    margin-bottom: 50px;
  }
  .s-topSupport .l-L03 {
    margin-bottom: 104px;
  }
  .s-topSupport .l-L04 {
    flex-direction: row;
    justify-content: center;
    gap: 0 50px;
    margin-bottom: 100px;
  }
  .s-topSupport .l-L05 {
    gap: 0 50px;
  }
  .b-supportBox .title {
    margin-bottom: 50px;
  }
  .b-supportBox .imageBox .image {
    top: -32px;
    width: 320px;
    height: auto;
    aspect-ratio: 1;
  }
  .b-supportBox .imageBox .image img {
    border-radius: 50%;
  }
  .b-supportBox .imageBox .image01 {
    left: clamp(-10.625rem, -25.1077586207rem + 30.1724137931vw, -6.25rem);
  }
  .b-supportBox .imageBox .image02 {
    right: clamp(-10.625rem, -25.1077586207rem + 30.1724137931vw, -6.25rem);
  }
}
@media screen and (min-width: 1000px) {
  .s-topSupport {
    margin-bottom: 228px;
  }
  .s-topSupport .l-L02 {
    margin-bottom: 88px;
  }
  .s-topSupport .l-L04 {
    gap: 0 80px;
  }
  .s-topSupport .l-L05 {
    gap: 0 100px;
  }
  .b-supportBox .title {
    padding: 0 12px 50px;
  }
  .b-supportBox .imageBox .image {
    top: -64px;
    width: 464px;
  }
  .b-supportBox .imageBox .image01 {
    left: clamp(-15rem, -36.6666666667rem + 34.6666666667vw, -2rem);
  }
  .b-supportBox .imageBox .image02 {
    right: clamp(-15rem, -36.6666666667rem + 34.6666666667vw, -2rem);
  }
}
/*
  QA
----------------------------------------------- */
.s-topQA {
  margin-bottom: 228px;
  padding-top: 72px;
  background: linear-gradient(var(--greenColor03) 96%, transparent 96%);
}
.s-topQA .l-L02 {
  max-width: 900px;
  margin: 0 auto;
  margin-bottom: 50px;
  text-align: center;
}

.b-QA__title .balloon01, .b-QA__title .balloon02 {
  position: absolute;
  top: -100px;
  z-index: 0;
}
.b-QA__title .balloon01::before, .b-QA__title .balloon02::before {
  content: "";
  position: absolute;
  top: -60%;
  left: -46%;
  background-image: url(../../assets/images/top/n-hospital-balloon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 120px;
  aspect-ratio: 1;
  z-index: -1;
}
.b-QA__title .balloon01 {
  left: 64px;
}
.b-QA__title .balloon02 {
  right: 64px;
}
.b-QA__title .balloon02::before {
  transform: scaleX(-1);
}

/********** media query **********/
@media screen and (min-width: 768px) {
  .s-topQA .l-L02 {
    margin-bottom: 64px;
  }
  .b-QA__title .balloon01, .b-QA__title .balloon02 {
    top: 0;
  }
  .b-QA__title .balloon01::before, .b-QA__title .balloon02::before {
    top: -68%;
    left: -58%;
    width: 156px;
  }
  .b-QA__title .balloon01 {
    left: 52px;
  }
  .b-QA__title .balloon02 {
    right: 52px;
  }
}
@media screen and (min-width: 1000px) {
  .s-topQA {
    margin-bottom: 232px;
  }
}
/*
  Interview
----------------------------------------------- */
.s-topInterview {
  margin-bottom: 160px;
}
.s-topInterview .l-S02 {
  max-width: 800px;
}
.s-topInterview .l-L02 {
  text-align: center;
  margin-bottom: 24px;
}
.s-topInterview .l-L03 {
  text-align: center;
  margin-bottom: 40px;
}
.s-topInterview .l-L04 {
  margin-bottom: 32px;
}
.s-topInterview .l-L04 iframe {
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
.s-topInterview .b-interviewBox {
  display: grid;
  grid-template: "job" "name" "text" "image";
  gap: 8px 0;
  margin-bottom: 32px;
}
.s-topInterview .b-interviewBox .job {
  grid-area: job;
  letter-spacing: 0.2rem;
}
.s-topInterview .b-interviewBox .name {
  grid-area: name;
}
.s-topInterview .b-interviewBox .text {
  grid-area: text;
  margin-bottom: 24px;
}
.s-topInterview .b-interviewBox .image {
  grid-area: image;
}

.b-interviewQAList {
  display: grid;
  gap: 3em 0;
}
.b-interviewQAList .listItem dt {
  margin-bottom: 1em;
  text-indent: -1em;
  padding-left: 1em;
}
.b-interviewQAList .listItem dd {
  line-height: 2.5;
  letter-spacing: 0.02rem;
  text-align: justify;
}

.b-modal-video {
  position: relative;
}
.b-modal-video::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-image: url(../../assets/images/common/n-hospital-movie.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 20%;
  aspect-ratio: 1;
  z-index: 1;
}

/********** media query **********/
@media screen and (min-width: 768px) {
  .s-topInterview .l-L04 {
    margin-bottom: 100px;
  }
  .s-topInterview .b-interviewBox {
    grid-template: "image job" "image name" "image text"/40% 50%;
    align-items: end;
    gap: 0 56px;
    margin-bottom: 56px;
  }
  .s-topInterview .b-interviewBox .text {
    margin-bottom: 0;
  }
  .s-topInterview .b-interviewBox .image {
    margin-bottom: 8px;
  }
}
@media screen and (min-width: 1000px) {
  .s-topInterview {
    margin-bottom: 220px;
  }
  .s-topInterview .b-interviewBox {
    gap: 0 80px;
  }
  .b-interviewQAList {
    gap: 56px 0;
    padding: 0 8px;
  }
  .b-interviewQAList .listItem dt {
    margin-bottom: 40px;
  }
}
/*
  InterviewList
----------------------------------------------- */
.s-topInterviewList {
  margin-bottom: 160px;
  padding: 64px 0 96px;
  background-color: var(--greenColor03);
}
.s-topInterviewList .l-S02 {
  max-width: 1000px;
  width: 90%;
}
.s-topInterviewList .l-L02 {
  text-align: center;
  margin-bottom: 40px;
}
.s-topInterviewList .l-L03 {
  display: grid;
  gap: 40px 0;
}
.s-topInterviewList .b-interviewBox {
  display: grid;
  grid-template: "movie" auto "job" auto "name" auto "text" 1fr;
  padding: 24px 24px 32px;
  background-color: var(--whiteColor);
}
.s-topInterviewList .b-interviewBox .job {
  grid-area: job;
  letter-spacing: 0.2rem;
  text-align: center;
}
.s-topInterviewList .b-interviewBox .name {
  grid-area: name;
  text-align: center;
  margin-bottom: 24px;
}
.s-topInterviewList .b-interviewBox .textBox {
  grid-area: text;
}
.s-topInterviewList .b-interviewBox .movie {
  grid-area: movie;
  margin-bottom: 32px;
}
.s-topInterviewList .b-interviewBox .movie iframe {
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

/********** media query **********/
@media screen and (min-width: 768px) {
  .s-topInterviewList .l-L03 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media screen and (min-width: 1000px) {
  .s-topInterviewList {
    margin-bottom: 220px;
  }
  .s-topInterviewList .l-L02 {
    margin-bottom: 24px;
  }
  .s-topInterviewList .l-L03 {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, -6.5rem + 12vw, 2.5rem);
  }
  .s-topInterviewList .b-interviewBox {
    padding: 32px;
    padding: clamp(1rem, -1.5rem + 4vw, 1.5rem);
  }
}
/*
  Experience
----------------------------------------------- */
.s-topExperience .l-S02 {
  max-width: 1000px;
}
.s-topExperience .l-L02 {
  text-align: center;
  margin-bottom: 40px;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.b-experienceBox {
  max-width: 500px;
  margin: 0 auto;
  display: grid;
  justify-items: center;
  gap: 32px 0;
  text-align: center;
}

/********** media query **********/
@media screen and (min-width: 768px) {
  .b-experienceBox {
    gap: 50px 0;
  }
}
@media screen and (min-width: 1000px) {
  .s-topExperience .l-L02 {
    margin-bottom: 104px;
  }
  .s-topExperience .l-L03 {
    gap: 0 104px;
  }
}
/* ===============================================
Healthcare
=============================================== */
.s-local {
  margin: 24px 0 100px;
}
.s-local .l-L02 {
  text-align: center;
  margin-bottom: 24px;
}
.s-local .l-L03 {
  text-align: center;
  margin-bottom: 50px;
}
.s-local .l-L03 .b-text-lv1 {
  word-break: keep-all;
  overflow-wrap: anywhere;
  line-height: 2.6;
}

/********** media query **********/
@media screen and (min-width: 768px) {
  .s-local .l-S02 {
    max-width: 1000px;
  }
}
/*
  Contents
----------------------------------------------- */
.s-localContents {
  margin-bottom: 160px;
}
.s-localContents:last-child {
  margin-bottom: 0;
}
.s-localContents .l-L02 {
  text-align: center;
  margin-bottom: 24px;
}
.s-localContents .l-L03 {
  margin-bottom: 80px;
}
.s-localContents .l-L04 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 60px 0;
  margin-bottom: 80px;
}
.s-localContents .l-L04 .b-localContents__textBox {
  flex: 1;
  max-width: 460px;
}
.s-localContents .l-L05 {
  position: relative;
  display: grid;
  row-gap: 80px;
}
.s-localContents .l-L07 .b-localContents__image {
  display: block;
  height: 650px;
}
.s-localContents .l-L07 .b-localContents__image img {
  height: 100%;
}

.b-localContents__textBox .title {
  margin-bottom: 24px;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.b-localContents__textBox .text {
  text-align: justify;
  letter-spacing: 0.02rem;
  line-height: 2.4;
}

.b-localContents__listBox {
  position: relative;
  padding: 32px 24px 40px;
  background-color: var(--whiteColor);
  border: 1px solid var(--lineColor);
  border-radius: 20px;
}
.b-localContents__listBox .title {
  text-align: center;
  margin-bottom: 24px;
}
.b-localContents__listBox .listBox {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.b-localContents__listBox .listBox .left-col, .b-localContents__listBox .listBox .right-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.b-localContents__listBox .listBox .listItem {
  position: relative;
  padding-left: 1.25em;
}
.b-localContents__listBox .listBox .listItem::before {
  content: "";
  position: absolute;
  left: 0;
  display: inline-block;
  background-color: var(--greenColor04);
  border-radius: 50%;
}
.b-localContents__listBox .listBox .listItem::before {
  top: 0.6em;
  width: 0.9em;
  height: 0.9em;
}
.b-localContents__listBox .listBox .listItem::before {
  top: 0.5em;
  background-color: var(--greenColor02);
}

/********** media query **********/
@media screen and (min-width: 768px) {
  .s-localContents {
    margin-bottom: 140px;
  }
  .s-localContents .l-S02 {
    max-width: 1000px;
  }
  .s-localContents .l-L03 {
    margin-bottom: 100px;
  }
  .s-localContents .l-L04 {
    flex-direction: row;
    gap: 0 80px;
    margin-bottom: 250px;
  }
  .s-localContents .l-L04 .b-localContents__textBox {
    max-width: 560px;
  }
  .s-localContents .l-L05 {
    gap: 0;
  }
  .s-localContents .l-L06, .s-localContents .l-L07 {
    grid-area: 1/1;
    position: relative;
  }
  .s-localContents .l-L06 {
    align-self: start;
    transform: translateY(-50%);
    z-index: 10;
  }
  .s-localContents .l-L07 .b-localContents__image {
    height: 754px;
  }
  .b-localContents__textBox .title {
    margin-bottom: 32px;
  }
  .b-localContents__listBox {
    padding: 32px 32px;
  }
  .b-localContents__listBox .title {
    margin-bottom: 32px;
  }
  .b-localContents__listBox .listBox {
    flex-direction: row;
  }
  .b-localContents__listBox .listBox .left-col, .b-localContents__listBox .listBox .right-col {
    gap: 16px;
  }
}
@media screen and (min-width: 1000px) {
  .s-localContents .l-L04 {
    gap: 0 110px;
  }
  .b-localContents__listBox {
    padding: 50px 24px 50px 64px;
  }
}
/* ===============================================
system
=============================================== */
/*
  Hero
----------------------------------------------- */
.s-systemHero {
  background: linear-gradient(transparent 20%, var(--bgGreenColor) 20%);
}
.s-systemHero .l-L01 {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 0 56px;
}
.s-systemHero .l-L02 {
  flex: 1;
  padding: 40px 0 56px;
}
.s-systemHero .l-L02 .b-systemHero__title {
  margin-bottom: 24px;
  text-align: center;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.s-systemHero .l-L02 .b-text-lv2 {
  line-height: 2.5;
  text-align: justify;
}
.s-systemHero .l-L03 {
  width: min(100%, 360px);
}

/********** media query **********/
@media screen and (min-width: 768px) {
  .s-systemHero {
    margin-top: 24px;
    background: var(--bgGreenColor);
  }
  .s-systemHero .l-S02 {
    max-width: 1150px;
  }
  .s-systemHero .l-L01 {
    flex-direction: row-reverse;
    gap: 0 40px;
    margin-left: -60px;
  }
  .s-systemHero .l-L02 {
    padding: 40px 0;
  }
  .s-systemHero .l-L02 .b-systemHero__title {
    text-align: left;
  }
  .s-systemHero .l-L02 .b-text-lv2 {
    margin-left: 0.5em;
  }
  .s-systemHero .l-L03 {
    width: 50%;
  }
}
@media screen and (min-width: 1200px) {
  .s-systemHero {
    margin-top: -16px;
    background: linear-gradient(transparent 5%, var(--bgGreenColor) 5%, 95%, transparent 95%);
  }
  .s-systemHero .l-L01 {
    gap: 0 56px;
  }
  .s-systemHero .l-L02 .b-systemHero__title {
    margin-bottom: 40px;
  }
  .s-systemHero .l-L03 {
    width: 63%;
  }
}
/*
  Contents
----------------------------------------------- */
.s-systemContents {
  margin-top: 160px;
}
.s-systemContents .l-L02 {
  text-align: center;
  margin-bottom: 32px;
}
.s-systemContents .l-L03 {
  margin-bottom: 32px;
}
.s-systemContents .l-L03 img {
  height: 350px;
}
.s-systemContents .l-L04 .b-systemContents__box {
  margin: 32px 0;
}
.s-systemContents .l-L04 .b-text-lv2 {
  line-height: 1.95;
}
.s-systemContents .l-L05 {
  display: grid;
  row-gap: 24px;
  margin-top: 48px;
}
.s-systemContents .l-L06 .b-systemContents__listTitle {
  margin-bottom: 4px;
}
.s-systemContents .l-L06 .b-systemContents__listTitle.b-text-lv2 {
  letter-spacing: 0;
}

.b-systemContents__listBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px 0;
  padding: 16px 24px 24px;
  border: 1px solid var(--lineColor);
  border-radius: 14px;
}
.b-systemContents__listBox .title {
  width: 100%;
  height: 95%;
  display: grid;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px 0;
  background-color: var(--greenColor04);
  color: var(--whiteColor);
  border-radius: 8px;
  line-height: 1.7;
}
.b-systemContents__listBox .list {
  flex: 1;
  max-width: 400px;
  display: flex;
  flex-wrap: wrap;
  gap: 2px 16px;
}
.b-systemContents__listBox .listItem {
  position: relative;
  display: flex;
  align-items: center;
  -moz-column-gap: 6px;
       column-gap: 6px;
  position: relative;
  padding-left: 1.25em;
}
.b-systemContents__listBox .listItem::before {
  content: "";
  position: absolute;
  left: 0;
  display: inline-block;
  background-color: var(--greenColor04);
  border-radius: 50%;
}
.b-systemContents__listBox .listItem::before {
  top: 0.6em;
  width: 0.9em;
  height: 0.9em;
}
.b-systemContents__listBox .listItem::before {
  top: 0.5em;
}

.b-systemContents__box {
  display: flex;
  flex-direction: column;
  gap: 24px 80px;
}
.b-systemContents__box .textBox {
  flex: 1;
}
.b-systemContents__box .textBox .title {
  margin-top: 40px;
}
.b-systemContents__box .textBox .b-text-lv2 {
  line-height: 2.4;
  text-align: justify;
}
.b-systemContents__box .image {
  margin-top: 10px;
}

.b-systemContents__list {
  display: grid;
  row-gap: 4px;
}
.b-systemContents__list.b-text-lv2 {
  letter-spacing: 0;
}
.b-systemContents__list .listItem {
  position: relative;
  position: relative;
  padding-left: 1.25em;
  padding-left: 1em;
}
.b-systemContents__list .listItem::before {
  content: "";
  position: absolute;
  left: 0;
  display: inline-block;
  background-color: var(--greenColor04);
  border-radius: 50%;
}
.b-systemContents__list .listItem::before {
  top: 0.6em;
  width: 0.9em;
  height: 0.9em;
}

/********** media query **********/
@media screen and (min-width: 768px) {
  .s-systemContents {
    margin-top: 100px;
  }
  .s-systemContents .l-S02 {
    max-width: 800px;
  }
  .s-systemContents .l-L02 {
    margin-bottom: 40px;
  }
  .s-systemContents .l-L03 {
    margin-bottom: 24px;
  }
  .s-systemContents .l-L04 .b-systemContents__box {
    margin: 48px 0;
  }
  .b-systemContents__listBox {
    flex-direction: row;
    gap: 0 45px;
  }
  .b-systemContents__listBox .title {
    width: 14.5em;
  }
  .b-systemContents__box {
    flex-direction: row;
    gap: 24px 80px;
  }
  .b-systemContents__box .image {
    width: 39%;
    margin-top: 10px;
  }
}
/* ===============================================
Departments
=============================================== */
.s-departments {
  margin: 24px 0 100px;
}
.s-departments .l-L01 {
  text-align: center;
  margin-bottom: 40px;
}

/********** media query **********/
@media screen and (min-width: 768px) {
  .b-departmentsNav .b-pageNav__list {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px 24px;
    padding: 14px 56px;
  }
}
@media screen and (min-width: 1200px) {
  .b-departmentsNav .b-pageNav__list {
    justify-content: space-between;
  }
}
/*
  Contents
----------------------------------------------- */
.s-departmentsContents {
  margin-bottom: 40px;
}
.s-departmentsContents:last-child {
  margin-bottom: 0;
}
.s-departmentsContents .l-L02 {
  text-align: center;
  margin-bottom: 24px;
}
.s-departmentsContents .l-L03 {
  padding-bottom: 48px;
  border-bottom: 1px solid var(--greenColor02);
}

.b-departmentsContents__listBox {
  display: flex;
  flex-direction: column;
  gap: 16px 0;
  padding: 48px 5%;
  border-bottom: 1px solid var(--greenColor02);
}
.b-departmentsContents__listBox:last-child {
  border-bottom: none;
}
.b-departmentsContents__listBox .title .spanSpace {
  width: 3.8em;
}
.b-departmentsContents__listBox .textBox {
  flex: 1;
}
.b-departmentsContents__listBox .textBox .listItem {
  position: relative;
  padding-left: 1.25em;
}
.b-departmentsContents__listBox .textBox .listItem::before {
  content: "";
  position: absolute;
  left: 0;
  display: inline-block;
  background-color: var(--greenColor04);
  border-radius: 50%;
}
.b-departmentsContents__listBox .textBox .listItem::before {
  top: 0.6em;
  width: 0.9em;
  height: 0.9em;
}
.b-departmentsContents__listBox .textBox .listItem::before {
  background-color: var(--mainColor);
}
.b-departmentsContents__listBox .textBox.b-text-lv2 {
  letter-spacing: 0.02rem;
  line-height: 2;
}

.b-departmentsContents__textBox {
  padding: 48px 5%;
}
.b-departmentsContents__textBox .listItem {
  position: relative;
  padding-left: 1.25em;
}
.b-departmentsContents__textBox .listItem::before {
  content: "";
  position: absolute;
  left: 0;
  display: inline-block;
  background-color: var(--greenColor04);
  border-radius: 50%;
}
.b-departmentsContents__textBox .listItem::before {
  top: 0.6em;
  width: 0.9em;
  height: 0.9em;
}
.b-departmentsContents__textBox .listItem::before {
  background-color: var(--mainColor);
}
.b-departmentsContents__textBox.b-text-lv2 {
  letter-spacing: 0.02rem;
  line-height: 2;
}
.b-departmentsContents__textBox.--paddingTop {
  padding-top: 0;
}

/********** media query **********/
@media screen and (min-width: 768px) {
  .s-departmentsContents .l-S02 {
    max-width: 1000px;
  }
  .s-departmentsContents .l-L02 {
    margin-bottom: 32px;
  }
  .b-departmentsContents__listBox {
    flex-direction: row;
    gap: 0 16px;
    padding: 48px 9% 48px 0;
  }
  .b-departmentsContents__listBox .title {
    width: 28%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .b-departmentsContents__listBox .title .spanSpace {
    width: 3.8em;
  }
  .b-departmentsContents__listBox .textBox {
    flex: 1;
  }
  .b-departmentsContents__textBox {
    padding: 48px 9%;
  }
}
/*
  Contents02
----------------------------------------------- */
.s-departmentsContents02 {
  margin-bottom: 100px;
  padding: 88px 0 52px;
  background-color: var(--bgYellowColor);
}
.s-departmentsContents02 .l-S02 {
  max-width: 1000px;
}
.s-departmentsContents02 .l-L02 {
  text-align: center;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--greenColor02);
}

/********** media query **********/
@media screen and (min-width: 768px) {
  .s-departmentsContents02 {
    margin-bottom: 140px;
    padding: 100px 0 80px;
  }
  .s-departmentsContents02 .l-L02 {
    padding-bottom: 64px;
  }
}
/* ===============================================
Financial
=============================================== */
.s-financial {
  margin: 24px 0 24px;
}
.s-financial .l-L02 {
  text-align: center;
  margin-bottom: 40px;
}
.s-financial .l-L02 .b-financial__title {
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.s-financial .l-L03 {
  margin-bottom: 40px;
}

.b-financial__box,
.b-financial__list .listItem {
  display: flex;
  flex-direction: column;
}

.b-financial__box {
  padding: 8px 16px;
  border: 1px solid var(--lineColor);
}
.b-financial__box .label {
  text-align: center;
  letter-spacing: 0.1rem;
}
.b-financial__box .text {
  text-align: center;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.b-financial__list .listItem .label {
  position: relative;
  padding-left: 1.25em;
  padding-left: 1.8em;
}
.b-financial__list .listItem .label::before {
  content: "";
  position: absolute;
  left: 0;
  display: inline-block;
  background-color: var(--greenColor04);
  border-radius: 50%;
}
.b-financial__list .listItem .label::before {
  top: 0.6em;
  width: 0.9em;
  height: 0.9em;
}
.b-financial__list .listItem .text {
  letter-spacing: 0;
}

/********** media query **********/
@media screen and (min-width: 768px) {
  .s-financial .l-S02 {
    max-width: 800px;
  }
  .s-financial .l-L02 {
    margin-bottom: 40px;
  }
  .s-financial .l-L03 {
    margin-bottom: 36px;
  }
  .b-financial__box,
  .b-financial__list .listItem {
    flex-direction: row;
    gap: 0 36px;
  }
  .b-financial__box .label,
  .b-financial__list .listItem .label {
    width: 9rem;
  }
  .b-financial__box .text,
  .b-financial__list .listItem .text {
    flex: 1;
  }
  .b-financial__box {
    padding: 8px 0;
  }
  .b-financial__box .label {
    padding-left: 1.5em;
  }
  .b-financial__box .text {
    text-align: left;
  }
}
/*
  Contents
----------------------------------------------- */
.s-financialContents {
  margin-bottom: 72px;
}
.s-financialContents .l-S02 {
  max-width: 800px;
}
.s-financialContents .l-L03 .b-text-lv2 {
  letter-spacing: 0.025rem;
}

.b-financialContents__annotation .listItem {
  padding-left: 1em;
  text-indent: -1em;
}

/********** media query **********/
@media screen and (min-width: 768px) {
  .s-financialContents {
    margin-bottom: 64px;
  }
}
/*
  Case
----------------------------------------------- */
.s-financialCase .l-S02 {
  max-width: 1000px;
}
.s-financialCase .l-L02 {
  text-align: center;
  margin-bottom: 24px;
}
.s-financialCase .l-L03 {
  margin-bottom: 72px;
}
.s-financialCase .l-L04 {
  padding-top: 72px;
  text-align: center;
  border-top: 1px solid var(--mainColor);
}
.s-financialCase .l-L04 .b-mainButton {
  max-width: 324px;
}

/********** media query **********/
@media screen and (min-width: 768px) {
  .s-financialCase .l-L03 {
    margin-bottom: 100px;
  }
  .s-financialCase .l-L04 {
    padding-top: 88px;
  }
}
/* ===============================================
Benefits
=============================================== */
/*
  Hero
----------------------------------------------- */
.s-benefits {
  margin-top: 24px;
}
.s-benefits .l-L02 {
  text-align: center;
  margin-bottom: 40px;
}
.s-benefits .l-L02 .b-benefits__title {
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.b-benefitsContents__title {
  padding: 5px 20px;
  color: var(--whiteColor);
  background-color: var(--greenColor04);
}

/********** media query **********/
@media screen and (min-width: 768px) {
  .s-benefits .l-S02 {
    max-width: 860px;
  }
  .b-benefitsContents__title {
    padding: 5px 32px;
  }
}
/*
  Contents01
----------------------------------------------- */
.s-benefitsContents01 {
  margin-bottom: 160px;
}
.s-benefitsContents01 .l-L03 {
  margin-bottom: 32px;
}
.s-benefitsContents01 .l-L03 .b-benefitsContents__title {
  letter-spacing: 0.6rem;
}
.s-benefitsContents01 .l-L04 {
  margin-bottom: 50px;
}
.s-benefitsContents01 .l-L04 .b-text-lv2 {
  line-height: 1.9;
}

.b-benefitsContents01__list {
  display: grid;
  row-gap: 16px;
}
.b-benefitsContents01__list .listItem {
  display: flex;
  flex-direction: column;
  gap: 2px 0;
}
.b-benefitsContents01__list .listItem .label {
  position: relative;
  padding-left: 1.25em;
  padding-left: 1.5em;
}
.b-benefitsContents01__list .listItem .label::before {
  content: "";
  position: absolute;
  left: 0;
  display: inline-block;
  background-color: var(--greenColor04);
  border-radius: 50%;
}
.b-benefitsContents01__list .listItem .label::before {
  top: 0.6em;
  width: 0.9em;
  height: 0.9em;
}
.b-benefitsContents01__list .listItem .label::before {
  top: 0.5em;
}
.b-benefitsContents01__list .listItem .text {
  padding-left: 1.5em;
  letter-spacing: 0.025rem;
}
.b-benefitsContents01__list .childList {
  display: grid;
  row-gap: 16px;
  margin: 10px 0 16px;
}
.b-benefitsContents01__list .childListItem {
  display: flex;
  flex-direction: column;
  gap: 2px 0;
}
.b-benefitsContents01__list .childListItem .childLabel {
  position: relative;
  padding-left: 0.6em;
  padding-left: 1em;
}
.b-benefitsContents01__list .childListItem .childLabel::before {
  content: "";
  position: absolute;
  left: 0;
  display: inline-block;
  background-color: var(--greenColor04);
  border-radius: 50%;
}
.b-benefitsContents01__list .childListItem .childLabel::before {
  top: 0.85em;
  width: 4px;
  height: 4px;
}
.b-benefitsContents01__list .childListItem .childLabel::before {
  left: 5px;
}
.b-benefitsContents01__list .childListItem .childText {
  padding-left: 1em;
  letter-spacing: 0;
}

.b-benefitsContents01__imageBox {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 4px;
}

/********** media query **********/
@media screen and (min-width: 768px) {
  .s-benefitsContents01 {
    margin-bottom: 136px;
  }
  .b-benefitsContents01__list {
    row-gap: 4px;
  }
  .b-benefitsContents01__list .listItem {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0 36px;
  }
  .b-benefitsContents01__list .listItem .label {
    width: 9rem;
    padding-left: 1.8em;
  }
  .b-benefitsContents01__list .listItem .text {
    flex: 1;
    padding-left: 0;
  }
  .b-benefitsContents01__list .listItem .text.width100 {
    flex-basis: 100%;
  }
  .b-benefitsContents01__list .childList {
    row-gap: 0;
  }
  .b-benefitsContents01__list .childListItem {
    flex-direction: row;
    gap: 4px 36px;
  }
  .b-benefitsContents01__list .childListItem .childLabel {
    width: 9rem;
    padding-left: 1.8em;
  }
  .b-benefitsContents01__list .childListItem .childText {
    flex: 1;
    padding-left: 0;
  }
  .b-benefitsContents01__imageBox {
    grid-template-columns: repeat(3, 1fr);
  }
}
/*
  Contents02
----------------------------------------------- */
.s-benefitsContents02 .l-L03 {
  margin-bottom: 40px;
}
.s-benefitsContents02 .l-L04 {
  margin-bottom: 30px;
}
.s-benefitsContents02 .l-L06 {
  margin-bottom: 24px;
}
.s-benefitsContents02 .l-L07 {
  margin-bottom: 40px;
}
.s-benefitsContents02 .l-L07 .b-text-lv1 {
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.s-benefitsContents02 .l-L08 {
  margin-bottom: 72px;
}
.s-benefitsContents02 .l-L09 {
  padding-top: 72px;
  text-align: center;
  border-top: 1px solid var(--mainColor);
}

.b-benefitsContents02__imageBox {
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: center;
  gap: 0 24px;
}
.b-benefitsContents02__imageBox img {
  max-width: 300px;
  aspect-ratio: 1;
  border-radius: 50%;
}

.b-benefitsContents02__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.b-benefitsContents02__list {
  display: flex;
  flex-direction: column;
  gap: 4px 0;
  margin-bottom: 40px;
}
.b-benefitsContents02__list .title {
  width: 8.5rem;
}
.b-benefitsContents02__list .text {
  flex: 1;
  letter-spacing: 0;
}
.b-benefitsContents02__list .childList .listItem {
  position: relative;
  padding-left: 1.25em;
}
.b-benefitsContents02__list .childList .listItem::before {
  content: "";
  position: absolute;
  left: 0;
  display: inline-block;
  background-color: var(--greenColor04);
  border-radius: 50%;
}
.b-benefitsContents02__list .childList .listItem::before {
  top: 0.6em;
  width: 0.9em;
  height: 0.9em;
}

/********** media query **********/
@media screen and (min-width: 768px) {
  .s-benefitsContents02 .l-L03 {
    margin-bottom: 48px;
  }
  .s-benefitsContents02 .l-L05 {
    padding-left: 14.5%;
  }
  .s-benefitsContents02 .l-L06 {
    margin-bottom: 10px;
  }
  .s-benefitsContents02 .l-L08 {
    margin-bottom: 88px;
  }
  .s-benefitsContents02 .l-L09 {
    padding-top: 128px;
  }
  .s-benefitsContents02 .l-L09 .b-mainButton {
    max-width: 324px;
    height: 77px;
  }
  .b-benefitsContents02__imageBox {
    gap: 0 48px;
  }
  .b-benefitsContents02__copy {
    flex-direction: row;
    align-items: baseline;
    gap: 0 44px;
  }
  .b-benefitsContents02__list {
    flex-direction: row;
    gap: 0 60px;
  }
}
/* ===============================================
JobList
=============================================== */
/*
  List
----------------------------------------------- */
.s-jobList {
  margin: 24px 0 160px;
}
.s-jobList .l-L02 {
  text-align: center;
  margin-bottom: 40px;
}
.s-jobList .l-L02 .b-jobList__copy {
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.s-jobList .l-L03 {
  text-align: center;
  margin-bottom: 40px;
}
.s-jobList .l-L03 .b-jobList__time {
  margin-top: 4px;
}
.s-jobList .l-L04 {
  display: grid;
  row-gap: 40px;
}

.b-jobList__listBox .title {
  margin-bottom: 18px;
  position: relative;
  padding-left: 1.25em;
}
.b-jobList__listBox .title::before {
  content: "";
  position: absolute;
  left: 0;
  display: inline-block;
  background-color: var(--greenColor04);
  border-radius: 50%;
}
.b-jobList__listBox .title::before {
  top: 0.6em;
  width: 0.9em;
  height: 0.9em;
}
.b-jobList__listBox .title::before {
  background-color: var(--greenColor02);
}
.b-jobList__listBox .list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px 40px;
}
.b-jobList__listBox .list .listItem {
  background-color: var(--grayColor04);
  border: 1px solid var(--lineColor);
}
.b-jobList__listBox .list .listItem a {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  -moz-column-gap: 8px;
       column-gap: 8px;
  width: 100%;
  height: 100%;
  padding: 8px 20px 9px;
}

/********** media query **********/
@media screen and (min-width: 768px) {
  .s-jobList .l-S02 {
    max-width: 800px;
  }
  .s-jobList .l-L02 {
    margin-bottom: 56px;
  }
  .s-jobList .l-L03 .b-jobList__time {
    margin-top: 0;
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .s-jobList .b-jobList__listBox .list {
    grid-template-columns: repeat(2, 1fr);
  }
  .s-jobList .b-jobList__listBox .list .listItem a {
    padding: 8px 28px 9px;
  }
}
/*
  Download
----------------------------------------------- */
.s-jobListDownload {
  padding-bottom: 100px;
  margin-bottom: 112px;
  background-color: var(--greenColor03);
}
.s-jobListDownload .l-L02 {
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.s-jobListDownload .l-L03 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px 0;
  padding-top: 88px;
}

.b-jobListDownload__box .title {
  text-align: center;
  margin-bottom: 16px;
}
.b-jobListDownload__box .list {
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.b-jobListDownload__box .list .listItem {
  width: 140px;
  position: relative;
  display: flex;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
  padding: 8px 16px;
  background-color: var(--whiteColor);
  border: 1px solid var(--lineColor);
  border-radius: 10px;
}
.b-jobListDownload__box .list .listItem::before {
  content: "";
  background-image: url(../../assets/images/common/n-hospital-icon-arrow--green.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
}
.b-jobListDownload__box .list .listItem a {
  flex: 1;
  height: 100%;
}
.b-jobListDownload__box .list .listItem.--white {
  background-color: var(--whiteColor);
}
.b-jobListDownload__box .list .listItem.--white::before {
  background-image: url(../../assets/images/common/n-hospital-icon-arrow--green.svg);
}
.b-jobListDownload__box .list .listItem.--green {
  background-color: var(--greenColor05);
  border-color: var(--whiteColor);
}
.b-jobListDownload__box .list .listItem.--green::before {
  background-image: url(../../assets/images/common/n-hospital-icon-arrow--white.svg);
}

/********** media query **********/
@media screen and (min-width: 768px) {
  .s-jobListDownload .l-S02 {
    max-width: 640px;
  }
  .s-jobListDownload .l-L03 {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0 40px;
  }
}
@media screen and (min-width: 1000px) {
  .s-jobListDownload .l-S02 {
    max-width: 900px;
  }
  .b-jobListDownload__box .list .listItem {
    width: 180px;
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
  .b-jobListDownload__box .list .listItem::before {
    width: 30px;
    height: 30px;
  }
}
/*
  Contact
----------------------------------------------- */
.s-jobListContact .l-L02 {
  text-align: center;
  margin-bottom: 30px;
}

.b-jobListContact__box {
  text-align: center;
  font-style: normal;
  margin-bottom: 72px;
}
.b-jobListContact__box:last-child {
  margin-bottom: 0;
}
.b-jobListContact__box .title {
  margin-bottom: 10px;
}
.b-jobListContact__box .tel {
  margin-bottom: 16px;
}
.b-jobListContact__box .buttonBox {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px 0;
}
.b-jobListContact__box .b-mainButton {
  max-width: 594px;
}

/********** media query **********/
/* ===============================================
JobList-post
=============================================== */
.s-jobListPost {
  margin: 24px 0 160px;
}
.s-jobListPost .l-L02 {
  margin-bottom: 40px;
}
.s-jobListPost .l-L02 .b-jobListPost__title {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.s-jobListPost .l-L03 {
  margin-bottom: 24px;
}
.s-jobListPost .l-L03 .b-text-lv2 {
  letter-spacing: 0.025rem;
}
.s-jobListPost .l-L03 .b-text-lv2.--green {
  color: var(--greenColor04);
}
.s-jobListPost .l-L03 .b-jobList__time {
  text-align: right;
  margin-top: 24px;
}

.b-jobListPost__box {
  width: 100%;
  border-collapse: collapse;
}
.b-jobListPost__box.b-text-lv2 {
  line-height: 2.3;
}
.b-jobListPost__box .title, .b-jobListPost__box .text {
  border: 1px solid var(--lineColor);
  font-weight: 500;
}
.b-jobListPost__box .title {
  width: 22%;
  padding: 6px 8px;
  background-color: var(--greenColor03);
}
.b-jobListPost__box .title .spanSpace--pc {
  max-width: 8em;
  margin: 0 auto;
}
.b-jobListPost__box .text {
  padding: 6px 32px;
}
.b-jobListPost__box .text .gray {
  color: var(--grayColor02);
}
.b-jobListPost__box .text .green {
  color: var(--greenColor04);
}
.b-jobListPost__box address {
  font-style: normal;
}
.b-jobListPost__box .row {
  display: flex;
  gap: 0 18px;
}
.b-jobListPost__box .row .label {
  position: relative;
  width: 5em;
}
.b-jobListPost__box .row .label::before {
  content: "：";
  position: absolute;
  top: 0;
  right: -10px;
}
.b-jobListPost__box .row .childText {
  flex: 1;
}

/********** media query **********/
@media screen and (max-width: 540px) {
  .b-jobListPost__box {
    display: block;
  }
  .b-jobListPost__box .title, .b-jobListPost__box .text {
    display: block;
  }
  .b-jobListPost__box .title {
    width: 100%;
    padding: 6px 8px;
  }
  .b-jobListPost__box .text {
    padding: 20px;
  }
}
@media screen and (min-width: 768px) {
  .s-jobListPost .l-S02 {
    max-width: 900px;
  }
  .s-jobListPost .l-L02 {
    margin-bottom: 64px;
  }
  .s-jobListPost .l-L03 {
    margin-bottom: 32px;
  }
  .s-jobListPost .l-L03 .b-jobList__time {
    margin-top: 0;
    position: absolute;
    bottom: 3px;
    right: 0;
  }
}
/* ===============================================
News
=============================================== */
/*
  Common
----------------------------------------------- */
/********** media query **********/
/* ===============================================
News-post
=============================================== */
.s-news {
  margin-top: 24px;
}
.s-news .l-S02 {
  max-width: 36em;
}
.s-news .l-L02 {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--lineColor);
  margin-bottom: 40px;
}
.s-news .l-L03 {
  padding-bottom: 40px;
}
.s-news .l-L03 h1 {
  font-size: 1.5em;
}
.s-news .l-L03 h2 {
  font-size: 1.35em;
}
.s-news .l-L03 h3 {
  font-size: 1.15em;
}
.s-news .l-L03 h1,
.s-news .l-L03 h2,
.s-news .l-L03 h3,
.s-news .l-L03 h4,
.s-news .l-L03 h5,
.s-news .l-L03 h6 {
  margin: 1em 0;
  line-height: 1.4;
}
.s-news .l-L03 p {
  margin: 1em 0;
}
.s-news .l-L03 ul,
.s-news .l-L03 ol {
  margin: 1em 0 1em 1.5em;
  line-height: 1.6;
  list-style: disc;
}
.s-news .l-L03 a {
  color: #0066cc;
  text-decoration: underline;
}
.s-news .l-L03 a:hover {
  text-decoration: none;
}
.s-news .l-L03 img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1em auto;
}

/********** media query **********/
/* ===============================================
Contact
=============================================== */
/*
  Hero
----------------------------------------------- */
.s-contact {
  margin: 24px 0 128px;
}
.s-contact .l-S02 {
  max-width: 800px;
}
.s-contact .l-L02 {
  text-align: center;
  margin-bottom: 40px;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.s-contact .l-L03 {
  text-align: center;
  margin-bottom: 64px;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.s-contactVisit .l-L04,
.s-contactTraining .l-L04 {
  display: grid;
  justify-content: center;
  row-gap: 24px;
  margin-bottom: 64px;
}
.s-contactVisit .l-L05,
.s-contactTraining .l-L05 {
  margin-bottom: 64px;
}

.s-contactVisit .l-L06 {
  text-align: center;
}
.s-contactVisit .l-L06 .b-text-lv1 {
  margin-bottom: 8px;
}

.b-contact__list {
  display: flex;
  flex-direction: column;
  gap: 4px 0;
}
.b-contact__list .title {
  width: 8.5rem;
}
.b-contact__list .text {
  flex: 1;
  letter-spacing: 0;
}
.b-contact__list .childList .listItem {
  position: relative;
  padding-left: 1.25em;
}
.b-contact__list .childList .listItem::before {
  content: "";
  position: absolute;
  left: 0;
  display: inline-block;
  background-color: var(--greenColor04);
  border-radius: 50%;
}
.b-contact__list .childList .listItem::before {
  top: 0.6em;
  width: 0.9em;
  height: 0.9em;
}

.b-contact__imageBox {
  display: flex;
}

.b-contact__table {
  border-collapse: collapse;
}
.b-contact__table th, .b-contact__table td {
  white-space: nowrap;
  text-align: center;
  padding: 5px 16px;
  border: 1px solid var(--lineColor);
  background-color: var(--whiteColor);
  font-weight: 500;
}

/********** media query **********/
@media screen and (min-width: 768px) {
  .b-contact__list {
    flex-direction: row;
    gap: 0 40px;
  }
  .b-contact__table th, .b-contact__table td {
    padding: 5px 24px;
  }
}
/*
  Form
----------------------------------------------- */
.s-contactForm .l-S02 {
  max-width: 800px;
}
.s-contactForm .l-L02 {
  text-align: center;
  margin-bottom: 40px;
}

.b-contact__from .wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 7.5% 80px;
  border-radius: 56px;
  background-color: var(--grayColor04);
  margin-bottom: 64px;
}
.b-contact__from .item {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 22px;
}
.b-contact__from .item .label {
  width: 9em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6px 8px;
  background-color: var(--greenColor02);
}
.b-contact__from .item .spanSpace {
  width: 4.5em;
}
.b-contact__from .item .required {
  position: absolute;
  top: 0.4em;
  left: 9.5em;
  color: var(--redColor);
}
.b-contact__from .item .note {
  align-self: center;
}
.b-contact__from .item .wpcf7-form-control-wrap {
  width: 100%;
}
.b-contact__from .item .inputField {
  width: 100%;
  padding: 9px 16px;
  background-color: var(--whiteColor);
  border: 1px solid var(--lineColor);
}
.b-contact__from .item.select {
  position: relative;
}
.b-contact__from .item.select select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  padding: 10px 10px;
  background-color: var(--whiteColor);
  border: 1px solid var(--lineColor);
  border-radius: 0;
}
.b-contact__from .item.select::before {
  content: "";
  position: absolute;
  right: 6%;
  bottom: 22px;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  width: 10px;
  height: 5px;
  background-color: var(--mainColor);
  pointer-events: none;
  z-index: 1;
}
.b-contact__from .item.choice {
  align-items: center;
  gap: 8px 20px;
}
.b-contact__from .item.choice .inputField {
  width: auto;
  margin-right: 4px;
}
.b-contact__from .item.age .wpcf7-form-control-wrap {
  flex: none;
  width: 90%;
}
.b-contact__from .item.age .inputField {
  width: 100%;
}
.b-contact__from .item.yoyakubi .label {
  padding: 4px 8px;
  line-height: 1.4;
}
.b-contact__from .item.yoyakubi .inputField {
  padding: 11px 10px;
}
.b-contact__from .item.marginTop {
  margin-top: 50px;
}
.b-contact__from .item.column {
  flex-wrap: wrap;
  gap: 12px 16px;
  margin-top: 80px;
}
.b-contact__from .item.column .inputField {
  flex: none;
  width: 100%;
  padding: 2px 24px;
}
.b-contact__from a {
  text-decoration: underline;
}
.b-contact__from .button {
  position: relative;
  text-align: center;
}
.b-contact__from .button .b-mainButton {
  border: none;
}
.b-contact__from .button .wpcf7-spinner {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30%;
  margin: auto 0;
}
.b-contact__from .wpcf7-radio {
  display: flex;
  gap: 8px 1em;
}
.b-contact__from .wpcf7-list-item {
  margin: 0;
}
.b-contact__from .wpcf7-not-valid-tip {
  font-size: 0.875rem;
}

/********** media query **********/
@media screen and (min-width: 768px) {
  .b-contact__from .item .label {
    padding: 10px 8px;
  }
  .b-contact__from .item .spanSpace {
    width: 5em;
  }
  .b-contact__from .item .required {
    top: 0.63em;
    left: -1.5em;
  }
  .b-contact__from .item .wpcf7-form-control-wrap {
    width: auto;
    flex: 1;
  }
  .b-contact__from .item.select select {
    width: 230px;
  }
  .b-contact__from .item.select::before {
    right: auto;
    left: 360px;
    bottom: calc(50% - 2px);
  }
  .b-contact__from .item.age .wpcf7-form-control-wrap {
    width: 130px;
  }
}
/* ===============================================
Coming Soon
=============================================== */
.s-comingSoon {
  margin-top: 24px;
}
.s-comingSoon .l-S02 {
  max-width: 800px;
}
.s-comingSoon .l-L02 {
  text-align: center;
  margin-bottom: 40px;
}
.s-comingSoon .l-L03 {
  padding: 60px 16px;
  background-color: var(--greenColor03);
}
.s-comingSoon .b-comingSoon__title {
  font-size: 2.75rem;
  letter-spacing: 0.025rem;
  line-height: 1.4;
  font-weight: 700;
  color: var(--greenColor01);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 24px;
}
.s-comingSoon .b-text-lv1 {
  text-align: center;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

/********** media query **********/
@media screen and (min-width: 1000px) {
  .s-comingSoon .l-L03 {
    padding: 100px 80px;
  }
  .s-comingSoon .b-comingSoon__title {
    font-size: 4rem;
  }
}
/* ===============================================
L-Footer
=============================================== */
.l-footer {
  margin-top: 150px;
  padding-bottom: 32px;
}
.l-footer .l-L02 {
  margin-bottom: 104px;
}
.l-footer .l-L02 .b-footerNav {
  display: flex;
  flex-direction: column;
  gap: 24px 0;
}
.l-footer .l-L02 .b-footerNav .navItem {
  border-left: 1px solid var(--mainColor);
}
.l-footer .l-L02 .b-footerNav .navItem a {
  display: block;
  width: 100%;
  padding: 0 12px;
}
.l-footer .l-L03 {
  margin-bottom: 28px;
}
.l-footer .l-L03 .b-footer__logo {
  display: grid;
  justify-content: center;
  justify-items: center;
  gap: 16px 0;
}
.l-footer .l-L03 .b-footer__logo img {
  width: 180px;
}
.l-footer .l-L03 .b-footer__logo .b-logo__text {
  margin-left: 20px;
}
.l-footer .l-L04 {
  text-align: center;
  margin-bottom: 40px;
}
.l-footer .l-L05, .l-footer .l-L06 {
  text-align: center;
}
.l-footer .b-address {
  display: flex;
  flex-direction: column;
  font-style: normal;
}
.l-footer .l-L06 {
  margin-bottom: 56px;
}
.l-footer .l-L07 iframe {
  max-width: 100%;
  margin: 0 auto;
}

/********** media query **********/
@media screen and (min-width: 768px) {
  .l-footer .l-L02 {
    margin-bottom: 104px;
  }
  .l-footer .l-L02 .b-footerNav {
    display: flex;
    flex-direction: column;
  }
  .l-footer .l-L02 .b-footerNav .navItem a {
    display: block;
    width: 100%;
    padding: 4px 16px;
  }
  .l-footer .l-L03 {
    margin-bottom: 28px;
  }
  .l-footer .l-L03 .b-footer__logo {
    display: grid;
    justify-content: center;
    justify-items: center;
    gap: 24px 0;
  }
  .l-footer .l-L03 .b-footer__logo img {
    width: 215px;
  }
  .l-footer .l-L03 .b-footer__logo .b-logo__text {
    margin-left: 20px;
  }
  .l-footer .l-L04 {
    text-align: center;
    margin-bottom: 40px;
  }
  .l-footer .b-address {
    flex-direction: row;
    justify-content: center;
    gap: 0 1em;
  }
  .l-footer .l-L06 {
    margin-bottom: 56px;
  }
}
@media screen and (min-width: 1000px) {
  .l-footer .l-L02 .b-footerNav {
    flex-direction: row;
    justify-content: center;
    gap: 0;
  }
  .l-footer .l-L02 .b-footerNav .navItem:last-child {
    border-right: 1px solid var(--mainColor);
  }
}
/* ===============================================
M-Header
=============================================== */
/* ===============================================
M-Main
=============================================== */
/*
  Common
----------------------------------------------- */
/********** media query **********/
/*
  PageNav
----------------------------------------------- */
.b-pageNav {
  width: 100%;
  background-color: var(--grayColor04);
}

.b-pageNav__list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 16px 24px;
  padding: 24px 6%;
}
.b-pageNav__list .listItem {
  display: flex;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
.b-pageNav__list .listItem::before {
  content: "";
  position: relative;
  width: 12.124355653px;
  height: 14px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background-color: var(--greenColor02);
}

/********** media query **********/
@media screen and (min-width: 768px) {
  .b-pageNav {
    width: 90%;
    max-width: 1140px;
    margin: 0 auto;
    border-radius: 100px;
  }
  .b-pageNav__list {
    flex-direction: row;
    justify-content: space-between;
    padding: 12px 60px;
  }
  .b-pageNav__list .listItem {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}
@media screen and (min-width: 1000px) {
  .b-pageNav__list {
    padding: 12px 60px 12px 100px;
  }
}
/*
  SlideThumbnail
----------------------------------------------- */
.b-slideThumbnail__box {
  position: relative;
}
.b-slideThumbnail__box .copyBox {
  position: relative;
}
.b-slideThumbnail__box .b-slideThumbnail__copy {
  position: absolute;
  left: -32px;
  bottom: 10%;
  transform: rotate(-4.6deg);
}
.b-slideThumbnail__box .mainSlider {
  margin-bottom: 40px;
}
.b-slideThumbnail__box .mainSlider img {
  height: 100%;
}
.b-slideThumbnail__box .thumbnailSlider {
  width: 80%;
  margin: 0 auto;
}
.b-slideThumbnail__box .thumbnailSlider .splide__track--nav > .splide__list > .splide__slide {
  border: none;
}
.b-slideThumbnail__box .thumbnailSlider .splide__slide {
  filter: brightness(50%);
}
.b-slideThumbnail__box .thumbnailSlider .splide__slide.is-active {
  filter: brightness(1);
}
.b-slideThumbnail__box .thumbnailSlider .splide__arrow {
  width: 28px;
  height: 28px;
  background-color: #4d4d4d;
}
.b-slideThumbnail__box .thumbnailSlider .splide__arrow.splide__arrow--prev {
  left: -2.5em;
}
.b-slideThumbnail__box .thumbnailSlider .splide__arrow.splide__arrow--next {
  right: -2.5em;
}
.b-slideThumbnail__box .thumbnailSlider .splide__arrow svg {
  width: 12px;
  height: 12px;
  fill: var(--whiteColor);
}

.b-slideImage img {
  height: 400px;
}

.b-slideThumbnail__copy {
  display: inline-block;
  width: 300px;
  z-index: 10;
}
.b-slideThumbnail__copy .left, .b-slideThumbnail__copy .right {
  position: relative;
  display: grid;
  justify-content: center;
  align-content: center;
  background-image: url(../../assets/images/departments/n-hospital-localtape.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 110%;
  height: 38px;
  z-index: -1;
}
.b-slideThumbnail__copy .right {
  top: 12px;
  left: 15%;
}

/********** media query **********/
@media screen and (min-width: 768px) {
  .b-slideThumbnail__box .b-slideThumbnail__copy {
    left: -78px;
  }
  .b-slideThumbnail__box .mainSlider {
    margin-bottom: 80px;
  }
  .b-slideThumbnail__box .thumbnailSlider .splide__arrow.splide__arrow--prev {
    left: -3.5em;
  }
  .b-slideThumbnail__box .thumbnailSlider .splide__arrow.splide__arrow--next {
    right: -3.5em;
  }
  .b-slideImage img {
    height: 550px;
  }
  .b-slideThumbnail__copy {
    width: 454px;
  }
  .b-slideThumbnail__copy .left, .b-slideThumbnail__copy .right {
    height: 56px;
  }
  .b-slideThumbnail__copy .right {
    top: 24px;
    left: 40%;
  }
}
/* ===============================================
M-Footer
=============================================== */
/* ===============================================
hamburger
=============================================== */
.globalNav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 90px 5% 90px 17%;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  animation: fadeOut 0.5s ease-in-out;
  translate: 100% 0;
  opacity: 0;
  z-index: 10000;
}
.globalNav .b-headerNav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  row-gap: 24px;
  margin-bottom: 32px;
}
.globalNav .b-mainButton {
  margin-bottom: 40px;
}
.globalNav .b-headerNav__iconBox {
  display: flex;
  gap: 0 64px;
}
.globalNav .b-headerNav__iconBox .iconItem {
  width: 28px;
  aspect-ratio: 1;
}

.hamburgerButton {
  position: relative;
  top: 0;
  width: 40px;
  height: 40px;
  border: 0;
  z-index: 1;
  cursor: pointer;
  -webkit-appearance: none; /* Chrome, Safari, Opera, Android */
  -moz-appearance: none; /* Firefox */
  appearance: none; /* IE非対応 */
  transition: all 0.3s ease-in-out;
}
.hamburgerButton:hover {
  opacity: 0.7;
}

.hamburgerButton__line {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  display: block;
  width: 100%;
  height: 1.5px;
  background-color: var(--mainColor);
}
.hamburgerButton__line:before, .hamburgerButton__line:after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background-color: inherit;
  transition: all 0.2s ease-in-out;
}
.hamburgerButton__line:before {
  top: -12px;
}
.hamburgerButton__line:after {
  top: 12px;
}

.is-drawerActive {
  overflow: hidden;
}
.is-drawerActive .globalNav {
  animation: fadeIn 0.5s ease-in-out;
  translate: 0 0;
  opacity: 1;
  overflow-x: hidden;
  overflow-y: scroll;
  background-color: var(--greenColor02);
}
.is-drawerActive .hamburgerButton {
  z-index: 11000;
}
.is-drawerActive .hamburgerButton__line {
  background-color: transparent;
}
.is-drawerActive .hamburgerButton__line::before, .is-drawerActive .hamburgerButton__line::after {
  top: 0;
  bottom: 0;
  background-color: var(--mainColor);
}
.is-drawerActive .hamburgerButton__line::before {
  transform: rotate(45deg);
}
.is-drawerActive .hamburgerButton__line::after {
  transform: rotate(-45deg);
}

/********** media query **********/
@media screen and (min-width: 768px) {
  .globalNav {
    left: auto;
    right: 0;
    padding: 140px 4.2% 100px;
    width: max(32%, 440px);
  }
  .globalNav .b-headerNav {
    row-gap: 30px;
    margin-bottom: 64px;
  }
  .globalNav .b-mainButton {
    margin-bottom: 64px;
  }
  .hamburgerButton {
    top: 1px;
    width: 60px;
    height: 60px;
  }
  .hamburgerButton__line:before {
    top: -16px;
  }
  .hamburgerButton__line:after {
    top: 16px;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateX(-150%);
  }
  50% {
    opacity: 0;
    transform: translateX(0%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
    transform: translateX(0%);
  }
  50% {
    opacity: 0;
    transform: translateX(0%);
  }
  100% {
    opacity: 0;
    transform: translateX(-100%);
  }
}
/* ===============================================
  b-text
=============================================== */
/*
  Common
----------- */
.b-text-lv1,
.b-text-lv2,
.b-text-lv3 {
  line-height: 2.1;
  letter-spacing: 0.05rem;
}
.b-text-lv1.--bold, .b-text-lv1 .--bold,
.b-text-lv2.--bold,
.b-text-lv2 .--bold,
.b-text-lv3.--bold,
.b-text-lv3 .--bold {
  font-weight: 700;
}
.b-text-lv1.--uppercase,
.b-text-lv2.--uppercase,
.b-text-lv3.--uppercase {
  text-transform: uppercase;
}
.b-text-lv1 em,
.b-text-lv2 em,
.b-text-lv3 em {
  font-style: normal;
}

.b-text-lv1 {
  font-size: clamp(0.875rem, 0.375rem + 2.5vw, 1rem);
}

.b-text-lv2 {
  font-size: 0.9375rem;
}

.b-text-lv3 {
  font-size: 0.875rem;
}

.b-sectionTitle-lv1 {
  font-size: 1.375rem;
  line-height: 1.75;
  letter-spacing: 0.15rem;
  text-indent: 0.15rem;
}
.b-sectionTitle-lv1.--uppercase {
  text-transform: uppercase;
  letter-spacing: 0.5rem;
  text-indent: 0.5rem;
}

.b-sectionTitle-lv2 {
  font-size: 1.3125rem;
  line-height: 1.9;
  letter-spacing: 0.15rem;
  text-indent: 0.15rem;
}

.b-mainButton {
  font-size: 1rem;
  letter-spacing: 0.1rem;
  text-indent: 0.1rem;
}

/*
  Header
----------- */
.b-headerNav__text {
  font-size: 1rem;
  letter-spacing: 0.025rem;
  text-indent: 0.025rem;
}

.b-logo__text {
  font-size: 1.0625rem;
  letter-spacing: 0.025rem;
  text-indent: 0.025rem;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--brownColor);
}

.b-headerButton {
  font-size: 1rem;
  letter-spacing: 0.1rem;
  text-indent: 0.1rem;
  line-height: 1.5;
}

/*
  Footer
----------- */
.b-footerNav__text {
  font-size: 0.875rem;
  letter-spacing: 0.2rem;
  text-indent: 0.2rem;
}

.b-address,
.b-copyright {
  font-size: 0.875rem;
  letter-spacing: 0;
}

/*
  Top
----------- */
.b-dataList .title,
.b-staffBox .title {
  font-size: 1.125rem;
  letter-spacing: 0.1rem;
  text-indent: 0.1rem;
}
.b-dataList .title em,
.b-staffBox .title em {
  font-size: 3.375rem;
  line-height: 1.2;
  font-style: normal;
}
.b-dataList .title em .small,
.b-staffBox .title em .small {
  font-size: 0.7em;
}

.b-staffBox .text {
  font-size: 1.125rem;
  letter-spacing: 0.1rem;
  text-indent: 0.1rem;
}
.b-staffBox .staffListItem {
  font-size: clamp(0.875rem, 0.375rem + 2.5vw, 1rem);
  letter-spacing: 0.1rem;
  text-indent: 0.1rem;
}

.b-supportBox .title {
  font-size: 1.25rem;
  letter-spacing: 0.18rem;
  text-indent: 0.18rem;
  color: var(--greenColor01);
}
.b-supportBox .title em {
  font-size: 3.75rem;
  line-height: 1;
  letter-spacing: 0.25rem;
  text-indent: 0.25rem;
  font-style: normal;
}
.b-supportBox .title em .small {
  font-size: 0.7em;
}

.b-QA__title {
  font-size: 1.875rem;
  letter-spacing: 0.45rem;
  text-indent: 0.45rem;
}

.b-topQAList .QA .Q, .b-topQAList .QA .A {
  font-size: clamp(0.875rem, 0.375rem + 2.5vw, 1rem);
  letter-spacing: 0.1rem;
  text-indent: 0.1rem;
}

.b-interview__text {
  font-size: 1.0625rem;
  letter-spacing: 0.1rem;
  text-indent: 0.1rem;
  line-height: 2.2;
}

.b-interviewBox .name {
  font-size: 1.25rem;
  letter-spacing: 0.2rem;
  text-indent: 0.2rem;
}

.b-experienceBox__title {
  font-size: 1.375rem;
  letter-spacing: 0.23rem;
  text-indent: 0.23rem;
}

.b-experienceBox .title {
  font-size: 1.0625rem;
  letter-spacing: 0.1rem;
  text-indent: 0.1rem;
  line-height: 2.1;
}

/*
  Healthcare
----------- */
.b-local__title,
.b-systemHero__title,
.b-departments__title,
.b-financial__title,
.b-benefits__title,
.b-contact__title {
  font-size: 1.375rem;
  letter-spacing: 0.125rem;
  text-indent: 0.125rem;
}

.b-localNav__text {
  font-size: 0.9375rem;
  letter-spacing: 0.1rem;
  text-indent: 0.1rem;
}

.b-localContents__title {
  font-size: 1.375rem;
  letter-spacing: 0.5rem;
  text-indent: 0.5rem;
}

.b-slideThumbnail__copy {
  font-size: 1.125rem;
  letter-spacing: 0.05rem;
  text-indent: 0.05rem;
}

.b-localContents__textBox .title {
  font-size: 1.1875rem;
  letter-spacing: 0.07rem;
  text-indent: 0.07rem;
  line-height: 2;
}

.b-localContents__listBox .title {
  font-size: 1.125rem;
  letter-spacing: 0.07rem;
  text-indent: 0.07rem;
  line-height: 2;
}
.b-localContents__listBox .listText {
  font-size: clamp(0.875rem, 0.375rem + 2.5vw, 1rem);
  letter-spacing: 0;
}

/*
  System
----------- */
.b-systemHero__title {
  letter-spacing: 0.01rem;
}

.b-systemContents__listBox .title, .b-systemContents__listBox .list {
  font-size: clamp(0.875rem, 0.375rem + 2.5vw, 1rem);
}

/*
  Departments
----------- */
.b-departments__title {
  letter-spacing: 0.175rem;
  text-indent: 0.175rem;
}

.b-departmentsNav__text {
  font-size: 0.875rem;
  letter-spacing: 0.1rem;
  text-indent: 0.1rem;
}

.b-departmentsContents__title {
  font-size: 1.375rem;
  letter-spacing: 0.6rem;
  text-indent: 0.6rem;
}

.b-departmentsContents__listBox .title {
  font-size: 1.125rem;
  letter-spacing: 0.07rem;
  text-indent: 0.07rem;
  line-height: 2;
}

.b-departmentsContents02__title {
  font-size: 1.125rem;
  letter-spacing: 0.075rem;
  text-indent: 0.075rem;
}

/*
  Financial
----------- */
.b-financialContents__title {
  letter-spacing: 0;
}

/*
  Benefits
----------- */
.b-benefitsContents__title {
  font-size: 1.125rem;
  letter-spacing: 0.23rem;
  text-indent: 0.23rem;
  font-weight: 700;
}

.b-benefitsContents02__copy {
  font-size: 1.25rem;
  letter-spacing: 0.18rem;
  text-indent: 0.18rem;
  line-height: 1.5;
}
.b-benefitsContents02__copy em {
  font-size: 3.75rem;
  letter-spacing: 0;
  font-weight: 700;
  font-style: normal;
}
.b-benefitsContents02__copy em .small {
  font-size: 0.7em;
}

/*
  JobList
----------- */
.b-jobList__copy {
  font-size: 1.375rem;
  letter-spacing: 0.1rem;
  text-indent: 0.1rem;
}

.b-jobList__title {
  font-size: 1.25rem;
  letter-spacing: 0.1rem;
  text-indent: 0.1rem;
}
.b-jobList__title.--frame {
  text-align: center;
  max-width: 460px;
  margin: 0 auto;
  padding: 8px;
  border: 1px solid var(--lineColor);
  background-color: var(--whiteColor);
}

.b-jobList__time {
  font-size: 0.875rem;
  letter-spacing: 0.065rem;
  text-indent: 0.065rem;
}

.b-jobList__listBox .b-text-lv1 .small {
  font-size: 0.8em;
}

.b-jobListContact__box .title, .b-jobListContact__box .text {
  font-size: 1.125rem;
  letter-spacing: 0.065rem;
  text-indent: 0.065rem;
}
.b-jobListContact__box .tel {
  font-size: 1.75rem;
  letter-spacing: 0.065rem;
  text-indent: 0.065rem;
}

.b-jobListPost__title {
  font-size: 1.125rem;
  letter-spacing: 0.065rem;
  text-indent: 0.065rem;
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
  padding: 8px;
  border: 1px solid var(--lineColor);
  background-color: var(--grayColor04);
}

/*
  Contact
----------- */
.b-contact__title .small {
  font-size: 0.8em;
}
.b-contact__title em {
  font-style: normal;
}
.b-contact__title .line {
  background: linear-gradient(transparent 65%, var(--greenColor05) 65%, 93%, transparent 93%);
  padding-left: 0.3em;
}

.b-contactTel {
  font-size: 1.625rem;
  letter-spacing: 0.075rem;
}

.b-contactForm__title {
  font-size: 1.375rem;
  letter-spacing: 0.125rem;
  text-indent: 0.125rem;
}

.b-recaptchaText {
  font-size: 0.75rem;
  text-align: center;
  margin-top: 40px;
}

/********** media query **********/
@media screen and (min-width: 768px) {
  /*
    Header
  ----------- */
  .b-logo__text {
    font-size: 1.25rem;
  }
  .b-headerButton {
    font-size: 1rem;
  }
  /*
    Top
  ----------- */
  .b-dataList .title,
  .b-staffBox .title {
    font-size: 1.125rem;
  }
  .b-QA__title {
    font-size: 2.25rem;
  }
  /*
    Healthcare
  ----------- */
  .b-slideThumbnail__copy {
    font-size: 1.625rem;
  }
}
@media screen and (min-width: 1000px) {
  /*
    Common
  ----------- */
  .b-text-lv1 {
    font-size: 1.125rem;
  }
  .b-text-lv2 {
    font-size: 1rem;
  }
  .b-sectionTitle-lv1 {
    font-size: 2.5rem;
    letter-spacing: 0.28rem;
    text-indent: 0.28rem;
  }
  .b-sectionTitle-lv2 {
    font-size: 1.625rem;
    letter-spacing: 0.28rem;
    text-indent: 0.28rem;
  }
  .b-mainButton {
    font-size: 1.25rem;
  }
  /*
    Header
  ----------- */
  .b-logo__text {
    font-size: 1.75rem;
  }
  .b-headerNav__text {
    font-size: 1.125rem;
  }
  .b-headerButton {
    font-size: 1.25rem;
  }
  /*
    Footer
  ----------- */
  .b-footerNav__text {
    font-size: clamp(0.875rem, -0.375rem + 2vw, 1rem);
  }
  .b-address,
  .b-copyright {
    font-size: 1rem;
  }
  /*
    Top
  ----------- */
  .b-dataList .title,
  .b-staffBox .title {
    font-size: clamp(1.125rem, -0.125rem + 2vw, 1.375rem);
    letter-spacing: 0.15rem;
    text-indent: 0.15rem;
  }
  .b-dataList .title em,
  .b-staffBox .title em {
    font-size: 4.0625rem;
  }
  .b-staffBox .text {
    font-size: 1.5rem;
  }
  .b-staffBox .staffListItem {
    font-size: clamp(1rem, -0.25rem + 2vw, 1.25rem);
  }
  .b-supportBox .title {
    font-size: 1.875rem;
  }
  .b-supportBox .title em {
    font-size: 6.25rem;
    letter-spacing: 0.4rem;
    text-indent: 0.4rem;
  }
  .b-interview__text {
    font-size: 1.25rem;
    letter-spacing: 0.2rem;
  }
  .b-interviewBox .name {
    font-size: 1.375rem;
  }
  .b-experienceBox__title {
    font-size: 1.75rem;
  }
  .b-experienceBox .title {
    font-size: clamp(1.25rem, 0.3125rem + 1.5vw, 1.4375rem);
  }
  /*
    Healthcare
  ----------- */
  .b-local__title,
  .b-systemHero__title,
  .b-departments__title,
  .b-financial__title,
  .b-benefits__title,
  .b-contact__title {
    font-size: 2rem;
  }
  .b-localNav__text {
    font-size: 1.25rem;
    letter-spacing: 0.2rem;
    text-indent: 0.2rem;
  }
  .b-localContents__title {
    font-size: 2rem;
    letter-spacing: 0.8rem;
    text-indent: 0.8rem;
  }
  .b-localContents__textBox .title {
    font-size: 1.5rem;
  }
  .b-localContents__listBox .title {
    font-size: 1.5rem;
  }
  .b-localContents__listBox .listText {
    font-size: 1.21875rem;
  }
  /*
    Departments
  ----------- */
  .b-departmentsNav__text {
    font-size: 1.125rem;
  }
  .b-departmentsContents__title {
    font-size: 1.5rem;
  }
  .b-departmentsContents__listBox .title {
    font-size: 1.25rem;
  }
  .b-departmentsContents02__title {
    font-size: 1.25rem;
  }
  /*
    Benefits
  ----------- */
  .b-benefitsContents__title {
    font-size: 1.25rem;
  }
  .b-benefitsContents02__copy {
    font-size: 1.625rem;
  }
  .b-benefitsContents02__copy em {
    font-size: 2.875rem;
  }
  /*
    JobList
  ----------- */
  .b-jobList__copy {
    font-size: 1.6875rem;
  }
  .b-jobList__title {
    font-size: 1.25rem;
  }
  .b-jobList__time {
    font-size: 0.875rem;
  }
  .b-jobListContact__box .title, .b-jobListContact__box .text {
    font-size: 1.25rem;
  }
  .b-jobListPost__title {
    font-size: 1.375rem;
  }
  /*
    Contact
  ----------- */
  .b-contactTel {
    font-size: 2rem;
  }
  .b-contactForm__title {
    font-size: 1.5rem;
  }
}
/* ===============================================
b-button
=============================================== */
.b-button {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 100%;
  border-radius: 0;
}

.b-mainButton {
  max-width: 246px;
  height: 56px;
  border-radius: 100px;
  background-color: var(--greenColor02);
}
.b-mainButton.--medium {
  max-width: 325px;
}
.b-mainButton.--large {
  max-width: 428px;
}
.b-mainButton.--hamburger {
  max-width: 200px;
  height: 46px;
  padding: 6px;
  background-color: var(--whiteColor);
}

.b-headerButton {
  max-width: min(90%, 350px);
  height: 50px;
  border-radius: 100px;
  background-color: var(--greenColor02);
}

.b-telButton {
  max-width: 350px;
  border-radius: 100px;
  padding: 8px;
  background-color: var(--greenColor02);
}

/********** media query **********/
@media screen and (min-width: 768px) {
  .b-mainButton {
    height: 68px;
  }
  .b-mainButton.--medium {
    height: 78px;
  }
  .b-mainButton.--large {
    height: 78px;
  }
  .b-headerButton {
    max-width: 220px;
    height: 60px;
  }
}
/* ===============================================
b-pagination
=============================================== */
.b-pagination {
  display: flex;
  justify-content: center;
  gap: 0 24px;
  margin: 40px 0 0;
}
.b-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2em;
  height: 2em;
  padding: 8px;
  color: var(--mainColor);
  border-radius: 50%;
  border: 1px solid var(--mainColor);
  background: var(--whiteColor);
}
.b-pagination .current {
  background: var(--mainColor);
  color: var(--whiteColor);
}
.b-pagination .prev, .b-pagination .next {
  color: var(--mainColor);
}
.b-pagination .dots {
  background: transparent;
  box-shadow: none;
}

.nav-links {
  display: flex;
  justify-content: space-between;
  gap: 0 24px;
}
.nav-previous, .nav-next {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.nav-next {
  text-align: right;
}

/* ===============================================
b-parts
=============================================== */
/*
  Common
----------------------------------------------- */
.b-width100,
.b-width100--sp {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}

.spanSpace {
  display: flex;
  justify-content: space-between;
}

.b-topQAList {
  margin-bottom: -80px;
}
.b-topQAList .QAListItem .image {
  position: relative;
  left: 24px;
  margin-top: -104px;
  width: 220px;
}
.b-topQAList .QA {
  text-align: center;
  width: 270px;
  aspect-ratio: 1;
  background: linear-gradient(var(--greenColor01) 28%, var(--whiteColor) 28%);
  background-color: var(--whiteColor);
  border-radius: 50%;
}
.b-topQAList .QA .Q {
  height: 28%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 16px;
  color: var(--whiteColor);
}
.b-topQAList .QA .A {
  height: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 8px;
  word-break: keep-all;
}
.b-topQAList .QA .A em {
  color: var(--greenColor01);
  font-style: normal;
}

/********** media query **********/
@media screen and (min-width: 768px) {
  .spanSpace--pc {
    display: flex;
    justify-content: space-between;
  }
  .b-topQAList .QAListItem .image {
    left: 24px;
    margin-top: -128px;
    width: 248px;
  }
  .b-topQAList .QA {
    width: 300px;
  }
}
@media screen and (min-width: 1000px) {
  .b-width100--sp {
    width: 100%;
    margin: 0;
  }
}
/* ===============================================
Hover
=============================================== */
a {
  transition: opacity 0.2s ease-in-out;
}
a:hover {
  opacity: 0.5;
}

/*
  Common
----------------------------------------------- */
/* ===============================================
animation
=============================================== */
/*
  common
----------------------------------------------- */
body {
  animation: fade 2s both;
}

/*
  header
----------------------------------------------- */
/*
  @keyframes
----------------------------------------------- */
@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade0ut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}