/* ---------------------------
popup alert
------------------------------ */
.popup__alert {
  position: fixed;
  z-index: 99;
  bottom: 60px;
  right: 6.5px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  background: #fff;
  border-radius: 3px;
  width: 172px;
  transition: all 0.5s;
}
.popup__alert.hide {
  opacity: 0;
  visibility: hidden;
}

.popup__alert__close {
  position: absolute;
  z-index: 2;
  width: 20px;
  height: 20px;
  top: -5.5px;
  right: -6px;
  border-radius: 50%;
  line-height: 0;
  cursor: pointer;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  
  /* 白い円の背景 */
  background-color: #fff;
  
  /* 疑似要素で×印を表示（maskプロパティ使用） */
}

.popup__alert__close::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color); /* ×印の色 */
  mask: url("../img/shared/popup_close_x_only.svg") no-repeat center center;
  mask-size: contain;
  -webkit-mask: url("../img/shared/popup_close_x_only.svg") no-repeat center center;
  -webkit-mask-size: contain;
}

.popup__alert__content {
  text-align: center;
  position: relative;
  color: var(--primary-color);
}
.popup__alert__content::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  bottom: 5px;
  right: 5px;
  border: 3px solid;
}
.popup__alert__content a {
  padding: 21px 0;
  display: block;
  text-decoration: none;
}
.popup__alert__content a:hover {
  opacity: 0.8;
}

.popup__alert__sub-title {
  font-size: 17px;
  line-height: 25px;
  font-weight: 700;
}

.popup__alert__title {
  font-size: 34px;
  line-height: 50px;
  font-weight: 900;
  margin: -5px 0 0;
}

@media screen and (max-width: 560px) {
  .popup__alert {
    bottom: 100px;
  }
  .popup__alert__sub-title {
    font-size: 12px;
    line-height: 18px;
  }
  .popup__alert__title {
    font-size: 25px;
    line-height: 37px;
  }
}
/* ---------------------------
key
------------------------------ */
#key {
  position: relative;
}

.key__img {
  height: 563px;
}
.key__img img {
  -o-object-position: top center;
     object-position: top center;
}

.key__wrap {
  width: 1000px;
  position: absolute;
  bottom: 31px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.key__list {
  display: flex;
  gap: 0 15px;
}
.key__list li {
  width: 130px;
  height: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  color: var(--primary-color);
  font-weight: 700;
  font-size: 19px;
  line-height: 24px;
  border-radius: 50%;
}
.key__list li small {
  font-size: 13px;
  line-height: 22px;
}
.key__list li span {
  font-size: 17px;
  line-height: 22px;
}

.key__title {
  margin: 7px 0 20px;
  color: #fff;
  font-size: 45px;
  line-height: 1;
  font-weight: 700;
}
.key__title span {
  font-size: 80px;
}
.key__title small {
  font-size: 62px;
}

.key__btn {
  width: 600px;
}
.key__btn a {
  display: flex;
  align-items: center;
  gap: 0 26px;
  background: #fff;
  border-radius: 100px;
  height: 76px;
  font-weight: 700;
  text-decoration: none;
  padding: 0 0 0 24px;
  transition: all 0.5s;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.key__btn a:hover {
  opacity: 0.8;
}
.key__btn a span:nth-child(1) {
  background: var(--primary-color);
  width: 117px;
  font-size: 22px;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  padding: 7px 0 6px;
  border-radius: 100px;
}
.key__btn a span:nth-child(2) {
  font-size: 27px;
  line-height: 40px;
  display: flex;
  align-items: center;
  color: #333;
}
.key__btn a span:nth-child(2) small {
  font-size: inherit;
}
.key__btn a span:nth-child(2):after {
  content: "";
  background: url("../img/shared/arrow.svg") no-repeat center right/100% auto;
  width: 11px;
  height: 20px;
  margin-left: 13px;
}

@media screen and (max-width: 560px) {
  .key__img {
    height: auto;
  }
  .key__wrap {
    bottom: 28px;
    width: 462px;
  }
  .key__list {
    gap: 0 10px;
    justify-content: center;
  }
  .key__list li {
    width: 120px;
    height: 120px;
    font-weight: 900;
    font-size: 21px;
    line-height: 27px;
  }
  .key__list li small:not(.ps) {
    font-size: 16px;
    line-height: 25px;
  }
  .key__list li small.ps {
    font-size: 12px;
    line-height: 1.2;
  }
  .key__list li small.ps + span {
    font-size: 18px;
    line-height: 21px;
  }
  .key__list li span {
    font-size: 21px;
    line-height: 25px;
  }
  .key__list li span.ps {
    font-size: 16px;
  }
  .key__list li:nth-child(3) {
    font-size: 18px;
    line-height: 21px;
  }
  .key__title {
    font-size: 40px;
    line-height: 50px;
    text-align: center;
    margin: 3px 0 12px;
  }
  .key__title span, .key__title small {
    font-size: inherit;
  }
  .key__btn {
    max-width: 100%;
  }
  .key__btn a {
    gap: 11px;
  }
  .key__btn a span small {
    display: none;
  }
}
/* ---------------------------
sc job
------------------------------ */
.sc-job {
  background: var(--primary-lightest);
  padding: 60px 0;
}

.sc-job__wrap {
  width: 985px;
}

.sc-job__title {
  margin: 0 0 20px;
}
.sc-job__title ~ .sc-job__title {
  margin-top: 100px;
}

.sc-job__button {
  margin-top: 20px;
}
@media screen and (min-width: 561px) {
  .sc-job__button a {
    background: var(--primary-light);
  }
}

@media screen and (max-width: 560px) {
  .sc-job__title ~ .sc-job__title {
    margin-top: 70px;
  }
  .sc-job__button {
    width: 252px;
  }
}
/* ---------------------------
sc job search
------------------------------ */
.sc-job__search {
  width: 979px;
  max-width: 100%;
  background: var(--primary-accent);
  box-sizing: border-box;
  padding: 20px 30px 20px 31px;
  margin-bottom: 100px;
}

.sc-job__search__link {
  margin: 0 9px 9px 0;
  text-align: right;
}
.sc-job__search__link a {
  display: inline-block;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.sc-job__search__link a:hover {
  text-decoration: none;
}

.sc-job__search__form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  align-items: start;
}

/* 2項目の場合 */
.sc-job__search__form--2items {
  grid-template-columns: minmax(220px, 1fr) minmax(220px, 1fr) auto;
  grid-template-rows: 1fr;
  gap: 15px;
}

.sc-job__search__form--2items .sc-job__search__form__item:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

.sc-job__search__form--2items .sc-job__search__form__item:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.sc-job__search__form--2items .sc-job__search__form__button {
  grid-column: 3;
  grid-row: 1;
  margin-left: 11px;
}

/* 3項目の場合 */
.sc-job__search__form--3items {
  grid-template-columns: minmax(220px, 1fr) minmax(220px, 1fr) minmax(220px, 1fr) auto;
  grid-template-rows: 1fr;
  gap: 15px;
}

.sc-job__search__form--3items .sc-job__search__form__item:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

.sc-job__search__form--3items .sc-job__search__form__item:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.sc-job__search__form--3items .sc-job__search__form__item:nth-child(3) {
  grid-column: 3;
  grid-row: 1;
}

.sc-job__search__form--3items .sc-job__search__form__button {
  grid-column: 4;
  grid-row: 1;
  margin-left: 11px;
}

/* 4項目の場合 */
.sc-job__search__form--4items {
  grid-template-columns: minmax(220px, 1fr) minmax(220px, 1fr) minmax(220px, 1fr) auto;
  grid-template-rows: 1fr 1fr;
  gap: 15px;
}

.sc-job__search__form--4items .sc-job__search__form__item:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

.sc-job__search__form--4items .sc-job__search__form__item:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.sc-job__search__form--4items .sc-job__search__form__item:nth-child(3) {
  grid-column: 3;
  grid-row: 1;
}

.sc-job__search__form--4items .sc-job__search__form__item:nth-child(4) {
  grid-column: 1;
  grid-row: 2;
}

.sc-job__search__form--4items .sc-job__search__form__button {
  grid-column: 4;
  grid-row: 1;
  align-self: start;
  margin-left: 11px;
}

.sc-job__search__form__item {
  width: 100%;
  min-width: 220px;
}
.sc-job__search__form__item select {
  width: 100%;
  border: 0;
  border-radius: 3px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  padding: 10px 0 10px 15px;
  color: #3B4043;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url("../img/shared/arrow_up2.svg") no-repeat right 14px center, #fff;
}

.sc-job__search__form__button {
  min-width: 216px;
  width: auto;
  box-sizing: border-box;
  border-radius: 5px;
  border: 2px solid #fff;
  background: var(--primary-color);
  color: #fff;
  transition: all 0.5s;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  padding: 8px 20px;
  text-align: center;
  outline: none;
  position: relative;
  cursor: pointer;
  white-space: nowrap;
}
.sc-job__search__form__button:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.5s;
  right: 14px;
  background: url("../img/shared/arrow_right.svg") no-repeat right center/100% auto;
  width: 11px;
  height: 10px;
}
.sc-job__search__form__button:hover {
  color: var(--primary-color);
  background: #fff;
  border-color: var(--primary-color);
}
.sc-job__search__form__button:hover:after {
  mask: url(../img/shared/arrow_right2.svg) no-repeat center right / 100% auto;
  -webkit-mask: url(../img/shared/arrow_right2.svg) no-repeat center right / 100% auto;
  background: var(--primary-color);
}

@media screen and (max-width: 560px) {
  .sc-job__search {
    padding: 29px 20px 19px;
    display: flex;
    flex-direction: column-reverse;
  }
  .sc-job__search__link {
    margin: 9px 0 0;
  }
  .sc-job__search__form {
    display: flex;
    flex-direction: column;
    gap: 9px;
  }
  
  /* 2項目の場合：1行で表示 */
  .sc-job__search__form--2items {
    display: flex;
    flex-direction: row;
    gap: 9px;
    flex-wrap: wrap;
  }
  
  .sc-job__search__form--2items .sc-job__search__form__item {
    flex: 1;
    min-width: 0;
  }
  
  .sc-job__search__form--2items .sc-job__search__form__button {
    width: 100%;
    margin-top: 9px;
    margin-left: 0;
    order: 10;
  }
  
  /* 3項目の場合：1行で表示 */
  .sc-job__search__form--3items {
    display: flex;
    flex-direction: row;
    gap: 9px;
    flex-wrap: wrap;
  }
  
  .sc-job__search__form--3items .sc-job__search__form__item {
    flex: 1;
    min-width: 0;
  }
  
  .sc-job__search__form--3items .sc-job__search__form__button {
    width: 100%;
    margin-top: 9px;
    margin-left: 0;
    order: 10;
  }
  
  /* 4項目の場合：2行2列で表示 */
  .sc-job__search__form--4items {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 9px;
    flex-direction: unset !important;
    flex-wrap: unset !important;
  }
  
  .sc-job__search__form--4items .sc-job__search__form__item {
    width: 100%;
    min-width: 0;
    flex: unset !important;
  }
  
  .sc-job__search__form--4items .sc-job__search__form__item:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }
  
  .sc-job__search__form--4items .sc-job__search__form__item:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }
  
  .sc-job__search__form--4items .sc-job__search__form__item:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
  }
  
  .sc-job__search__form--4items .sc-job__search__form__item:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
  }
  
  .sc-job__search__form--4items .sc-job__search__form__button {
    grid-column: 1 / -1;
    grid-row: 3;
    width: 100%;
    margin-top: 9px;
    margin-left: 0;
    order: unset !important;
  }
  
  .sc-job__search__form__item {
    width: 100%;
    min-width: unset;
  }
  
  .sc-job__search__form__item.pc {
    display: none;
  }
  
  .sc-job__search__form__item.sp {
    display: block;
    width: 150px;
  }
  
  .sc-job__search__form__item.sp + .sc-job__search__form__item.sp {
    margin-left: 5px;
  }
  
  .sc-job__search__form__item select {
    padding-right: 54px;
  }
  .sc-job__search__form__button {
    width: 100%;
    margin-left: 0;
    margin-top: 9px;
  }
}

/* ---------------------------
sc job search wrapper
------------------------------ */
.sc-job__search__wrapper {
  width: 979px;
  max-width: 100%;
  margin-bottom: 100px;
}

/* ---------------------------
sc job search tabs
------------------------------ */
.sc-job__search__tabs {
  display: flex;
  margin-bottom: 2px;
  z-index: 2;
  position: relative;
}

.sc-job__search__tab {
  padding: 10px 85px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid #e0e0e0;
  position: relative;
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  margin-right: 4px;
}

.sc-job__search__tab--active {
  background: var(--primary-accent);
  color: #fff;
  border-color: var(--primary-accent);
  z-index: 3;
  position: relative;
}

.sc-job__search__tab--inactive {
  background: #fff;
  color: var(--primary-accent);
  border-color: var(--primary-accent);;
}

.sc-job__search__tab:hover:not(.sc-job__search__tab--active) {
  background: #f5f5f5;
  color: #333;
}

/* タブ機能がある場合の検索エリアスタイル */
.sc-job__search__wrapper--tabs .sc-job__search {
  border-top-left-radius: 0;
  margin-top: -2px;
  position: relative;
  z-index: 1;
}

/* working-days項目の表示/非表示制御 */
.sc-job__search__form__item--working-days {
  transition: all 0.3s ease;
  opacity: 1;
  max-height: 50px;
  overflow: hidden;
}

.sc-job__search__form__item--working-days.hidden {
  opacity: 0;
  max-height: 0;
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 560px) {
  .sc-job__search__wrapper {
    margin-bottom: 70px;
  }
  
  .sc-job__search__tab {
    padding: 12px 20px;
    font-size: 18px;
    border-radius: 6px 6px 0 0;
    margin-right: 2px;
  }
  
  .sc-job__search__wrapper--tabs .sc-job__search {
    border-top-left-radius: 0;
  }
}
/* ---------------------------
sc address
------------------------------ */
.sc-address {
  padding: 60px 0;
}

.sc-address__title-sc {
  margin-bottom: 20px;
}

.sc-address__title {
  font-weight: 700;
  margin: 0 16px 14px;
  font-size: 22px;
  line-height: 30px;
}
.sc-address__title ~ .sc-address__title {
  margin-top: 36px;
}

.sc-address__list-popular {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sc-address__list-popular__item {
  width: 158px;
}
.sc-address__list-popular__item a {
  box-sizing: border-box;
  color: var(--primary-color);
  border: 3px solid;
  border-radius: 5px;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 500;
  display: block;
  text-decoration: none;
  height: 99px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
}
.sc-address__list-popular__item a:hover {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

.sc-address__list-all {
  margin: 0 16px;
}
.sc-address__list-all dl {
  display: flex;
  align-items: flex-start;
}
.sc-address__list-all dl + dl {
  margin-top: 8px;
}
.sc-address__list-all dl dt {
  width: 110px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
}
.sc-address__list-all dl dd {
  width: calc(100% - 110px);
}
.sc-address__list-all dl dd a {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
  position: relative;
  margin-right: 24px;
}
.sc-address__list-all dl dd a::before {
  content: "";
  position: absolute;
  height: 16px;
  top: 50%;
  transform: translateY(-50%);
  right: -13px;
  width: 1px;
  background: #707070;
}
.sc-address__list-all dl dd a:last-child {
  margin-right: 0;
}
.sc-address__list-all dl dd a:last-child::before {
  display: none;
}
.sc-address__list-all dl dd a:hover {
  text-decoration: none;
}

@media screen and (max-width: 560px) {
  .sc-address__title {
    margin-left: 0;
    margin-right: 0;
  }
  .sc-address__list-popular__item {
    width: 160px;
  }
  .sc-address__list-popular__item a {
    height: 83px;
  }
  .sc-address__list-all {
    margin: 0;
  }
  .sc-address__list-all dl {
    display: block;
  }
  .sc-address__list-all dl + dl {
    margin-top: 14px;
  }
  .sc-address__list-all dl dd, .sc-address__list-all dl dt {
    width: 100%;
  }
  .sc-address__list-all dl dt {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 0;
  }
  .sc-address__list-all dl dd {
    line-height: 28px;
    font-size: 19px;
  }
  .sc-address__list-all dl dd a {
    text-decoration: none;
  }
}
/* ---------------------------
sc feature
------------------------------ */
.sc-feature {
  padding: 60px 0;
}

.sc-feature__title {
  margin: 0 0 20px;
}

.sc-feature__button {
  margin-top: 43px;
}

@media screen and (max-width: 560px) {
  .sc-feature__title {
    margin: 0 0 10px;
  }
  .sc-feature__wrap {
    padding: 0 29px;
  }
}
/* ---------------------------
banner-common
------------------------------ */
.banner-common__sub-title {
  font-size: 31px;
  line-height: 44px;
  font-weight: 700;
}

.banner-common__text {
  font-size: 16px;
  line-height: 30px;
  margin: 14px 0 15px;
}

@media screen and (max-width: 560px) {
  .banner-common__text {
    margin: 14px 30px 15px 50px;
  }
}
/* ---------------------------
sc pharmacist
------------------------------ */
.sc-pharmacist {
  padding: 60px 0;
  background: var(--primary-lightest);
  text-align: center;
}

.sc-pharmacist__title {
  font-size: 31px;
  font-weight: 700;
  line-height: 44px;
}

.sc-pharmacist__txt {
  margin: 20px auto 45px;
  line-height: 30px;
  width: 716px;
  max-width: 100%;
}

.sc-pharmacist__sub-title {
  font-size: 24px;
  line-height: 1.5;
  margin: 0 0 19px;
  font-weight: 700;
}

.sc-pharmacist__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.sc-pharmacist__list__item {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  background: #fff;
  width: 320px;
  box-sizing: border-box;
  padding: 15px 16px 16px;
}

.sc-pharmacist__list__item__stt {
  font-weight: 700;
  font-size: 32px;
  line-height: 38px;
}

.sc-pharmacist__list__item__img {
  margin: 8px 6px 12px 14px;
  height: 167px;
}

.sc-pharmacist__list__item__sub-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 30px;
}

.sc-pharmacist__list__item__title {
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
  margin: 0 0 4px;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sc-pharmacist__list__item__txt {
  margin: 0 1px 0 14px;
  text-align: left;
  line-height: 30px;
}

@media screen and (max-width: 560px) {
  .sc-pharmacist__list__item {
    width: 100%;
    padding: 6px 40px 24px;
  }
  .sc-pharmacist__txt {
    text-align: left;
    margin: 20px 20px 44px;
  }
  .sc-pharmacist__list__item__stt {
    font-size: 40px;
    line-height: 1.5;
  }
  .sc-pharmacist__list__item__img {
    height: 222px;
    margin: 5px 0 9px;
  }
  .sc-pharmacist__list__item__sub-title {
    font-size: 19px;
    line-height: 30px;
  }
  .sc-pharmacist__list__item__title {
    font-size: 23px;
    line-height: 30px;
    margin: 7px 0 10px;
    min-height: 60px;
  }
  .sc-pharmacist__list__item__txt {
    margin: 0;
  }
}
/* ---------------------------
sc hiring
------------------------------ */
.sc-hiring {
  padding: 60px 0;
}

.sc-hiring__title {
  margin-bottom: 20px;
}

.sc-hiring__button {
  margin-top: 72px;
}

@media screen and (max-width: 560px) {
  .sc-hiring__button {
    margin-top: 48px;
  }
}
/* ---------------------------
sc useful
------------------------------ */
.sc-useful {
  padding: 60px 0;
  background: var(--primary-lightest);
}

.sc-useful__title {
  margin-bottom: 20px;
}

.sc-useful__button {
  margin-top: 72px;
}

@media screen and (max-width: 560px) {
  .sc-useful__button {
    margin-top: 48px;
  }
}
/* ---------------------------
sc other site
------------------------------ */
.sc-other-site {
  padding: 60px 0;
  background: var(--primary-lightest);
}

.sc-other-site__wrap {
  width: 940px;
}

.sc-other-site__flex {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.sc-other-site__item {
  width: 300px;
  overflow: hidden;
  border-radius: 7px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

@media screen and (max-width: 560px) {
  .sc-other-site__flex {
    padding: 0 20px;
  }
  .sc-other-site__item {
    width: 100%;
  }
  .sc-other-site {
    padding: 40px 0;
  }
}
/***contact****/
.bk-contact {
  padding: 25px 20px 130px;
}
.bk-contact__title {
  text-align: center;
  margin-bottom: 50px;
  line-height: 30px;
}

@media screen and (max-width: 560px) {
  .bk-contact {
    padding: 40px 30px 35px;
  }
  .bk-contact__title {
    margin-bottom: 25px;
    font-size: 21px;
    line-height: 39px;
  }
  .bk-contact__form {
    padding: 60px 20 58px;
  }
  .bk-contact__form__row {
    padding: 35px 0;
    flex-wrap: wrap;
  }
  .bk-contact__form__caption {
    width: 100%;
    justify-content: flex-start;
    box-sizing: border-box;
    padding-top: 0;
    font-size: 21px;
    margin-bottom: 8px;
  }
  .bk-contact__form__caption span {
    font-size: 17px;
    width: 42px;
    height: 22px;
    line-height: 22px;
    top: 5px;
    right: 0;
    margin-left: 7px;
  }
  .bk-contact__form__value {
    width: 100%;
  }
  .bk-contact__form__value span {
    display: block;
    font-size: 19px;
    padding-top: 5px;
  }
  .bk-contact__form__value select,
  .bk-contact__form__value input,
  .bk-contact__form__value textarea {
    font-size: 21px;
    line-height: 1.5;
    padding: 5px 20px 5px 15px;
    min-height: 50px;
    min-width: 360px;
    width: 100%;
  }
  .bk-contact__form__value select {
    min-width: 100%;
    background-size: 9px auto;
  }
  .bk-contact__form__value textarea {
    width: 100%;
    min-height: 185px;
  }
  .bk-contact__form__desc {
    font-size: 21px;
    line-height: 28px;
    padding: 45px 0 20px;
  }
  .bk-contact__form__note {
    margin: 0 auto 25px;
    box-sizing: border-box;
    padding: 30px 0;
  }
  .bk-contact__form__inner {
    height: 295px;
    overflow-y: scroll;
    position: relative;
    box-sizing: border-box;
    padding: 0 20px;
    line-height: 33px;
    font-size: 21px;
  }
  .bk-contact__form__inner h3 {
    font-size: 26px;
    margin-bottom: 35px;
  }
  .bk-contact__form__inner ul li {
    margin-top: 35px;
  }
  .bk-contact__form__check {
    font-size: 21px;
  }
}
/***company****/
.sc-company {
  position: relative;
  padding: 80px 0 125px;
}
.sc-company img {
  max-width: 100%;
  width: 100%;
  height: auto;
}
.sc-company__medical {
  display: flex;
  justify-content: space-between;
}
.sc-company__medical__text {
  max-width: 470px;
  width: 48%;
  font-size: 16px;
  line-height: 30px;
}
.sc-company__medical__text h2 {
  font-size: 29px;
  line-height: 45px;
  font-weight: bold;
  margin-bottom: 12px;
}
.sc-company__medical__img {
  max-width: 478px;
  width: 48%;
}
.sc-company__about {
  padding-top: 80px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.sc-company__about__title {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 45px;
  text-align: center;
  width: 100%;
}
.sc-company__about__text {
  font-size: 16px;
  line-height: 30px;
}
.sc-company__about__text h3 {
  font-size: 29px;
  line-height: 45px;
  font-weight: bold;
  margin-bottom: 12px;
}
.sc-company__about__img {
  max-width: 453px;
  width: 47%;
  margin-right: 35px;
}
.sc-company__overview {
  margin-top: 80px;
}
.sc-company__overview__title {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 40px;
  text-align: center;
  width: 100%;
}
.sc-company__overview__list {
  border-top: 1px solid #CDD6DD;
}
.sc-company__overview__list dl {
  padding: 22px 0 23px;
  border-bottom: 1px solid #CDD6DD;
  font-size: 16px;
  line-height: 24px;
  display: flex;
  box-sizing: border-box;
}
.sc-company__overview__list dl dt {
  width: 270px;
  box-sizing: border-box;
  padding-left: 30px;
  font-size: 14px;
  font-weight: bold;
}
.sc-company__overview__list dl dd {
  width: calc(100% - 270px);
}
.sc-company__history {
  margin-top: 80px;
}
.sc-company__history__title {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 40px;
  text-align: center;
  width: 100%;
}
.sc-company__history__list dl {
  font-size: 16px;
  line-height: 27px;
  letter-spacing: 0.05em;
  display: flex;
  box-sizing: border-box;
}
.sc-company__history__list dl + dl {
  margin-top: 20px;
}
.sc-company__history__list dl dt {
  width: 210px;
  box-sizing: border-box;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.1em;
  padding: 0 20px 0 30px;
}
.sc-company__history__list dl dd {
  width: calc(100% - 210px);
}
.sc-company__access {
  margin-top: 80px;
}
.sc-company__access__title {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 40px;
  text-align: center;
  width: 100%;
}
.sc-company__access__flex {
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 0 15px;
  margin-bottom: 100px;
}
.sc-company__access__map {
  max-width: 550px;
  min-height: 410px;
  width: 58%;
}
.sc-company__access__map iframe {
  width: 100%;
  height: 100%;
  border: none !important;
}
.sc-company__access__text {
  max-width: 410px;
  width: 43%;
  box-sizing: border-box;
  padding-left: 10px;
  font-size: 16px;
  line-height: 24px;
}
.sc-company__access__text p {
  margin-bottom: 25px;
}
.sc-company__access__text dl {
  display: flex;
}
.sc-company__access__text dl dt {
  margin-right: 16px;
}

@media screen and (max-width: 560px) {
  .sc-company {
    padding: 45px 0 62px;
  }
  .sc-company__medical {
    flex-wrap: wrap;
  }
  .sc-company__medical__text {
    max-width: 100%;
    width: 100%;
    font-size: 21px;
    line-height: 39px;
    margin-bottom: 35px;
  }
  .sc-company__medical__text h2 {
    font-size: 36px;
    line-height: 52px;
    margin-bottom: 20px;
  }
  .sc-company__medical__img {
    max-width: 100%;
    width: 100%;
  }
  .sc-company__about {
    padding-top: 120px;
  }
  .sc-company__about__title {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .sc-company__about__text {
    max-width: 100%;
    width: 100%;
    font-size: 21px;
    line-height: 39px;
    margin-bottom: 18px;
  }
  .sc-company__about__text h2 {
    font-size: 36px;
    line-height: 52px;
    margin-bottom: 20px;
  }
  .sc-company__about__img {
    max-width: 100%;
    width: 100%;
    margin-right: 0;
  }
  .sc-company__overview {
    margin-top: 120px;
  }
  .sc-company__overview__title {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .sc-company__overview__list {
    border-top: 1px solid #CDD6DD;
    margin: 0 20px;
  }
  .sc-company__overview__list dl {
    padding: 30px 0 20px;
    border-bottom: 1px solid #CDD6DD;
    font-size: 21px;
    line-height: 32px;
    display: block;
  }
  .sc-company__overview__list dl dt {
    width: 100%;
    padding-left: 0;
    font-size: 21px;
    margin-bottom: 10px;
  }
  .sc-company__overview__list dl dd {
    width: 100%;
  }
  .sc-company__history {
    margin-top: 120px;
  }
  .sc-company__history__title {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .sc-company__history__list {
    margin: 0 20px;
  }
  .sc-company__history__list dl {
    font-size: 21px;
    line-height: 32px;
    letter-spacing: 0em;
    display: block;
  }
  .sc-company__history__list dl dt {
    width: 100%;
    font-size: 20px;
    letter-spacing: 0em;
    padding: 0 0 10px;
    line-height: 24px;
  }
  .sc-company__history__list dl dd {
    width: 100%;
  }
  .sc-company__access {
    margin-top: 120px;
  }
  .sc-company__access__title {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .sc-company__access__flex {
    flex-wrap: wrap;
    padding: 0 20px;
    flex-wrap: wrap-reverse;
  }
  .sc-company__access__map {
    max-width: 100%;
    min-height: 345px;
    width: 100%;
  }
  .sc-company__access__text {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    padding-left: 0;
    font-size: 21px;
    line-height: 39px;
    margin-bottom: 35px;
  }
  .sc-company__access__text p {
    margin-bottom: 40px;
  }
  .sc-company__access__text dl {
    display: flex;
  }
  .sc-company__access__text dl dt {
    margin-right: 25px;
  }
}
/***service****/
.sc-service {
  position: relative;
  padding: 70px 20px 0;
}
.sc-service img {
  max-width: 100%;
  width: 100%;
  height: auto;
}
.sc-service__employ {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}
.sc-service__employ__text {
  max-width: 470px;
  width: 48%;
  font-size: 16px;
  line-height: 30px;
}
.sc-service__employ__text h2 {
  font-size: 29px;
  line-height: 45px;
  font-weight: bold;
  margin-bottom: 14px;
}
.sc-service__employ__img {
  max-width: 478px;
  width: 48%;
}
.sc-service__features {
  margin-top: 110px;
}
.sc-service__features__title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}
.sc-service__features__list {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 20px);
  margin-left: -20px;
}
.sc-service__features__item {
  max-width: 320px;
  margin-left: 20px;
  box-sizing: border-box;
  margin-bottom: 45px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 0 10px 15px;
  font-size: 16px;
  line-height: 30px;
}
.sc-service__features__item--number {
  font-size: 32px;
  line-height: 38px;
  font-weight: bold;
  padding: 20px 0 15px;
  text-align: center;
}
.sc-service__features__item--img {
  max-width: 268px;
  margin: 0 auto 15px;
  height: 167px;
  position: relative;
  overflow: hidden;
}
.sc-service__features__item--img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translate3d(-50%, -50%, 0);
}
.sc-service__features__item dl {
  text-align: center;
  font-weight: bold;
  line-height: 30px;
  margin-bottom: 10px;
}
.sc-service__features__item dl dd {
  font-size: 28px;
  line-height: 30px;
  min-height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.sc-service__features__item--desc {
  margin: 0 15px;
  text-align: justify;
}
.sc-service__logo {
  margin: 0px 0 60px;
  background: var(--primary-lightest);
  box-sizing: border-box;
  padding: 45px 30px 40px;
  font-size: 16px;
  line-height: 30px;
}
.sc-service__logo__title {
  font-size: 24px;
  line-height: 41px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 25px;
}
.sc-service__logo__img {
  max-width: 687px;
  margin: 0 auto 30px;
}
.sc-service__flow {
  position: relative;
  padding: 75px 0 105px;
  z-index: 1;
}
.sc-service__flow::before {
  width: 250%;
  margin-left: -125%;
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  background: var(--primary-lightest);
  z-index: -1;
}
.sc-service__flow__title {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 25px;
  text-align: center;
}
.sc-service__flow__desc {
  text-align: center;
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 25px;
}
.sc-service__flow__item {
  position: relative;
  padding-left: 125px;
}
.sc-service__flow__item h3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 92px;
  height: 100%;
  background: var(--primary-lighter);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  font-weight: bold;
}
.sc-service__flow__item h3::before {
  background: var(--primary-lighter);
  mask: url(../img/common/polygon_i1.svg) no-repeat center/contain;
  -webkit-mask: url(../img/common/polygon_i1.svg) no-repeat center/contain;
  width: 92px;
  height: 32px;
  position: absolute;
  bottom: -32px;
  left: 0;
  content: "";
}
.sc-service__flow__item.flow__item1 {
  margin-bottom: -23px;
}
.sc-service__flow__item.flow__item1 h3 {
  top: 5px;
  height: 90%;
  background: var(--primary-light);
  color: #FFF;
}
.sc-service__flow__item.flow__item1 h3::before {
  background: var(--primary-light);
  mask: url(../img/common/polygon_i2.svg) no-repeat center/contain;
  -webkit-mask: url(../img/common/polygon_i2.svg) no-repeat center/contain;
}
.sc-service__flow__item.flow__item2 {
  margin-bottom: -23px;
}
.sc-service__flow__item.flow__item2 h3 {
  top: 5px;
  height: 98%;
  background: var(--primary-color);
  color: #FFF;
}
.sc-service__flow__item.flow__item2 h3::before {
  background: var(--primary-color);
  mask: url(../img/common/polygon_i3.svg) no-repeat center/contain;
  -webkit-mask: url(../img/common/polygon_i3.svg) no-repeat center/contain;
}
.sc-service__flow__content {
  position: relative;
  background: #FFF;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  box-sizing: border-box;
  padding: 40px 30px 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 38px;
}
.sc-service__flow__content--text {
  max-width: 404px;
}
.sc-service__flow__content--text h4 {
  font-weight: bold;
  font-size: 26px;
  line-height: 30px;
  margin-bottom: 5px;
}
.sc-service__flow__content--text h4 span {
  display: block;
  font-size: 21px;
  margin-bottom: 5px;
}
.sc-service__flow__content--img {
  max-width: 362px;
  position: relative;
  overflow: hidden;
  height: 196px;
  width: 48%;
}
.sc-service__flow__content--img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translate3d(-50%, -50%, 0);
}

@media screen and (max-width: 560px) {
  .sc-service {
    padding: 45px 0 0;
  }
  .sc-service__employ {
    flex-wrap: wrap;
  }
  .sc-service__employ__text {
    max-width: 100%;
    width: 100%;
    font-size: 21px;
    line-height: 39px;
    margin-bottom: 35px;
  }
  .sc-service__employ__text h2 {
    font-size: 36px;
    line-height: 52px;
    margin-bottom: 20px;
  }
  .sc-service__employ__img {
    max-width: 100%;
    width: 100%;
  }
  .sc-service__features {
    margin-top: 120px;
  }
  .sc-service__features__title {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .sc-service__features__list {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-left: 0;
  }
  .sc-service__features__item {
    max-width: 100%;
    margin-left: 0;
    margin-bottom: 40px;
    padding: 0 20px 15px;
    font-size: 21px;
    line-height: 39px;
  }
  .sc-service__features__item--number {
    font-size: 41.6px;
  }
  .sc-service__features__item--img {
    max-width: 100%;
    margin: 0 auto 15px;
    height: 286px;
  }
  .sc-service__features__item dl {
    line-height: 30px;
    margin-bottom: 22px;
  }
  .sc-service__features__item dl dt {
    font-size: 21px;
    margin-bottom: 5px;
  }
  .sc-service__features__item dl dd {
    font-size: 33px;
    line-height: 38px;
    min-height: auto;
    display: block;
  }
  .sc-service__features__item dl dd span {
    font-size: 36px;
  }
  .sc-service__features__item--desc {
    margin: 0;
    text-align: justify;
  }
  .sc-service__logo {
    margin: 20px 0 60px;
    background: var(--primary-lightest);
    box-sizing: border-box;
    padding: 40px 20px 35px;
    font-size: 21px;
    line-height: 39px;
  }
  .sc-service__logo__title {
    font-size: 28px;
    line-height: 41px;
    text-align: left;
    margin-bottom: 20px;
  }
  .sc-service__logo__img {
    max-width: 687px;
    margin: 0 auto 20px;
  }
  .sc-service__flow {
    padding: 65px 0 5px;
    z-index: 1;
  }
  .sc-service__flow::before {
    width: 150%;
    margin-left: -25%;
  }
  .sc-service__flow__title {
    font-size: 28px;
    margin-bottom: 10px;
  }
  .sc-service__flow__desc {
    text-align: left;
    font-size: 21px;
    line-height: 39px;
    margin-bottom: 50px;
  }
  .sc-service__flow__item {
    position: relative;
    padding-left: 0;
  }
  .sc-service__flow__item h3 {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 54px;
    font-size: 30px;
    margin-bottom: 20px;
    box-sizing: border-box;
    padding-bottom: 2px;
  }
  .sc-service__flow__item h3 span {
    cursor: inherit;
    writing-mode: inherit;
    -o-writing-mode: inherit;
    -ms-writing-mode: inherit;
    -ms-writing-mode: inherit;
    -moz-writing-mode: inherit;
    -webkit-writing-mode: inherit;
    text-orientation: inherit;
    word-wrap: inherit;
  }
  .sc-service__flow__item h3::before {
    display: none;
  }
  .sc-service__flow__item.flow__item1 {
    margin-top: 30px;
    margin-bottom: 54px;
  }
  .sc-service__flow__item.flow__item1 h3 {
    top: 0;
    height: auto;
  }
  .sc-service__flow__item.flow__item2 {
    margin-bottom: 55px;
  }
  .sc-service__flow__item.flow__item2 h3 {
    top: 0;
    height: auto;
  }
  .sc-service__flow__content {
    position: relative;
    padding: 40px 20px 45px;
    font-size: 21px;
    line-height: 39px;
    margin-bottom: 20px;
  }
  .sc-service__flow__content--text {
    max-width: 100%;
    width: 100%;
  }
  .sc-service__flow__content--text h4 {
    font-size: 30px;
    margin-bottom: 10px;
  }
  .sc-service__flow__content--text h4 span {
    font-size: 25px;
    margin-bottom: 8px;
  }
  .sc-service__flow__content--img {
    max-width: 100%;
    margin-top: 20px;
    box-sizing: border-box;
    width: 100%;
    height: 257px;
  }
}
.contact__bg {
  background: #F8FAFA;
}