@charset "UTF-8";
.sec1 {
  position: relative;
}
.sec1__ttl {
  position: absolute;
  top: calc((100% + 80px) / 2);
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  text-shadow: 2px 2px black;
  font-weight: 500;
  letter-spacing: 5px;
  padding: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 992px) {
  .sec1__ttl {
    font-size: 1.8rem;
  }
}
.sec1__bg {
  width: 100%;
}
.news .page-numbers, .notify .page-numbers,
.archive .page-numbers {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 50px;
  font-size: 2rem;
  color: #0064be;
}
@media screen and (max-width: 992px) {
  .news .page-numbers, .notify .page-numbers,
  .archive .page-numbers {
    font-size: 1.6rem;
  }
}
.news .page-numbers.next, .notify .page-numbers.next,
.archive .page-numbers.next {
  position: absolute;
  right: 0;
}
.news .page-numbers.prev, .notify .page-numbers.prev,
.archive .page-numbers.prev {
  position: absolute;
  left: 0;
}
.news .page-numbers.current, .notify .page-numbers.current,
.archive .page-numbers.current {
  color: rgba(0, 100, 190, 0.6);
}
.news li .page-numbers, .notify li .page-numbers,
.archive li .page-numbers {
  margin: 0 20px;
}
.news .page-numbers.prev, .notify .page-numbers.prev,
.archive .page-numbers.prev {
  position: absolute;
}
.news .page-numbers.prev::before, .notify .page-numbers.prev::before,
.archive .page-numbers.prev::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: -20px;
  top: 24px;
  transform: rotate(45deg);
  width: 2px;
  height: 12px;
  background: #0064be;
}
@media screen and (max-width: 992px) {
  .news .page-numbers.prev::before, .notify .page-numbers.prev::before,
  .archive .page-numbers.prev::before {
    top: 18px;
  }
}
.news .page-numbers.prev::after, .notify .page-numbers.prev::after,
.archive .page-numbers.prev::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: -20px;
  top: 32px;
  transform: rotate(-45deg);
  width: 2px;
  height: 12px;
  background: #0064be;
}
@media screen and (max-width: 992px) {
  .news .page-numbers.prev::after, .notify .page-numbers.prev::after,
  .archive .page-numbers.prev::after {
    top: 26px;
  }
}
.news .page-numbers.next, .notify .page-numbers.next,
.archive .page-numbers.next {
  position: absolute;
}
.news .page-numbers.next::before, .notify .page-numbers.next::before,
.archive .page-numbers.next::before {
  content: "";
  display: inline-block;
  position: absolute;
  right: -20px;
  top: 24px;
  transform: rotate(135deg);
  width: 2px;
  height: 12px;
  background: #0064be;
}
@media screen and (max-width: 992px) {
  .news .page-numbers.next::before, .notify .page-numbers.next::before,
  .archive .page-numbers.next::before {
    top: 18px;
  }
}
.news .page-numbers.next::after, .notify .page-numbers.next::after,
.archive .page-numbers.next::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: -20px;
  top: 32px;
  transform: rotate(-135deg);
  width: 2px;
  height: 12px;
  background: #0064be;
}
@media screen and (max-width: 992px) {
  .news .page-numbers.next::after, .notify .page-numbers.next::after,
  .archive .page-numbers.next::after {
    top: 26px;
  }
}

.single .sec2__title {
  margin-top: 20px;
  border-bottom: 1px solid #cbcbcb;
  padding-bottom: 10px;
  margin-bottom: 30px;
}
.single .sec2__btn {
  text-align: center;
}
.single .arrow__wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  padding-left: 20px;
  padding-right: 20px;
}
.single .arrow__item {
  position: relative;
  color: #0064be;
}
.single .arrow__item--previous::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: -20px;
  top: 24px;
  transform: rotate(45deg);
  width: 2px;
  height: 12px;
  background: #0064be;
}
.single .arrow__item--previous::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: -20px;
  top: 32px;
  transform: rotate(-45deg);
  width: 2px;
  height: 12px;
  background: #0064be;
}
.single .arrow__item--next::before {
  content: "";
  display: inline-block;
  position: absolute;
  right: -20px;
  top: 24px;
  transform: rotate(135deg);
  width: 2px;
  height: 12px;
  background: #0064be;
}
.single .arrow__item--next::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: -20px;
  top: 32px;
  transform: rotate(-135deg);
  width: 2px;
  height: 12px;
  background: #0064be;
}

.single-page {
  /* 配置位置 右 */
  /* 配置位置 左 */
  /* 配置位置 中央 */
}
.single-page ul,
.single-page ul li {
  list-style: initial;
  list-style-position: inside;
}
.single-page ol,
.single-page ol li {
  list-style: decimal;
  list-style-position: inside;
}
.single-page strong {
  font-weight: bold;
}
.single-page a {
  color: #0064be;
  text-decoration: underline;
}
.single-page img.alignright {
  display: block;
  margin: 0 0 0 auto;
}
.single-page img.alignleft {
  display: block;
  margin: 0 auto 0 0;
}
.single-page img.aligncenter {
  display: block;
  margin: 0 auto;
}
.single-page table,
.single-page td,
.single-page th {
  border: 1px solid #0064be;
}

@media screen and (max-width: 992px) {
  .member .sec1 {
    margin-top: 50px;
  }
}
@media screen and (max-width: 992px) {
  .member .sec2__otr {
    overflow-x: auto;
    padding-right: 20px;
  }
}
.member .sec2 thead {
  border-bottom: 2px solid #0064be;
}
.member .sec2 table {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 992px) {
  .member .sec2 table {
    width: 600px;
  }
}
.member .sec2 tr {
  height: 80px;
  display: flex;
  border-bottom: 1px solid #cbcbcb;
}
.member .sec2 .td1,
.member .sec2 .td2,
.member .sec2 .td3,
.member .sec2 .th1,
.member .sec2 .th2,
.member .sec2 .th3 {
  display: grid;
  place-items: center;
}
.member .sec2 .td1,
.member .sec2 .th1 {
  width: 30%;
}
.member .sec2 .th2,
.member .sec2 .td2 {
  width: 35%;
}
@media screen and (max-width: 992px) {
  .member .sec2 .th2,
  .member .sec2 .td2 {
    width: 30%;
  }
}
.member .sec2 .th3,
.member .sec2 .td3 {
  width: 35%;
}
@media screen and (max-width: 992px) {
  .member .sec2 .th3,
  .member .sec2 .td3 {
    width: 40%;
  }
}
.member .sec3__otr {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}
@media screen and (max-width: 992px) {
  .member .sec3__otr {
    display: block;
  }
}
.member .sec3__slicer {
  width: 100%;
  margin-top: 40px;
}
.member .sec3__link {
  width: 30%;
}
@media screen and (max-width: 992px) {
  .member .sec3__link {
    width: 100%;
  }
}
.member .sec3__link:nth-child(2), .member .sec3__link:nth-child(5), .member .sec3__link:nth-child(6) {
  margin-left: 5%;
}
@media screen and (max-width: 992px) {
  .member .sec3__link:nth-child(2), .member .sec3__link:nth-child(5), .member .sec3__link:nth-child(6) {
    margin-left: 0;
  }
}
@media screen and (max-width: 992px) {
  .member .sec3__link:nth-child(n+2) {
    margin-top: 20px;
  }
}
.member .sec4__otr {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}
@media screen and (max-width: 992px) {
  .member .sec4__otr {
    display: block;
  }
}
.member .sec4__link {
  width: 30%;
}
@media screen and (max-width: 992px) {
  .member .sec4__link {
    width: 100%;
  }
}
.member .sec4__link:nth-child(n+2) {
  margin-left: 5%;
}
@media screen and (max-width: 992px) {
  .member .sec4__link:nth-child(n+2) {
    margin-left: 0;
    margin-top: 20px;
  }
}
.member .sec5 tr {
  height: 80px;
  display: flex;
  border-bottom: 1px solid #cbcbcb;
}
.member .sec5 .th {
  display: grid;
  place-items: center;
}
.member .sec5 .td {
  display: grid;
  place-self: center;
}
.member .sec5 .th {
  width: 30%;
}
.member .sec5 .td {
  width: 70%;
}
.member .sec5 table {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.contact {
  /*確認画面と完了画面を非表示*/
  /*デフォルトのサンクスメッセージを非表示*/
}
.contact .faq__wrap {
  display: flex;
}
.contact .faq__wrap--a {
  margin-top: 20px;
}
.contact .faq__item {
  margin-top: 50px;
}
.contact .faq__icon {
  width: 52px;
}
.contact .faq__icon--q {
  padding-right: 6px;
}
.contact .faq__icon--a {
  padding-left: 6px;
}
.contact .faq__tx {
  width: calc(100% - 52px);
}
.contact .faq__tx--q {
  color: #0064be;
}
.contact .contact {
  /*確認画面と完了画面を非表示*/
  /*デフォルトのサンクスメッセージを非表示*/
}
.contact .contact__row {
  display: flex;
  align-items: center;
  padding-bottom: 50px;
}
@media screen and (max-width: 992px) {
  .contact .contact__row {
    display: block;
  }
}
.contact .contact__row--center {
  justify-content: center;
}
.contact .contact__row.contact__row--up {
  align-items: flex-start;
}
.contact .contact__left {
  width: 30%;
  text-align: right;
  margin-right: 50px;
  font-weight: 500;
}
@media screen and (max-width: 992px) {
  .contact .contact__left {
    width: 100%;
    text-align: left;
    margin-bottom: 10px;
  }
}
.contact .contact__right {
  width: 70%;
}
@media screen and (max-width: 992px) {
  .contact .contact__right {
    width: 100%;
  }
}
.contact .contact__tx {
  height: 50px;
}
.contact .contact__ta {
  height: 260px;
}
@media screen and (max-width: 992px) {
  .contact .contact__ta {
    height: 200px;
  }
}
.contact .contact__tx, .contact .contact__ta {
  width: 100%;
  border: none;
  font-size: 16px;
  padding: 5px;
}
.contact .contact__tx:focus, .contact .contact__tx:focus-visible, .contact .contact__ta:focus, .contact .contact__ta:focus-visible {
  border: #0064be 2px solid;
  outline: none;
}
.contact .contact__check {
  text-align: center;
}
.contact .contact__confirm {
  text-align: center;
  margin-top: 40px;
  padding-bottom: 40px;
}
.contact .contact__confirm .material-bubble {
  padding: 0;
}
.contact .contact__confirm .btn--previous {
  margin-top: 30px;
}
.contact .contact__confirm .btn__inr--input::after {
  right: 20px;
}
.contact .contact__privacy {
  text-decoration: underline;
}
.contact .contact__tx2 {
  font-weight: normal;
  font-size: 12px;
  line-height: 1.4;
  display: inline-block;
  position: relative;
}
.contact .contact__tx2::before {
  content: "(";
  font-size: 32px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-weight: normal;
  left: -6px;
}
@media screen and (max-width: 992px) {
  .contact .contact__tx2::before {
    left: -15px;
    top: 34%;
  }
}
.contact .contact__tx2::after {
  content: ")";
  font-size: 32px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-weight: normal;
  right: -6px;
}
@media screen and (max-width: 992px) {
  .contact .contact__tx2::after {
    right: -15px;
    top: 34%;
  }
}
.contact .contact input:-webkit-autofill {
  -webkit-transition: background-color 5000s ease-in-out 0s !important;
  transition: background-color 5000s ease-in-out 0s !important;
}
.contact .contact #company,
.contact .contact #pharmacy,
.contact .contact #position,
.contact .contact #name,
.contact .contact #tel,
.contact .contact #email {
  max-width: 400px;
}
.contact .contact .wpcf7-radio {
  display: block;
}
.contact .contact input[type=radio],
.contact .contact input[type=checkbox] {
  display: none;
}
.contact .contact .wpcf7-list-item {
  display: block;
}
.contact .contact .wpcf7-list-item-label:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 6px;
  border-width: 1px;
  border-style: solid;
  border-radius: 50%;
  padding: 1.8px;
  background-clip: content-box;
}
.contact .contact .wpcf7-acceptance .wpcf7-list-item-label:before {
  border-radius: 0;
}
.contact .contact input[type=radio]:not(:checked) + .wpcf7-list-item-label:before {
  border-color: #72767b;
}
.contact .contact input[type=radio]:checked + .wpcf7-list-item-label:before {
  border-color: #0064be;
  background-color: #0064be;
}
.contact .contact input[type=checkbox]:checked + .wpcf7-list-item-label:before {
  border-color: #0064be;
  background-color: #0064be;
}
.contact .contact .wpcf7-spinner {
  display: none;
}
.contact .contact .required {
  display: inline-block;
  background: #e62f2f;
  color: white;
  padding: 0px 6px;
  border-radius: 5px;
  font-size: 1.4rem;
  font-weight: normal;
  margin-left: 6px;
}
.contact .contact .required--not {
  background: white;
  color: #1a1a1a;
  border: 1px solid #1a1a1a;
}
@media screen and (max-width: 992px) {
  .contact .contact .sec5 .wpcf7-list-item {
    margin: 0;
  }
}
.contact .contact input.wpcf7-submit {
  margin-left: 20px;
  font-size: 1.6rem;
}
@media screen and (max-width: 992px) {
  .contact .contact input.wpcf7-submit {
    font-size: 1.4rem;
    margin-left: 0;
    margin-top: 40px;
  }
}
.contact .contact input.wpcf7-submit:hover {
  cursor: pointer;
  color: white;
}
.contact .contact__privacyotr {
  text-align: center;
}
.contact .contact__privacyArea {
  text-align: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 992px) {
  .contact .contact__privacyArea {
    margin-left: -20px;
  }
}
.contact .contact__privacyArea .wpcf7-list-item-label {
  position: relative;
}
.contact .contact__privacyArea .wpcf7-list-item-label::before {
  border-radius: 0;
  position: absolute;
  left: -24px;
  top: 50%;
  transform: translateY(-50%);
}
.contact .contact__privacyArea .required {
  position: absolute;
  top: 3px;
  right: -48px;
}
.contact .contact .wpcf7-previous.submit {
  border: none;
  background: none;
  font-size: 14px;
  text-underline-offset: 4px;
  text-decoration: underline;
}
.contact .contact .wpcf7-previous.submit:hover {
  cursor: pointer;
}
.contact .contact__privacy-tx {
  position: relative;
}
@media screen and (max-width: 576px) {
  .contact .contact__privacy-tx {
    font-size: 14px;
  }
}
.contact .contact .confirm_area,
.contact .contact .thanks_area {
  display: none;
}
.contact .contact .wpcf7-response-output {
  display: none;
}
.contact .contact input.confirm_button:hover {
  cursor: pointer;
}
.contact .contact input.back_button {
  background: none;
  border: none;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contact .contact .contact__confirm--btn {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 992px) {
  .contact .contact .contact__confirm--btn {
    display: block;
  }
}
.contact .confirm_area,
.contact .thanks_area {
  display: none;
}
.contact .confirm_area .btn__inr::after,
.contact .thanks_area .btn__inr::after {
  right: 18px;
  top: -25px;
}
.contact .wpcf7-response-output {
  display: none;
}
.contact .contact-flow {
  text-align: center;
  margin-top: 20px;
  padding-bottom: 50px;
}
.contact .contact-thanks {
  text-align: center;
}
.contact select {
  color: #1a1a1a;
}/*# sourceMappingURL=other.css.map */