@charset "UTF-8";
/* destyle.css*/
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  min-width: 0;
}

/* Document */
html {
  line-height: 1.15;
  /* Correct the line height */
  -webkit-text-size-adjust: 100%;
  /* Prevent font size adjustment */
  -webkit-tap-highlight-color: transparent;
  /* Remove gray overlay on links */
}

/* Sections */
body {
  margin: 0;
  /* Remove margin */
}

main {
  display: block;
  /* Render `main` consistently */
}

/* Vertical rhythm */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

/* Text-level semantics */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[title] {
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

[type=number] {
  appearance: none;
  -moz-appearance: textfield;
}

label[for] {
  cursor: pointer;
}

/* Interactive */
details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

/* Tables */
table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

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

/********** base **********/
body {
  font-family: "游ゴシック体", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  color: #656464;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.01em;
  font-size: 15px;
}

.section-ttl {
  font-size: 17px;
  color: #656464;
  font-family: "游ゴシック体", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 300;
  display: flex;
  flex-direction: column-reverse;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .section-ttl {
    font-size: 16px;
  }
}
.section-ttl--en {
  display: inline-block;
  color: #004237;
  font-size: 38px;
  font-family: "Lato", "serif";
  font-weight: 400;
}

.top-section-ttl {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.section-ttl--en {
  flex-shrink: 0;
}

.top-section__border {
  display: inline-block;
  width: 100%;
  height: 1px;
  background: #EBE9E5;
}

/********** variable **********/
/********** mixin **********/
/********** module **********/
.footer__container {
  max-width: 80%;
  padding: 80px 32px;
  margin: 0 auto;
}
@media (max-width: 1080px) {
  .footer__container {
    max-width: 100%;
    padding: 56px 32px;
  }
}
.footer__contents {
  display: flex;
  justify-content: space-around;
  gap: 15px;
}
@media (max-width: 480px) {
  .footer__contents {
    flex-direction: column;
    margin: 0 auto;
  }
}
.footer__company-info {
  width: 20vw;
  height: fit-content;
}
@media (max-width: 1080px) {
  .footer__company-info {
    width: 45vw;
  }
}
@media (max-width: 480px) {
  .footer__company-info {
    width: 100%;
  }
}
.footer__logo {
  width: 100%;
  max-width: 280px;
}
@media (max-width: 480px) {
  .footer__logo {
    width: 50%;
  }
}
.footer__logo img {
  object-fit: contain;
}
.footer__address-wrap {
  margin-top: 0.5em;
}
.footer__address-info {
  margin-top: 1.5em;
}
.footer__address {
  font-size: 13px;
}
.footer__copy-right {
  text-align: center;
  background: #EFEFEF;
  padding-top: 2em;
  padding-bottom: 1.75em;
}
@media (max-width: 1080px) {
  .footer__copy-right {
    padding-top: 1em;
    padding-bottom: 1em;
  }
}
.footer__copy {
  font-size: 14px;
}
@media (max-width: 1080px) {
  .footer__copy {
    font-size: 12px;
  }
}

.footer__nav {
  display: flex;
  gap: 100px;
}
@media (max-width: 1080px) {
  .footer__nav {
    gap: 20px;
  }
}
@media (max-width: 680px) {
  .footer__nav {
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .footer__nav {
    flex-direction: row;
    justify-content: space-around;
    margin-top: 56px;
  }
}
.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__nav-item {
  color: #004237;
}
@media (max-width: 480px) {
  .footer__nav-item {
    font-size: 13px;
  }
}
.footer__nav-item a {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header {
  width: 100%;
  display: flex;
  padding: 0 50px;
  position: absolute;
  top: 0;
  left: 0;
  justify-content: space-between;
  z-index: 400;
}
.header::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  /* 黒い透過マスク */
  z-index: -1;
  transition: background 0.4s ease-in-out 0.3s;
}
@media (max-width: 768px) {
  .header::before {
    height: 60px;
  }
}
.header.white-mask::before {
  transition: 0.4s;
  background-image: linear-gradient(180deg, rgb(255, 255, 255), rgba(255, 255, 255, 0.61) 50%, rgba(255, 255, 255, 0));
}
@media (max-width: 1080px) {
  .header {
    padding: 0 32px;
  }
}
.header__logo {
  width: 15vw;
  height: auto;
}
@media (max-width: 480px) {
  .header__logo {
    width: 18vw;
  }
}
.header__logo img {
  object-fit: contain;
}
.header__nav {
  width: 40%;
  top: 20px;
  position: fixed;
  right: 56px;
  transition: 0.6s;
}
@media (max-width: 1080px) {
  .header__nav {
    width: 75%;
  }
}
.header__nav-list {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__nav-item {
  color: #fff;
}
.header__nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 15px;
  font-weight: 300;
}
.header__nav-link span {
  display: inline-block;
  font-size: 12px;
  font-family: "Lato", "serif";
}
.header__nav-link--contact {
  flex-direction: row-reverse;
  gap: 10px;
  align-items: center;
}
.header__nav-link--contact span {
  display: inline-block;
  width: 20%;
  height: auto;
  line-height: 1;
}
.header__nav-link--contact span img {
  object-fit: contain;
}

.header__logo-fix {
  min-width: 100px;
  max-width: 200px;
  width: 10vw;
  position: fixed;
  top: 20px;
  left: 56px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media (max-width: 1080px) {
  .header__logo-fix {
    width: 15vw;
  }
}
@media (max-width: 480px) {
  .header__logo-fix {
    width: 10vw;
    top: 15px;
    left: 32px;
  }
}

.header__logo-fix.is-visible {
  opacity: 1;
  visibility: visible;
}

.header__nav.center .header__nav-item {
  color: #656464;
}

@media (max-width: 1080px) {
  .header__nav {
    display: none;
  }
}

.header__nav-link--contact .header__nav-link--icon--black {
  display: none;
}

.header__nav-link--contact.header__nav-link-icon--scrolled .header__nav-link--icon--white {
  display: none;
}

.header__nav-link--contact.header__nav-link-icon--scrolled .header__nav-link--icon--black {
  display: inline;
}

.sp-header__nav-logo {
  position: fixed;
  top: 20px;
  left: 56px;
  width: 15vw;
}
@media (max-width: 480px) {
  .sp-header__nav-logo {
    top: 15px;
    left: 32px;
    width: 100px;
  }
}

.not-top .header__logo {
  width: 8vw;
  transform: translateX(50%);
}
@media (max-width: 1080px) {
  .not-top .header__logo {
    width: 10vw;
    transform: translateX(0);
  }
}
@media (max-width: 480px) {
  .not-top .header__logo {
    width: 15vw;
  }
}

.mainV {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100vh;
}
@media (max-width: 1080px) {
  .mainV {
    height: 50vh;
  }
}
@media (max-width: 480px) {
  .mainV {
    height: 60vh;
  }
}
@media (max-width: 420px) {
  .mainV {
    height: 70vh;
  }
}
.mainV__news-wrap {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  background: #fff;
  padding-left: 20px;
  border-bottom: 0.1px solid #EBE9E5;
  z-index: 100;
}
@media (max-width: 480px) {
  .mainV__news-wrap {
    padding-left: 15px;
  }
}
.mainV__news {
  display: flex;
  gap: 14px;
  align-items: center;
}
@media (max-width: 480px) {
  .mainV__news {
    gap: 10px;
  }
}
.mainV__news-label {
  flex-shrink: 0;
}
.mainV__news-separate {
  display: inline-block;
  width: 1px;
  height: 2em;
  border-left: 1px solid #EBE9E5;
}
.mainV__news-data {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 20px;
  padding: 20px 10px 20px 0;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .mainV__news-data {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 10px 5px 10px 0;
  }
}
.mainV__news-cat-wrap {
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .mainV__news-cat-wrap {
    display: flex;
    flex-direction: column;
  }
}
.mainV__news-day {
  font-size: 13px;
  letter-spacing: 0;
}
@media (max-width: 480px) {
  .mainV__news-day {
    font-size: 10px;
  }
}
.mainV__news-cat {
  font-size: 12px;
  color: #004237;
}
@media (max-width: 480px) {
  .mainV__news-cat {
    font-size: 11px;
  }
}
.mainV__news-head {
  font-size: 14px;
  transition: transform 0.3s ease;
}
.mainV__news-head.is-scroll {
  animation: scroll-left 10s linear infinite;
}
@keyframes scroll-left {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@media (max-width: 480px) {
  .mainV__news-head {
    font-size: 13px;
  }
}

.mainV__news-cat.news {
  padding: 0 !important;
}

.mainV-swiper {
  overflow: hidden;
  position: relative;
  height: 100vh;
}
@media (max-width: 1080px) {
  .mainV-swiper {
    height: 50vh;
  }
}
@media (max-width: 480px) {
  .mainV-swiper {
    height: 60vh;
  }
}
@media (max-width: 420px) {
  .mainV-swiper {
    height: 70vh;
  }
}

.swiper-img {
  height: 100%;
}
@media (max-width: 480px) {
  .swiper-img {
    display: none;
  }
}

.swiper-img-sp {
  display: none;
}
@media (max-width: 480px) {
  .swiper-img-sp {
    display: block;
  }
}

/* ズームアニメーション */
@keyframes zoomUpAnimation {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
.swiper-slide-active .swiper-img,
.swiper-slide-duplicate-active .swiper-img,
.swiper-slide-prev .swiper-img,
.swiper-slide-active .swiper-img-sp,
.swiper-slide-duplicate-active .swiper-img-sp,
.swiper-slide-prev .swiper-img-sp {
  animation: zoomUpAnimation 12s linear infinite;
}

.swiper-slide img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 480px) {
  .mainV .swiper-slide img {
    height: 70vh;
  }
}

.mainV__news-pagenation {
  cursor: pointer;
  width: 58px;
  aspect-ratio: 1/1;
  position: relative;
  background: #fff;
  border-left: 1px solid #EBE9E5;
  flex-shrink: 0;
}
.mainV__news-pagenation--next {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-42%, -50%);
  display: inline-block;
  display: flex;
  align-items: center;
}
.mainV__news-pagenation--next::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 1px;
  background: #004237;
}
.mainV__news-pagenation--next::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #004237;
  border-right: 1px solid #004237;
  -webkit-transform: rotate(45deg);
  transform: translate(-8px) rotate(45deg);
}
.mainV__news-pagenation--prev {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-38%, -50%);
  display: inline-block;
  display: flex;
  align-items: center;
}
.mainV__news-pagenation--prev::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 1px;
  background: #004237;
}
.mainV__news-pagenation--prev::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #004237;
  border-right: none;
  border-left: 1px solid #004237;
  -webkit-transform: rotate(45deg);
  transform: translate(-12px) rotate(-45deg);
}
.mainV__news-pagenation--arrow {
  width: 100%;
  height: 100%;
  justify-content: center;
}

.page-mainV {
  width: 100%;
  height: 40vh;
  position: relative;
}
.page-mainV__news {
  background: linear-gradient(rgba(51, 51, 51, 0.3), rgba(51, 51, 51, 0.3)), url(../img/news-mainV.webp) bottom center/cover no-repeat;
}
.page-mainV__recruit {
  background: linear-gradient(rgba(51, 51, 51, 0.3), rgba(51, 51, 51, 0.3)), url(../img/recruit-mainV.webp) top center/cover no-repeat;
}
.page-mainV__contact {
  background: linear-gradient(rgba(51, 51, 51, 0.3), rgba(51, 51, 51, 0.3)), url(../img/contact-mainV.webp) bottom center/cover no-repeat;
}
.page-mainV__contact--nurse {
  background: linear-gradient(rgba(51, 51, 51, 0.3), rgba(51, 51, 51, 0.3)), url(../img/content-img02.webp) top center/cover no-repeat;
}
.page-mainV__contact--pharmacist {
  background: linear-gradient(rgba(51, 51, 51, 0.3), rgba(51, 51, 51, 0.3)), url(../img/content-img06.webp) center center/cover no-repeat;
}
.page-mainV__head {
  position: absolute;
  top: 50%;
  left: 12vw;
  display: flex;
  flex-direction: column-reverse;
  color: #fff;
}
.page-mainV__en-head {
  display: block;
  font-size: 80px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  font-family: "Lato", "serif";
  margin-left: -5px;
}
@media (max-width: 480px) {
  .page-mainV__en-head {
    font-size: 56px;
  }
}

#js-nav {
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: auto;
  display: flex;
  background: rgba(255, 255, 255, 0.9);
  align-items: center;
  transition: 0.3s;
  z-index: -999;
  visibility: hidden;
  padding: 80px 0 40px 0;
}
#js-nav .sp-header__nav-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  text-align: center;
  gap: 40px;
}
#js-nav .header__nav-link {
  width: 100%;
  color: #004237;
  display: flex;
}
#js-nav .header__nav-link--icon {
  display: none;
}
#js-nav .header__nav-link--sp-icon {
  display: block;
  width: 16px;
}
#js-nav .header__nav-link--contact {
  gap: 6px;
  justify-content: center;
}

#js-nav.active {
  opacity: 1;
  z-index: 400;
  visibility: visible;
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* 半透明黒 */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 300;
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.contents {
  padding: 80px 0 0 0;
}
@media (max-width: 480px) {
  .contents {
    padding: 120px 0 0 0;
  }
}

.container-sm {
  width: 100%;
  padding: 0 40px;
  margin: 0 auto;
  max-width: calc(800px + 80px);
}
@media (max-width: 480px) {
  .container-sm {
    padding: 0 20px;
    max-width: calc(800px + 32px);
  }
}

.container-md {
  width: 100%;
  padding: 0 40px;
  margin: 0 auto;
  max-width: calc(940px + 80px);
}
@media (max-width: 480px) {
  .container-md {
    padding: 0 20px;
    max-width: calc(940px + 32px);
  }
}

.container {
  width: 100%;
  padding: 0 40px;
  margin: 0 auto;
  max-width: calc(1100px + 80px);
}
@media (max-width: 480px) {
  .container {
    padding: 0 20px;
    max-width: calc(1100px + 32px);
  }
}

.container-lg {
  width: 100%;
  padding: 0 40px;
  margin: 0 auto;
  max-width: calc(1200px + 80px);
}
@media (max-width: 480px) {
  .container-lg {
    padding: 0 20px;
    max-width: calc(1200px + 32px);
  }
}

/* ハンバーガーメニューのボタン位置 */
.hamburger-menu {
  width: 30px;
  /*ハンバーガーメニューの線の幅*/
  height: 20px;
  position: fixed;
  top: 15px;
  /*(ヘッダーの高さ)ー(メニューボタンの高さ)/2*/
  right: 20px;
  background: transparent;
  z-index: 999;
}

/* 画面幅が以下のサイズを超えたら非表示 */
@media screen and (min-width: 1080px) {
  .hamburger-menu {
    display: none;
  }
}
/* ハンバーガーメニューのボタンサイズ */
.hamburger-menu__icon {
  position: relative;
  width: 100%;
  height: 100%;
}

/* ハンバーガーメニューの線 */
.hamburger-menu__icon span {
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
  background: #000;
  /*メニューバーの色*/
  transition: ease 0.4s;
}

.hamburger-menu span:nth-child(1) {
  top: 0;
}

.hamburger-menu span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger-menu span:nth-child(3) {
  top: 100%;
  transform: translateY(-100%);
}

/* ハンバーガーメニューボタンをクリックしたときの動き */
.hamburger-menu.active span:nth-child(1) {
  top: 50%;
  transform: translateY(50%);
  transform: rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  top: 50%;
  transform: translateY(50%);
  transform: rotate(-45deg);
}

.opening {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #004237;
  z-index: 999;
}

.opening__txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 24px;
  font-weight: 300;
  color: #fff;
}

.header__nav-item {
  transition: 0.3s;
}
.header__nav-item:hover {
  opacity: 0.7;
}

.mainV__news-pagenation {
  transition: 0.3s;
}
.mainV__news-pagenation:hover {
  background: #004237;
}
.mainV__news-pagenation:hover .mainV__news-pagenation--arrow::before {
  background: #fff;
}
.mainV__news-pagenation:hover .mainV__news-pagenation--arrow::after {
  border-color: #fff;
}

.mainV__news-data {
  transition: 0.1s;
}

.mainV__news-data:hover {
  opacity: 0.7;
}

.m-more-btn__arrow {
  transition: 0.3s;
}

.u-more-btn {
  transition: 0.3s;
}
.u-more-btn:hover .m-more-btn__arrow {
  background: #004237;
}
.u-more-btn:hover .m-more-btn__arrow span::before {
  background: white;
}
.u-more-btn:hover .m-more-btn__arrow span::after {
  border-color: white;
}

.top-news__content {
  transition: 0.3s;
}

.top-news__content:hover .top-news__ttl {
  opacity: 0.7;
}

.m-scale-large {
  overflow: hidden;
  transition: 0.4s;
}
.m-scale-large img {
  transition: 0.4s;
}
.m-scale-large:hover img {
  scale: 1.02;
}

.top-recruit__medical-content:hover .top-recruit__medical-disc {
  transition: 0.2s;
  opacity: 0.7;
}

.top-hospital-info__content:hover .top-hospital-info__ttl {
  transition: 0.2s;
  opacity: 0.7;
}

.top-cta__content .top-cta__text {
  transition: 0.3s;
}

.top-cta__content:hover .top-cta__text {
  opacity: 0.7;
}

.top-cta__content:hover:hover .m-more-btn__arrow {
  background: #004237;
}
.top-cta__content:hover:hover .m-more-btn__arrow span::before {
  background: white;
}
.top-cta__content:hover:hover .m-more-btn__arrow span::after {
  border-color: white;
}

.news__cat-item {
  transition: 0.3s;
}
.news__cat-item:hover {
  border-color: #004237;
  color: #004237;
}

.news__post-item {
  transition: 0.3s;
}

.news__post-item:hover .news__post-ttl {
  opacity: 0.7;
}
.news__post-item:hover .m-more-btn__arrow {
  background: #004237;
}
.news__post-item:hover .m-more-btn__arrow span::before {
  background: white;
}
.news__post-item:hover .m-more-btn__arrow span::after {
  border-color: white;
}

.toggleInterviewBtn--blue:hover {
  background: #81C3DD;
  color: #fff;
}
.toggleInterviewBtn--blue:hover .toggleInterviewBtn-arrow {
  border-color: #fff;
}
.toggleInterviewBtn--blue:hover .toggleInterviewBtn-arrow::before {
  border-color: #fff;
}

.toggleInterviewBtn--green:hover {
  background: #66C1B3;
  color: #fff;
}
.toggleInterviewBtn--green:hover .toggleInterviewBtn-arrow {
  border-color: #fff;
}
.toggleInterviewBtn--green:hover .toggleInterviewBtn-arrow::before {
  border-color: #fff;
}

.toggleInterviewBtn--yellow:hover {
  background: #C5CB0C;
  color: #fff;
}
.toggleInterviewBtn--yellow:hover .toggleInterviewBtn-arrow {
  border-color: #fff;
}
.toggleInterviewBtn--yellow:hover .toggleInterviewBtn-arrow::before {
  border-color: #fff;
}

.m-back-btn a {
  transition: 0.3s;
}

.m-back-btn {
  transition: 0.3s;
}
.m-back-btn:hover.m-back-btn a {
  background: #004237;
  color: #fff;
}
.m-back-btn:hover .m-more-btn__arrow--absolute {
  background: #fff;
}

.recruit-interviews__contents-movie::before {
  transition: 0.3s;
}

.recruit-interviews__contents-movie:hover::before {
  background: rgba(101, 100, 100, 0.3);
}

.recruit-cta__content-link a {
  transition: 0.3s;
}

.recruit-cta__content-link--01 a:hover {
  background: rgba(197, 203, 12, 0.7);
}

.recruit-cta__content-link--02 a:hover {
  background: rgba(75, 169, 206, 0.7);
}

.recruit-cta__content-link--03 a:hover {
  background: rgba(79, 180, 189, 0.7);
}

.footer__nav-item {
  transition: 0.3s;
}

.footer__nav-item:hover {
  opacity: 0.7;
}

.u-more-btn .m-more-btn__arrow {
  width: 42px;
}
@media (max-width: 480px) {
  .u-more-btn .m-more-btn__arrow {
    width: 28px;
  }
}

.top-cta__content .m-more-btn__arrow {
  width: 42px;
}
@media (max-width: 480px) {
  .top-cta__content .m-more-btn__arrow {
    width: 28px;
  }
}

.m-more-btn {
  flex-shrink: 0;
  font-size: 12px;
  color: #004237;
  font-family: "Lato", "serif";
}
.m-more-btn a {
  display: flex;
  align-items: center;
}
.m-more-btn__arrow {
  width: 28px;
  aspect-ratio: 1/1;
  position: relative;
  background: #fff;
  border: 1px solid #004237;
  border-radius: 50px;
  transform: translateX(20px);
}
@media (max-width: 480px) {
  .m-more-btn__arrow {
    transform: translateX(10px);
  }
}
.m-more-btn__arrow span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-42%, -50%);
  display: inline-block;
  display: flex;
  align-items: center;
}
.m-more-btn__arrow span::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 1px;
  background: #004237;
}
.m-more-btn__arrow span::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 1px solid #004237;
  border-right: 1px solid #004237;
  -webkit-transform: rotate(45deg);
  transform: translate(-6px) rotate(45deg);
}

.m-more-btn__arrow--absolute {
  background: transparent;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translate(0, -50%);
}

.m-small-arrow {
  width: 14px;
  height: 14px;
  position: relative;
  background: #fff;
  border: 1px solid #004237;
  border-radius: 50px;
  flex-shrink: 0;
}
.m-small-arrow span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-36%, -50%);
  display: inline-block;
  display: flex;
  align-items: center;
}
.m-small-arrow span::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 1px;
  background: #004237;
}
.m-small-arrow span::after {
  content: "";
  display: inline-block;
  width: 3px;
  height: 3px;
  border-top: 1px solid #004237;
  border-right: 1px solid #004237;
  -webkit-transform: rotate(45deg);
  transform: translate(-3px) rotate(45deg);
}

.m-back-btn {
  position: relative;
  border-radius: 4px;
  width: 90%;
  max-width: 392px;
  border: 1px solid #004237;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.m-back-btn a {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px;
  color: #004237;
}

.pagenation-wrapper__btn {
  transform: translateY(-1px);
  display: inline-block;
  width: 30px;
  height: 30px;
  position: relative;
  background: #fff;
  border: 1px solid #004237;
  border-radius: 50px;
  flex-shrink: 0;
}
.pagenation-wrapper__btn span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-36%, -50%);
  display: inline-block;
  display: flex;
  align-items: center;
}
.pagenation-wrapper__btn span::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 1px;
  background: #004237;
}
.pagenation-wrapper__btn span::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-top: 1px solid #004237;
  border-right: 1px solid #004237;
  -webkit-transform: rotate(45deg);
  transform: translate(-4px) rotate(45deg);
}

.pagenation-wrapper__btn--left {
  transform: translateY(-1px);
  display: inline-block;
  width: 30px;
  height: 30px;
  position: relative;
  background: #fff;
  border: 1px solid #004237;
  border-radius: 50px;
  flex-shrink: 0;
}
.pagenation-wrapper__btn--left span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-36%, -50%);
  display: inline-block;
  display: flex;
  align-items: center;
}
.pagenation-wrapper__btn--left span::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 1px;
  background: #004237;
  transform: translateX(2px);
}
.pagenation-wrapper__btn--left span::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-top: 1px solid #004237;
  border-right: 1px solid #004237;
  -webkit-transform: rotate(45deg);
  transform: translate(-6px) rotate(-135deg);
}

a.page-numbers {
  border: 1px solid #555;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-numbers.current {
  border: 1px solid #555;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #004237;
  color: #fff;
}

.nav-links {
  margin-top: 60px;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}
@media (max-width: 480px) {
  .nav-links {
    gap: 10px;
    margin-top: 32px;
  }
}

.prev,
.next {
  display: flex;
  align-items: center;
  gap: 5px;
}

.next.page-numbers {
  width: fit-content;
  border: none;
  margin-left: 20px;
}

.prev.page-numbers {
  width: fit-content;
  border: none;
  margin-right: 20px;
}

.post {
  padding-bottom: 120px;
  border-bottom: 1px solid #EFEFEF;
}
@media (max-width: 480px) {
  .post {
    padding-bottom: 96px;
  }
}

.post-container {
  padding-top: 120px;
  padding-bottom: 60px;
}
@media (max-width: 480px) {
  .post-container {
    padding-top: 80px;
  }
}

.m-news__data {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #004237;
}

.m-news__cat {
  display: inline-block;
  padding: 8px 28px;
  font-size: 13px;
  background: #F7F7F7;
}
@media (max-width: 1080px) {
  .m-news__cat {
    padding: 4px 10px;
    font-size: 12px;
  }
}

.m-news__cat.news {
  padding: 8px 28px;
}
@media (max-width: 1080px) {
  .m-news__cat.news {
    padding: 4px 10px;
  }
}

.m-news__time {
  font-size: 15px;
  font-family: "Lato", "serif";
  font-weight: 400;
}
@media (max-width: 1080px) {
  .m-news__time {
    font-size: 12px;
  }
}

.post__ttl {
  font-size: 23px;
  margin-top: 18px;
  padding-bottom: 24px;
  border-bottom: 1px solid #E8E8E8;
}
@media (max-width: 480px) {
  .post__ttl {
    font-size: 20px;
  }
}

.post__content {
  padding-top: 56px;
}
@media (max-width: 480px) {
  .post__content {
    padding-top: 30px;
  }
}

.post__content h1 {
  font-size: 28px;
}
.post__content h2 {
  font-size: 24px;
}
.post__content h3 {
  font-size: 20px;
}
.post__content h4 {
  font-size: 18px;
}
.post__content h5 {
  font-size: 16px;
}
.post__content p,
.post__content a,
.post__content li {
  line-height: 2;
}
.post__content h1,
.post__content h2,
.post__content h3,
.post__content h4,
.post__content h5,
.post__content h6,
.post__content p,
.post__content li,
.post__content a {
  margin-top: 1em;
}
.post__content img {
  margin-top: 20px;
}

/********** utils **********/
.u-mt5 {
  margin-top: 5px;
}

.u-mt16 {
  margin-top: 16px;
}

.u-mt24 {
  margin-top: 24px;
}

.u-mt40 {
  margin-top: 40px;
}

.u-mt64 {
  margin-top: 64px;
}

.u-mt80 {
  margin-top: 80px;
}

.u-mb5 {
  margin-bottom: 5px;
}

.u-mb16 {
  margin-bottom: 16px;
}

.u-mb24 {
  margin-bottom: 24px;
}

.u-mb40 {
  margin-bottom: 40px;
}

.u-mb64 {
  margin-bottom: 64px;
}

.u-mb80 {
  margin-bottom: 80px;
}

.u-pt5 {
  padding-top: 5px;
}

.u-pt16 {
  padding-top: 16px;
}

.u-pt24 {
  padding-top: 24px;
}

.u-pt40 {
  padding-top: 40px;
}

.u-pt64 {
  padding-top: 64px;
}

.u-pt80 {
  padding-top: 80px;
}

.u-pb5 {
  padding-bottom: 5px;
}

.u-pb16 {
  padding-bottom: 16px;
}

.u-pb24 {
  padding-bottom: 24px;
}

.u-pb40 {
  padding-bottom: 40px;
}

.u-pb64 {
  padding-bottom: 64px;
}

.u-pb80 {
  padding-bottom: 80px;
}

.u-pc-br {
  display: block;
}
@media (max-width: 480px) {
  .u-pc-br {
    display: none;
  }
}

.u-tab-br {
  display: none;
}
@media (max-width: 1080px) {
  .u-tab-br {
    display: block;
  }
}

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

.u-center {
  margin: 0 auto;
  text-align: center;
  justify-content: center;
}

/********** pages **********/
/* top-page*/
.top-news {
  padding-top: 118px;
}
@media (max-width: 480px) {
  .top-news {
    padding-top: 64px;
  }
}
.top-news__contents {
  width: 100%;
  margin-top: 40px;
  display: flex;
  gap: 15px;
}
@media (max-width: 480px) {
  .top-news__contents {
    flex-wrap: wrap;
  }
}
.top-news__content {
  width: 33.3333333333%;
}
@media (max-width: 480px) {
  .top-news__content {
    width: 100%;
  }
}
.top-news__thumb {
  width: 100%;
  aspect-ratio: 1/0.6;
}
.top-news__disc {
  padding: 13px;
}
@media (max-width: 1080px) {
  .top-news__disc {
    padding: 10px 8px;
  }
}
.top-news__data {
  flex-wrap: wrap;
}
.top-news__ttl {
  margin-top: 18px;
}
@media (max-width: 1080px) {
  .top-news__ttl {
    font-size: 13px;
    margin-top: 13px;
  }
}

.top-news__no-img {
  width: 60%;
  height: 100%;
  margin: 0 auto;
  display: block;
  object-fit: contain;
}

.top-recruit {
  padding-top: 180px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1080px) {
  .top-recruit {
    padding-top: 100px;
  }
}
.top-recruit__accent {
  position: absolute;
  border-radius: 50%;
}
.top-recruit__accent--01 {
  top: 0;
  right: 0;
  width: 22%;
  aspect-ratio: 1/1;
  transform: translate(40%, -40%);
  background: radial-gradient(circle at center, transparent 50%, #E7F2F1 50%);
}
.top-recruit__accent--02 {
  top: 50%;
  right: 0;
  width: 12%;
  aspect-ratio: 1/1;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at center, transparent 30%, #F3F6F5 30%);
}
.top-recruit__container {
  position: relative;
  display: flex;
  justify-content: space-between;
  background: #F8FCFF;
  padding-top: 84px;
}
@media (max-width: 1080px) {
  .top-recruit__container {
    flex-direction: column;
  }
}
.top-recruit__slide-contents {
  transform: translateY(-25%);
  width: 50%;
  position: relative;
  height: fit-content;
}
@media (max-width: 1080px) {
  .top-recruit__slide-contents {
    width: 70%;
  }
}
@media (max-width: 480px) {
  .top-recruit__slide-contents {
    width: 100%;
  }
}
.top-recruit__slide {
  aspect-ratio: 1/0.6;
  overflow: hidden;
}
.top-recruit__slideshow {
  width: 100%;
  height: 100%;
}
.top-recruit__info {
  width: 45%;
}
@media (max-width: 1080px) {
  .top-recruit__info {
    width: 100%;
  }
}
.top-recruit__head-wrap {
  padding-left: 50px;
}
@media (max-width: 480px) {
  .top-recruit__head-wrap {
    padding-left: 16px;
  }
}
.top-recruit__copy {
  color: #004237;
  font-weight: 300;
  margin-top: 38px;
  font-size: 20px;
}
.top-recruit__disc-wrap {
  margin-top: 54px;
  padding: 60px 50px;
  padding-bottom: 20vh;
  background: #fff;
  border-radius: 40px 0 0 0;
  width: 100%;
}
@media (max-width: 1080px) {
  .top-recruit__disc-wrap {
    margin-top: 20px;
    padding: 40px 50px;
    padding-bottom: 40px;
  }
}
@media (max-width: 480px) {
  .top-recruit__disc-wrap {
    padding: 30px 16px;
  }
}
.top-recruit__disc {
  line-height: 2;
  max-width: 500px;
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
}
@media (max-width: 1080px) {
  .top-recruit__disc {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .top-recruit__disc-wrap .m-more-btn a {
    justify-content: center;
  }
}

.swiper-pagination {
  bottom: -20px !important;
}

.swiper-pagination-bullet-active {
  background: #004237;
}

.top-recruit::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 15%;
  width: 100%;
  background-color: #F8FCFF;
  z-index: -1;
}
.top-recruit__medical-contents {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 480px) {
  .top-recruit__medical-contents {
    margin-top: 32px;
    grid-template-columns: 1fr;
    gap: 0px;
  }
}
.top-recruit__medical-content {
  position: relative;
  transform: translateY(-25%);
}
@media (max-width: 1080px) {
  .top-recruit__medical-content {
    transform: translateY(0);
  }
}
.top-recruit__medical-thumb {
  border-radius: 10px;
  width: 100%;
  height: auto;
  aspect-ratio: 1/0.6;
}
.top-recruit__medical-thumb img {
  border-radius: 10px;
}
.top-recruit__medical-info {
  position: relative;
  width: 90%;
  margin: 0 auto;
  background: #fff;
  border-radius: 10px;
  box-shadow: 2px 2px 6px 0px rgba(101, 100, 100, 0.2);
  display: flex;
  padding: 7% 5% 5% 5%;
  justify-content: space-between;
  transform: translateY(-50%);
}
@media (max-width: 680px) {
  .top-recruit__medical-info {
    transform: translateY(-25%);
  }
}
@media (max-width: 480px) {
  .top-recruit__medical-info {
    transform: translateY(-50%);
  }
}
.top-recruit__medical-en-head {
  position: absolute;
  top: 0;
  left: 10px;
  transform: translateY(-55%);
  font-size: 55px;
  font-family: "Lato", "serif";
  line-height: 1.1;
  opacity: 0.6;
  font-weight: 300;
}
@media (max-width: 1080px) {
  .top-recruit__medical-en-head {
    font-size: 28px;
  }
}
@media (max-width: 680px) {
  .top-recruit__medical-en-head {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .top-recruit__medical-en-head {
    font-size: 22px;
  }
}
.top-recruit__medical-en-head--01 {
  color: #23A895;
}
.top-recruit__medical-en-head--02 {
  color: #4BA9CE;
}
.top-recruit__medical-en-head--03 {
  color: #C5CB0C;
}
.top-recruit__medical-en-head--04 {
  color: #4BC28A;
  transform: translateY(-75%);
}
.top-recruit__medical-en-head--05 {
  color: #46BFAC;
}
.top-recruit__medical-en-head--06 {
  color: #4FB4BD;
  transform: translateY(-75%);
}
.top-recruit__medical-head {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}
@media (max-width: 1080px) {
  .top-recruit__medical-head {
    font-size: 20px;
  }
}
@media (max-width: 680px) {
  .top-recruit__medical-head {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .top-recruit__medical-head {
    font-size: 18px;
  }
}
.top-recruit__medical-head--01 {
  color: #23A895;
}
.top-recruit__medical-head--02 {
  color: #4BA9CE;
}
.top-recruit__medical-head--03 {
  color: #C5CB0C;
}
.top-recruit__medical-head--04 {
  color: #4BC28A;
}
.top-recruit__medical-head--05 {
  color: #46BFAC;
}
.top-recruit__medical-head--06 {
  color: #4FB4BD;
}
@media (max-width: 680px) {
  .top-recruit__medical-disc {
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .top-recruit__medical-disc {
    font-size: 15px;
  }
}
.top-recruit__medical-link {
  width: 22px;
  height: 22px;
}
.top-recruit__medical-link img {
  object-fit: contain;
}

.top-hospital-info {
  background: #F8FCFF;
  padding-bottom: 100px;
}
@media (max-width: 480px) {
  .top-hospital-info {
    padding-bottom: 32px;
  }
}
.top-hospital-info__contents {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 1080px) {
  .top-hospital-info__contents {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
  }
}
@media (max-width: 680px) {
  .top-hospital-info__contents {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 64px;
  }
}
@media (max-width: 480px) {
  .top-hospital-info__contents {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 0;
  }
}
.top-hospital-info__thumb {
  border-radius: 10px;
  width: 100%;
  aspect-ratio: 1/0.6;
}
.top-hospital-info__thumb img {
  border-radius: 10px;
}
.top-hospital-info__info {
  width: 80%;
  margin: 0 auto;
  padding: 5%;
  border-radius: 10px;
  background: #fff;
  transform: translateY(-25%);
  box-shadow: 2px 2px 6px 0px rgba(101, 100, 100, 0.2);
}
@media (max-width: 1080px) {
  .top-hospital-info__info {
    width: 90%;
  }
}
.top-hospital-info__ttl {
  color: #004237;
  font-weight: 600;
  border-bottom: 1px solid #004237;
  padding-bottom: 0.5em;
}
@media (max-width: 480px) {
  .top-hospital-info__ttl {
    font-size: 13px;
  }
}
.top-hospital-info__disc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.5em;
}
@media (max-width: 480px) {
  .top-hospital-info__disc {
    align-items: baseline;
  }
}
.top-hospital-info__address {
  color: #656464;
  font-size: 13px;
}
@media (max-width: 480px) {
  .top-hospital-info__address {
    font-size: 10px;
  }
}
.top-hospital-info__link {
  width: 20px;
  height: 20px;
}
@media (max-width: 480px) {
  .top-hospital-info__link {
    width: 15px;
    height: 15px;
  }
}
.top-hospital-info__link img {
  object-fit: contain;
}

.top-cta__img-contents {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
@media (max-width: 480px) {
  .top-cta__img-contents {
    grid-template-columns: 1fr 1fr;
  }
}
.top-cta__bg {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 100px 0;
  background: linear-gradient(rgba(51, 51, 51, 0.3), rgba(51, 51, 51, 0.3)), url(../img/top-bg.webp) center center/cover no-repeat;
}
@media (max-width: 480px) {
  .top-cta__bg {
    padding: 56px 0;
  }
}
.top-cta__contents {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 680px) {
  .top-cta__contents {
    flex-direction: column;
    gap: 28px;
  }
}
.top-cta__content {
  width: 45%;
}
@media (max-width: 1080px) {
  .top-cta__content {
    width: 48%;
  }
}
@media (max-width: 680px) {
  .top-cta__content {
    width: 80%;
  }
}
@media (max-width: 480px) {
  .top-cta__content {
    width: 90%;
  }
}
.top-cta__content a {
  width: 100%;
  display: flex;
}
.top-cta__icon-wrap {
  flex-shrink: 0;
  padding: 2em;
  background: #fff;
  border-radius: 10px 0 0 10px;
}
.top-cta__icon {
  width: 48px;
  aspect-ratio: 1/1;
}
@media (max-width: 1080px) {
  .top-cta__icon {
    width: 28px;
  }
}
.top-cta__icon img {
  object-fit: contain;
}
.top-cta__text-wrap {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #F2F6F5;
  gap: 20px;
  padding-right: 16px;
  border-radius: 0 10px 10px 0;
}
@media (max-width: 1080px) {
  .top-cta__text-wrap {
    justify-content: flex-start;
    padding-left: 20px;
  }
}
.top-cta__text {
  font-size: 22px;
  color: #004237;
}
@media (max-width: 1080px) {
  .top-cta__text {
    font-size: 16px;
  }
}

.news {
  padding: 120px 0;
  border-bottom: 1px solid #EFEFEF;
}
@media (max-width: 480px) {
  .news {
    padding-top: 80px;
  }
}
.news__cat-list {
  width: 90%;
  margin: 0 auto;
  display: flex;
  gap: 15px;
  justify-content: center;
}
@media (max-width: 480px) {
  .news__cat-list {
    width: 100%;
    gap: 10px;
    justify-content: flex-start;
  }
}
.news__cat-item {
  width: 25%;
  text-align: center;
  border-radius: 10px;
  border: 1px solid #CCD9D7;
  color: #4D7B73;
  display: flex;
  align-items: center;
}
.news__cat-item.active {
  border-color: #004237;
  color: #004237;
}
.news__cat-item a {
  padding: 10px;
  display: inline-block;
  width: 100%;
}
@media (max-width: 480px) {
  .news__cat-item a {
    padding: 4px 10px;
    font-size: 12px;
  }
}
.news__contents {
  margin-top: 56px;
}
.news__post-item a {
  display: flex;
  justify-content: space-between;
  padding: 28px 8px;
  border-top: 1px solid #004237;
  position: relative;
  align-items: center;
  gap: 10px;
}
.news__post-ttl {
  margin-top: 15px;
}
.news .m-more-btn__arrow {
  transform: translate(0);
}

.recruit-message {
  padding-top: 124px;
  padding-bottom: 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 480px) {
  .recruit-message {
    padding-top: 80px;
  }
}

.recruit-message__accent {
  position: absolute;
}

.recruit-message__accent--00 {
  top: 90%;
  right: 20%;
  width: 8vw;
  aspect-ratio: 1/1;
  transform: translate(0%, -100%);
  border-radius: 50%;
  background: radial-gradient(circle at center, transparent 35%, #E7F2F1 35%);
  z-index: -1;
}
@media (max-width: 1080px) {
  .recruit-message__accent--00 {
    width: 20vw;
    transform: translate(50%, -100%);
  }
}

.recruit-message__accent--01 {
  right: 0;
  top: 100px;
  width: 25vw;
}
@media (max-width: 1080px) {
  .recruit-message__accent--01 {
    width: 20vw;
  }
}

.recruit-message__accent--02 {
  left: 0;
  top: 124px;
  width: 25vw;
  transform: translateY(35%);
}
@media (max-width: 1080px) {
  .recruit-message__accent--02 {
    width: 20vw;
  }
}
@media (max-width: 480px) {
  .recruit-message__accent--02 {
    top: 80px;
  }
}

.recruit-message__accent--03 {
  right: 0;
  bottom: 0;
  width: 10vw;
}
@media (max-width: 1080px) {
  .recruit-message__accent--03 {
    width: 15vw;
  }
}

.recruit-message__accent--04 {
  right: 0;
  top: 160px;
  width: 40vw;
  height: 75%;
  background: #F8FCFF;
  z-index: -999;
}
@media (max-width: 480px) {
  .recruit-message__accent--04 {
    top: 120px;
  }
}

.recruit-message__accent--05 {
  left: 0;
  top: 30%;
  width: 30vw;
  height: 50vw;
  background: #F8FCFF;
  z-index: -999;
}
@media (max-width: 480px) {
  .recruit-message__accent--05 {
    top: 20%;
  }
}

.m-recruit-head {
  display: flex;
  flex-direction: column-reverse;
  gap: 12px;
  line-height: 1;
  font-size: 16px;
  justify-content: center;
  align-items: center;
}

.m-recruit-head__en {
  font-size: 38px;
  display: inline-block;
  color: #004237;
  font-weight: 400;
  font-family: "Lato", "serif";
}
@media (max-width: 480px) {
  .m-recruit-head__en {
    font-size: 28px;
  }
}

.recruit-message__copy {
  margin-top: 64px;
  color: #004237;
  font-size: 24px;
}
@media (max-width: 480px) {
  .recruit-message__copy {
    font-size: 20px;
  }
}

.recruit-message__text {
  margin-top: 54px;
  line-height: 2;
  margin-bottom: 48px;
}
@media (max-width: 480px) {
  .recruit-message__text {
    font-size: 14px;
  }
}

.recruit__info-movie {
  padding-top: 120px;
}
@media (max-width: 768px) {
  .recruit__info-movie {
    padding-top: 64px;
  }
}

.recruit__info-movie img {
  border-radius: 10px;
}

.recruit__info-movie .recruit-interviews__contents-movie::before {
  border-radius: 10px;
  background: rgba(101, 100, 100, 0.2);
}

.recruit__info-movie .recruit-interviews__contents-movie:hover::before {
  background: rgba(101, 100, 100, 0.1);
}

.recruit-interviews {
  padding-top: 200px;
}
@media (max-width: 480px) {
  .recruit-interviews {
    padding-top: 90px;
  }
}

.m-recruit-head {
  margin-bottom: 40px;
}

.recruit-interviews__contents {
  padding-top: 84px;
  padding-bottom: 112px;
}

.recruit-interviews__contents-head {
  font-size: 22px;
  text-align: center;
  position: relative;
  line-height: 1;
}
@media (max-width: 480px) {
  .recruit-interviews__contents-head {
    font-size: 18px;
  }
}

.recruit-interviews__contents-head::before {
  content: "";
  position: absolute;
  display: inline-block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 68px;
  line-height: 1;
  opacity: 0.2;
  font-weight: 400;
  font-family: "Lato", "serif";
}
@media (max-width: 480px) {
  .recruit-interviews__contents-head::before {
    font-size: 48px;
  }
}

.recruit-interviews__contents-head--doctor::before {
  content: "Doctor";
  color: #C5CB0C;
}

.recruit-interviews__contents-head--pharmacist::before {
  content: "Pharmacist";
  color: #C5CB0C;
}

.recruit-interviews__contents-head--nurse::before {
  content: "Nurse";
  color: #81C3DD;
}

.recruit-interviews__contents-head--dental::before {
  content: "Dental";
  color: #81C3DD;
}

.recruit-interviews__contents-head--physiotherapist::before {
  content: "Physiotherapist";
  color: #95D2D7;
}
@media (max-width: 480px) {
  .recruit-interviews__contents-head--physiotherapist::before {
    content: "Physio\atherapist";
    white-space: pre;
  }
}

.recruit-interviews__contents--doctor {
  background: #FCFCF3;
}

.recruit-interviews__contents--pharmacist {
  background: #FCFCF3;
}

.recruit-interviews__contents--nurse {
  background: #EDF6FA;
}

.recruit-interviews__contents--dental {
  background: #EDF6FA;
}

.recruit-interviews__contents--physiotherapist {
  background: #EDF8F8;
}

.recruit-interviews__contents-list {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.recruit-interviews__contents-item {
  position: relative;
  border-radius: 10px;
  padding: 20px 30px;
  background: #fff;
  display: grid;
  grid-template-columns: 0.7fr 1fr 1fr;
  gap: 20px;
  box-shadow: 0px 5px 8px 0px rgba(112, 112, 112, 0.2);
}
@media (max-width: 768px) {
  .recruit-interviews__contents-item {
    padding: 10px 15px;
    gap: 10px;
  }
}
@media (max-width: 480px) {
  .recruit-interviews__contents-item {
    grid-template-columns: 1fr;
  }
}

.recruit-interviews__contents-hum {
  transform: translateY(20px);
  width: 85%;
}
.recruit-interviews__contents-hum img {
  object-fit: contain;
  object-position: bottom;
}
@media (max-width: 768px) {
  .recruit-interviews__contents-hum {
    width: 100%;
    transform: translateY(10px);
  }
}
@media (max-width: 480px) {
  .recruit-interviews__contents-hum {
    width: 55%;
    margin: 0 auto;
  }
}

.recruit-interviews__contents-img-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}

.recruit-interviews__contents-info-img img {
  border-radius: 4px;
}

.recruit-interviews__contents-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.recruit-interviews__contents-copy {
  font-size: 20px;
  padding: 8px;
}
@media (max-width: 768px) {
  .recruit-interviews__contents-copy {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .recruit-interviews__contents-copy {
    font-size: 18px;
  }
}

.recruit-interviews__contents-copy--doctor {
  background: #F9FAE7;
  color: #C5CB0C;
}

.recruit-interviews__contents-copy--pharmacist {
  background: #F9FAE7;
  color: #C5CB0C;
}

.recruit-interviews__contents-copy--nurse {
  background: #EDF6FA;
  color: #4BA9CE;
}

.recruit-interviews__contents-copy--dental {
  background: #EDF6FA;
  color: #4BA9CE;
}

.recruit-interviews__contents-copy--physiotherapist {
  background: #E9F6F4;
  color: #23A895;
}

.recruit-interviews__contents-name {
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 400;
  margin-top: 8px;
}
@media (max-width: 768px) {
  .recruit-interviews__contents-name {
    font-size: 15px;
    margin-top: 6px;
  }
}

.recruit-interviews__contents-name::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 70%;
}

.recruit-interviews__contents-name--doctor::before {
  background: #C5CB0C;
}

.recruit-interviews__contents-name--pharmacist::before {
  background: #C5CB0C;
}

.recruit-interviews__contents-name--nurse::before {
  background: #4BA9CE;
}

.recruit-interviews__contents-name--dental::before {
  background: #4BA9CE;
}

.recruit-interviews__contents-name--physiotherapist::before {
  background: #23A895;
}

.is-hidden {
  display: none;
}

.recruit-interviews__contents-item--first {
  position: relative;
}

.recruit-interviews__contents-item--first::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
  background: linear-gradient(to top, rgb(255, 255, 255), rgba(255, 255, 255, 0));
  /* ←白のフィルター感 */
  z-index: 1;
  pointer-events: none;
  /* 必要に応じて：クリックを透過させたい場合 */
}

.recruit-interviews__contents-movie {
  position: relative;
}
.recruit-interviews__contents-movie::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(101, 100, 100, 0.4);
}
.recruit-interviews__contents-movie::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: url("../img/movie-btn.png") center center/contain no-repeat;
  z-index: 10;
}

.recruit-interviews__contents-movie.is-playing::before,
.recruit-interviews__contents-movie.is-playing::after {
  display: none;
}

/* フェードイン用アニメーション */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* フィルターをフェードで消したい時 */
.fade-out-filter::before {
  animation: fadeOutFilter 0.6s ease forwards;
}

@keyframes fadeOutFilter {
  to {
    opacity: 0;
  }
}
.toggleInterviewBtn {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 260px;
  width: fit-content;
  text-align: center;
  padding: 18px 0;
  border-radius: 50px;
  color: #007F94;
  background: #fff;
  box-shadow: 0px 5px 8px 0px rgba(112, 112, 112, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: 0.3s;
  z-index: 10;
}

.toggleInterviewBtn-arrow {
  transition: 0.3s;
  position: relative;
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50px;
  border: 1px solid #007F94;
}

.toggleInterviewBtn-arrow::before {
  transition: 0.3s;
  position: absolute;
  content: "";
  display: inline-block;
  top: 40%;
  left: 50%;
  width: 4px;
  height: 4px;
  border-top: 1px solid #007F94;
  border-right: 1px solid #007F94;
  transform: translate(-50%, -50%) rotate(135deg);
}

.recruit-charm {
  padding-top: 120px;
}

.recruit-charm__contents {
  padding-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 480px) {
  .recruit-charm__contents {
    grid-template-columns: 1fr;
    gap: 96px;
  }
}

.recruit-charm__content {
  padding: 0 20px;
}
@media (max-width: 480px) {
  .recruit-charm__content {
    padding: 0;
  }
}

.recruit-charm__content-img {
  width: 70%;
  margin: 0 auto;
  position: relative;
}

.recruit-charm__content-img-num {
  display: inline-block;
  text-align: center;
  font-size: 16px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -90%);
  font-weight: 400;
}
@media (max-width: 480px) {
  .recruit-charm__content-img-num {
    font-size: 14px;
  }
}

.recruit-charm__content-img-num--large {
  font-size: 32px;
  line-height: 1;
}
@media (max-width: 480px) {
  .recruit-charm__content-img-num--large {
    font-size: 24px;
  }
}

.recruit-charm__content-img-num--01 {
  color: #15C3AD;
}

.recruit-charm__content-img-num--02 {
  color: #4ACD91;
}

.recruit-charm__content-img-num--03 {
  color: #4BA9CE;
}

.recruit-charm__copy {
  margin-top: 33px;
  font-size: 22px;
  text-align: center;
}
@media (max-width: 1080px) {
  .recruit-charm__copy {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .recruit-charm__copy {
    font-size: 18px;
  }
}

.recruit-charm__copy--01 {
  color: #15C3AD;
}

.recruit-charm__copy--02 {
  color: #4ACD91;
}

.recruit-charm__copy--03 {
  color: #4BA9CE;
}

.recruit-charm__text {
  margin-top: 22px;
}
@media (max-width: 480px) {
  .recruit-charm__text {
    font-size: 14px;
    text-align: center;
  }
}

.cta {
  border-bottom: 1px solid #EFEFEF;
  padding-top: 170px;
  padding-bottom: 120px;
}

.recruit-cta {
  background: #EDF6FA;
  border-radius: 10px;
  padding-bottom: 70px;
}

.recruit-cta__head {
  color: #4BA9CE;
  display: flex;
  flex-direction: column;
  text-align: center;
  transform: translateY(-50%);
  font-size: 22px;
}
@media (max-width: 480px) {
  .recruit-cta__head {
    font-size: 18px;
    transform: translateY(-40%);
  }
}

.recruit-cta__head-en {
  font-size: 63px;
  font-family: "Lato", "serif";
}
@media (max-width: 480px) {
  .recruit-cta__head-en {
    font-size: 40px;
  }
}

.recruit-cta__text {
  text-align: center;
  font-size: 16px;
}
@media (max-width: 480px) {
  .recruit-cta__text {
    font-size: 14px;
  }
}

.recruit-cta__contents {
  width: 90%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: center;
  padding-top: 70px;
  margin: 0 auto;
  gap: 20px;
}
@media (max-width: 1080px) {
  .recruit-cta__contents {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .recruit-cta__contents {
    grid-template-columns: 1fr;
  }
}

.recruit-cta__tel {
  font-size: 44px;
  font-weight: 400;
}
@media (max-width: 480px) {
  .recruit-cta__tel {
    font-size: 28px;
  }
}

.recruit-cta__reception-hours {
  font-size: 14px;
}
@media (max-width: 1080px) {
  .recruit-cta__reception-hours {
    display: inline-block;
    text-align: center;
  }
}

.recruit-cta__content-link a {
  display: flex;
  color: #fff;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  position: relative;
  gap: 8px;
}
.recruit-cta__content-link a .m-more-btn__arrow {
  width: 32px;
  transform: translateX(0%);
  background: transparent;
  border-color: #fff;
}
.recruit-cta__content-link a .m-more-btn__arrow span::before {
  background: #fff;
}
.recruit-cta__content-link a .m-more-btn__arrow span::after {
  border-color: #fff;
}

.recruit-cta__content-link {
  font-size: 14px;
}
@media (max-width: 480px) {
  .recruit-cta__content-link {
    font-size: 12px;
  }
}

.recruit-cta__content-link--blank a {
  position: relative;
  min-width: 300px;
  max-width: 350px;
  margin: 0 auto;
  margin-top: 80px;
  justify-content: center;
  background: rgb(0, 66, 55);
  transition: 0.3s;
  border: 1px solid #004237;
}
.recruit-cta__content-link--blank a:hover {
  background: rgba(0, 66, 55, 0.8);
}

.recruit-cta__content-link--blank .m-more-btn__arrow--absolute {
  top: 25%;
}

.recruit-cta__content-link--01 a {
  background: rgb(197, 203, 12);
}

.recruit-cta__content-link--02 a {
  background: rgb(75, 169, 206);
}

.recruit-cta__content-link--03 a {
  background: rgb(79, 180, 189);
}

.video-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.video-item {
  width: 100%;
  cursor: pointer;
  position: relative;
  pointer-events: auto;
}
.video-item img {
  width: 100%;
  display: block;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.video-item video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: none;
}

.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}
.video-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}
.video-modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 96%;
  max-width: 920px;
  background: #fff;
  padding: 5px;
  border-radius: 4px;
  z-index: 1001;
}
.video-modal__close {
  position: absolute;
  top: -35px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  padding: 5px;
  z-index: 1002;
}
.video-modal video {
  width: 100%;
  height: auto;
  max-height: 88vh;
  display: block;
  background: #000;
}

.contact {
  padding: 120px 0;
}
@media (max-width: 480px) {
  .contact {
    padding: 80px 0;
  }
}

.contact__info {
  font-size: 14px;
  text-align: center;
  line-height: 2;
}
@media (max-width: 480px) {
  .contact__info {
    font-size: 13px;
  }
}

.contact-form {
  margin-top: 64px;
  width: 100%;
}

.contact-form__form-group {
  display: flex;
  margin-bottom: 24px;
  align-items: baseline;
  gap: 30px;
}
@media (max-width: 480px) {
  .contact-form__form-group {
    margin-bottom: 40px;
    flex-direction: column;
    gap: 10px;
  }
}

.contact-form__form-group label {
  padding: 1em;
  display: flex;
  justify-content: space-between;
  flex-shrink: 0;
  min-width: 240px;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .contact-form__form-group label {
    min-width: inherit;
    padding: 0;
    align-items: center;
  }
}

.contact-form__radio-group--radio label {
  justify-content: flex-start;
  width: fit-content;
  min-width: inherit;
}

@media (max-width: 768px) {
  .contact-form__radio-group--radio {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
  }
}

.contact-form input,
.contact-form textarea {
  font-size: 16px;
  width: 100%;
  display: block;
  padding: 1em;
  border: inherit;
  background: #F6F6F6;
}
@media (max-width: 480px) {
  .contact-form input,
  .contact-form textarea {
    padding: 0.5em;
  }
}

.contact-form textarea {
  height: 15em;
}

.wpcf7-form-control-wrap {
  width: 100%;
}

.contact-form__radio-group--radio input {
  appearance: auto;
  margin-right: 6px;
  padding: 0;
  width: 13px;
  height: 13px;
}

.contact-form__radio-group--radio label {
  width: auto;
  padding: 16px 0;
  margin-left: 16px;
  display: flex;
  align-items: center;
}
.contact-form__radio-group--radio label:hover {
  cursor: pointer;
}
@media (max-width: 480px) {
  .contact-form__radio-group--radio label {
    padding: 0;
    margin-top: 20px;
    margin-left: 0;
  }
}

.contact-form__required {
  display: inline-block;
  border: 1px solid #FACCD0;
  color: #E70113;
  padding: 3.5px 9px;
  border-radius: 4px;
  margin-left: 16px;
  font-size: 12px;
}

.contact-form__optional {
  display: inline-block;
  border: 1px solid #DADADA;
  color: #656464;
  padding: 3.5px 9px;
  border-radius: 4px;
  margin-left: 16px;
  font-size: 12px;
}

.phone-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wpcf7-submit {
  color: #004237;
  text-align: center;
  transition: 0.3s;
  border: none !important;
  background: transparent !important;
}
@media (max-width: 480px) {
  .wpcf7-submit {
    padding: 1em !important;
  }
}

.wpcf7-submit:hover {
  background: #004237 !important;
  color: #fff;
}

.m-submit-btn {
  position: relative;
  border-radius: 4px;
  width: 90%;
  max-width: 392px;
  border: 1px solid #004237;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  margin-top: 60px;
}
.m-submit-btn .m-more-btn__arrow {
  width: 32px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.wpcf7-spinner {
  display: none;
}

.contact__info-link {
  width: fit-content;
  display: block;
  text-align: center;
  margin: 0 auto;
  margin-top: 60px;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border-color: transparent !important;
  text-align: center;
  font-size: 13px;
  color: #E70113;
}

.wpcf7-previous {
  font-size: 13px !important;
  background: transparent !important;
  text-align: center;
  margin-top: 32px;
}

.platform-page {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .platform-page {
    padding: 40px 0;
  }
}

.platform-page__head {
  font-size: 22px;
  text-align: center;
}

.platform-page__content {
  margin-top: 60px;
}

.platform-page p {
  margin-top: 2em;
  line-height: 1.5;
}

.platform-page__list {
  padding: 40px 0;
}/*# sourceMappingURL=main.css.map */