@charset "UTF-8";

.main__area {
  position: relative;
}

.common__page__list > ul > li > a > p::after {
  width: 24px;
  height: 24px;
  background-image: url(../../img/common/icon_arrow_circle_right.svg);
  background-repeat: no-repeat;
  background-size: cover;
}

.medical__btn__head__list>li .btn:before {
  width: 24px;
  height: 24px;
  background-image: url(../../img/common/icon_arrow_circle_right.svg);
  background-repeat: no-repeat;
  background-size: cover;
}

/* ヘッダー */
.header-parts {
  position: absolute;
  top: -20px;
  right: 0.2rem;
  display: flex;
  gap: 20px;
  width: fit-content;
}
@media screen and (max-width:767.9px) {
  .header-parts {
    top: -0.75rem;
    right: 0.1rem;
    flex-direction: column;
    gap: 10px;
    text-align: right;
  }
}
.signout > a {
  position: relative;
  top: 0;
  right: 0;
}
.company a {
  display: flex;
  width: fit-content;
  gap: 7px;
  color: #4B4B4B;
}
.company a img {
  display: block;
  width: 22px;
}

/* フッター */
.footer {
  position: static;
  height: unset;
  font-size: unset;
  background-color: white;
  padding: 80px 0 60px;
}
.corporate-logo {
  display: block;
  width: 80%;
  max-width: 500px;
  margin-inline: auto;
}
.corporate-logo img {
  display: block;
  max-width: 100%;
}
.corporate {
  text-align: center;
}
.corporate > a {
  position: relative;
  display: inline-block;
  color: #005bac;
}
.corporate > a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -1em;
  translate: 0 -50%;
  width: 10px;
  height: 8px;
  background-image: url(../../img/common/icon_tab-separate-white.svg);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767.9px) {
  .footer {
    padding: 40px 0;
  }
  .corporate-logo {
    max-width: 240px;
    margin-block-end: unset;
  }
  #page-top {
    bottom: 20px;
  }
}