@charset "UTF-8";
/* ローディング画面 */
#loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: white;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
}

.loaded {
  opacity: 0;
  visibility: hidden;
}

.pc-none {
  display: none !important;
}

.pc-md-none {
  display: none !important;
}

@media screen and (max-width: 992px) {
  .sp-none {
    display: none !important;
  }
  .pc-none {
    display: block !important;
  }
}
@media screen and (max-width: 768px) {
  .sp-md-none {
    display: none !important;
  }
  .pc-md-none {
    display: block !important;
  }
}
.pc-sm-none {
  display: none !important;
}

@media screen and (max-width: 576px) {
  .sp-sm-none {
    display: none !important;
  }
  .pc-sm-none {
    display: block !important;
  }
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
  shape-margin: 0.75rem;
  -o-object-fit: cover;
     object-fit: cover;
}

*,
*::after,
*::before {
  box-sizing: border-box;
}

a {
  display: inline-block;
}

a,
a:hover,
a:visited,
a:active {
  color: inherit;
  text-decoration: none;
}
a.underline,
a:hover.underline,
a:visited.underline,
a:active.underline {
  -webkit-text-decoration: underline #1a1a1a;
          text-decoration: underline #1a1a1a;
  text-underline-offset: 3px;
}
a.underline--white,
a:hover.underline--white,
a:visited.underline--white,
a:active.underline--white {
  -webkit-text-decoration: underline white;
          text-decoration: underline white;
}

a[href*="tel:"] {
  text-decoration: underline;
}
@media screen and (min-width: 993px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
a[href*="tel:"].header__contact-icon {
  text-decoration: none;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.8rem;
  line-height: 1.6;
  letter-spacing: 0.05rem;
  color: #1a1a1a;
}
@media screen and (max-width: 992px) {
  body {
    font-size: 1.6rem;
  }
}

.number {
  font-family: "Roboto", sans-serif;
}

.green-bg {
  background-image: url(../img/green.png);
}

body.fixed {
  width: 100%;
  height: 100%;
  position: fixed;
}

.outer-vl {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 992px) {
  .outer-vl {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.outer-vl--pb0 {
  padding-bottom: 0;
}
.outer-vl--mt50 {
  padding-top: 50px;
}

.outer-ly {
  max-width: 1206px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.outer-ly--0 {
  padding: 0;
}

@media screen and (max-width: 992px) {
  .outer-ly_sp {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 992px) {
  .outer-ly_sp--r0 {
    padding-right: 0;
  }
}

.header {
  width: 100%;
  position: fixed;
  top: 0;
  transition: 0.3s all;
  font-weight: 500;
  font-size: 1.8rem;
  color: white;
  text-shadow: 2px 2px rgba(0, 0, 0, 0.6);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 992px) {
  .header__link--member {
    background: #460092;
  }
}
.header.is-fixed {
  background: #0064be;
}
.header.is-fixed .header__link--member {
  background: #460092;
}
.header.is-fixed.is-fixed.header__member {
  background: white;
  color: #0064be;
  text-shadow: none;
  box-shadow: 0 0 7px rgba(221, 221, 221, 0.9);
}
.header.is-fixed.is-fixed.header__member .header__link--general {
  background: #460092;
  color: white;
}
@media screen and (max-width: 1400px) {
  .header {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 992px) {
  .header {
    padding-top: 14px;
    padding-bottom: 12px;
  }
}
.header__inner {
  padding: 0 0 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo-wrap {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 576px) {
  .header__logo {
    max-width: 260px;
  }
}
.header__ul {
  display: flex;
  align-items: center;
  font-size: 2rem;
}
@media screen and (max-width: 992px) {
  .header__ul {
    flex-flow: wrap;
  }
}
@media screen and (max-width: 992px) {
  .header__li {
    width: 100%;
  }
}
.header__nav {
  display: flex;
}
.header .active a.header__link {
  color: black;
}
.header__link {
  height: 80px;
  display: grid;
  place-items: center;
  padding: 0 20px;
  line-height: 1.2;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 1400px) {
  .header__link {
    padding: 0 10px;
  }
}
@media screen and (max-width: 992px) {
  .header__link a.header__link--contact {
    background: #0064be;
  }
}
@media screen and (max-width: 992px) and (max-width: 992px) {
  .header__link a.header__link--contact {
    color: white;
  }
}
.header__items {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: inherit;
  padding-bottom: inherit;
  transform: translate(0, 0);
}
@media screen and (max-width: 992px) {
  .header__items {
    display: initial;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding-top: 60px;
  }
}
.header__hamburger {
  display: none;
}
@media screen and (max-width: 992px) {
  .header__hamburger {
    display: block;
    background-color: transparent;
    border-color: transparent;
    z-index: 9999;
    margin-left: auto;
    width: 70px;
  }
}
.header__img {
  width: 44px;
}
.header__ttl {
  font-size: 2.8rem;
  margin-left: 10px;
}
@media screen and (max-width: 992px) {
  .header__ttl {
    font-size: 2.2rem;
  }
}

#menu__toggle {
  opacity: 0;
  display: none;
}

@media screen and (max-width: 992px) {
  #menu__toggle:checked + .menu__btn > span {
    transform: rotate(45deg);
  }
  #menu__toggle:checked + .menu__btn > span::before {
    top: 0;
    transform: rotate(0deg);
  }
  #menu__toggle:checked + .menu__btn > span::after {
    top: 0;
    transform: rotate(90deg);
  }
  #menu__toggle:checked ~ .header__nav {
    right: 0 !important;
  }
  .menu__btn {
    display: none;
  }
}
@media screen and (max-width: 992px) and (max-width: 992px) {
  .menu__btn {
    display: block;
    position: fixed;
    top: 34px;
    right: 20px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    z-index: 1;
  }
}
@media screen and (max-width: 992px) {
  .menu__btn > span,
  .menu__btn > span::before,
  .menu__btn > span::after {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: white;
    transition-duration: 0.25s;
  }
  .menu__btn > span::before {
    content: "";
    top: -8px;
  }
  .menu__btn > span::after {
    content: "";
    top: 8px;
  }
  .header__nav {
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100dvh;
    margin: 0;
    padding: 80px 0;
    list-style: none;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    transition-duration: 0.25s;
  }
}
@media screen and (max-width: 992px) and (max-width: 992px) {
  .header__nav {
    background: rgba(0, 100, 190, 0.8);
  }
}
@media screen and (max-width: 992px) {
  .menu__item {
    display: block;
    padding: 12px 24px;
    color: #333;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    transition-duration: 0.25s;
  }
  .menu__item:hover {
    background-color: #cfd8dc;
  }
}
.grecaptcha-badge {
  display: none;
}

.blue-bg {
  background: rgba(0, 100, 190, 0.06);
}

.footer {
  text-align: center;
  background: #0064be;
  color: white;
}
.footer__otr {
  padding-top: 50px;
}
.footer__ul {
  display: flex;
  justify-content: center;
  flex-flow: wrap;
}
@media screen and (max-width: 992px) {
  .footer__ul {
    display: block;
  }
}
.footer__slicer {
  width: 100%;
}
.footer__en {
  display: block;
}
.footer__li {
  margin-top: 40px;
  width: 25%;
  max-width: 200px;
}
@media screen and (max-width: 992px) {
  .footer__li {
    margin: 20px auto 0;
    width: 100%;
  }
}
.footer__copy {
  margin-top: 30px;
  padding-bottom: 10px;
}

.h2__ttl {
  display: inline-block;
}
.h2__ja {
  font-size: 2.4rem;
}
@media screen and (max-width: 992px) {
  .h2__ja {
    font-size: 2rem;
    padding-bottom: 6px;
  }
}
.h2__ja img {
  vertical-align: bottom;
}
.h2__en {
  color: #0064be;
  font-size: 8rem;
  display: inline-block;
  font-weight: bold;
  background: linear-gradient(90deg, #0064be 0%, #a0d8ef 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  margin-top: -20px;
}
.h2__en::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-block;
  padding-bottom: 5px;
  width: 100%;
  background: linear-gradient(90deg, #0064be 0%, #a0d8ef 100%);
}
@media screen and (max-width: 992px) {
  .h2__en {
    font-size: 3rem;
  }
}

.board-wrap__list {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.board-wrap__list--noline {
  border: none;
}
.board-wrap__list--noline .board-wrap__row {
  border: none;
  padding: 7px 0;
}
.board-wrap__list--width .board-wrap__term {
  width: 150px;
}
@media screen and (max-width: 992px) {
  .board-wrap__list--width .board-wrap__term {
    width: 100%;
  }
}
.board-wrap__list--width .board-wrap__description {
  width: calc(100% - 150px);
}
@media screen and (max-width: 992px) {
  .board-wrap__list--width .board-wrap__description {
    width: 100%;
  }
}
.board-wrap__row {
  display: flex;
  padding: 10px 0;
}
@media screen and (max-width: 992px) {
  .board-wrap__row {
    display: block;
  }
}
.board-wrap__term {
  width: 30%;
  text-align: center;
  color: #0064be;
}
@media screen and (max-width: 992px) {
  .board-wrap__term {
    text-align: left;
    width: 100%;
  }
}
.board-wrap__term--left {
  text-align: left;
}
.board-wrap__description {
  width: 70%;
}
@media screen and (max-width: 992px) {
  .board-wrap__description {
    width: 100%;
    font-size: 14px;
  }
}

.sec__link {
  position: relative;
  overflow: hidden;
}
.sec__link::before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  display: inline-block;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 25%, rgb(255, 255, 255) 48%, rgba(255, 255, 255, 0.93) 52%, rgba(255, 255, 255, 0) 75%);
  z-index: 10;
}
.sec__link img {
  transition: 0.6s all;
}
.sec__link:hover img {
  transform: scale(110%);
}
.sec__ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  color: #0064be;
  z-index: 20;
}
.sec__img {
  width: 100%;
}
.sec__btn {
  text-align: center;
  margin-top: 50px;
}
.sec__tx--center {
  text-align: center;
}
.sec__tx--main {
  color: #0064be;
}
.sec__tx--white {
  color: white;
}
.sec__tx14 {
  font-size: 1.4rem;
}
@media screen and (max-width: 992px) {
  .sec__tx14 {
    font-size: 1.2rem;
  }
}
.sec__tx16 {
  font-size: 1.6rem;
}
@media screen and (max-width: 992px) {
  .sec__tx16 {
    font-size: 1.4rem;
  }
}
.sec__tx20 {
  font-size: 2rem;
}
@media screen and (max-width: 992px) {
  .sec__tx20 {
    font-size: 1.6rem;
  }
}
.sec__tx22 {
  font-size: 2.2rem;
}
@media screen and (max-width: 992px) {
  .sec__tx22 {
    font-size: 1.8rem;
  }
}
.sec__tx24 {
  font-size: 2.4rem;
}
@media screen and (max-width: 992px) {
  .sec__tx24 {
    font-size: 2rem;
  }
}
.sec__tx26 {
  font-size: 2.6rem;
}
@media screen and (max-width: 992px) {
  .sec__tx26 {
    font-size: 2.2rem;
  }
}
.sec__tx28 {
  font-size: 2.8rem;
}
@media screen and (max-width: 992px) {
  .sec__tx28 {
    font-size: 2.4rem;
  }
}
.sec__tx32 {
  font-size: 3.2rem;
}
@media screen and (max-width: 992px) {
  .sec__tx32 {
    font-size: 2.8rem;
  }
}
.sec__tx60 {
  font-size: 6rem;
}
@media screen and (max-width: 992px) {
  .sec__tx60 {
    font-size: 4rem;
  }
}
@media screen and (max-width: 576px) {
  .sec__tx60 {
    font-size: 3rem;
  }
}

.category__item {
  font-size: 1.4rem;
  width: 134px;
  color: white;
  padding: 2px;
  text-align: center;
}
.category__item--info {
  background: orange;
}
.category__item--community {
  background: #0064be;
}
.category__item--medical {
  background: #00c49a;
}
.category__item--pharmacist {
  background: #f7567c;
}
.category__item--study {
  background: orange;
}
.category__item--local {
  background: #0064be;
}
.category__item--prefecture {
  background: #00c49a;
}
.category__item--nation {
  background: #f7567c;
}

.article__otr {
  max-width: 850px;
  margin: 50px auto 0;
}
@media screen and (max-width: 992px) {
  .article__otr {
    margin-top: 20px;
  }
}
.article__otr--sticky {
  max-width: 950px;
}
.article__sticky-inr {
  max-width: 850px;
  margin: 0 auto;
}
@media screen and (max-width: 992px) {
  .article__sticky-inr {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.article__sticky-ttl {
  padding-top: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #cbcbcb;
}
.article__item {
  padding-top: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #cbcbcb;
}
.article__category {
  color: white;
  margin-left: 10px;
  margin-right: 10px;
}
.article__sticky {
  position: relative;
  padding-top: 0;
  padding-bottom: 0;
  max-height: 500px;
  overflow-y: auto;
}
.article__sticky:nth-child(n+2) {
  margin-top: 50px;
}
.article__sticky::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  border-right-color: transparent;
  border-bottom-color: transparent;
  height: 0;
  width: 0;
}
.article__sticky--study {
  border: 3px solid orange;
  border-top: 10px solid orange;
}
.article__sticky--study::before {
  border: 30px solid orange;
  border-right-color: transparent;
  border-bottom-color: transparent;
}
@media screen and (max-width: 992px) {
  .article__sticky--study::before {
    border-width: 15px;
  }
}
.article__sticky--local {
  border: 3px solid #0064be;
  border-top: 10px solid #0064be;
}
.article__sticky--local::before {
  border: 30px solid #0064be;
  border-right-color: transparent;
  border-bottom-color: transparent;
}
@media screen and (max-width: 992px) {
  .article__sticky--local::before {
    border-width: 15px;
  }
}
.article__sticky--prefecture {
  border: 3px solid #00c49a;
  border-top: 10px solid #00c49a;
}
.article__sticky--prefecture::before {
  border: 30px solid #00c49a;
  border-right-color: transparent;
  border-bottom-color: transparent;
}
@media screen and (max-width: 992px) {
  .article__sticky--prefecture::before {
    border-width: 15px;
  }
}
.article__sticky--nation {
  border: 3px solid #f7567c;
  border-top: 10px solid #f7567c;
}
.article__sticky--nation::before {
  border: 30px solid #f7567c;
  border-right-color: transparent;
  border-bottom-color: transparent;
}
@media screen and (max-width: 992px) {
  .article__sticky--nation::before {
    border-width: 15px;
  }
}
.article__content {
  padding-top: 30px;
  padding-bottom: 30px;
}
.article__hr {
  border: none;
  height: 2px;
}
.article__hr--study {
  background: orange;
}
.article__hr--local {
  background: #0064be;
}
.article__hr--prefecture {
  background: #00c49a;
}
.article__hr--nation {
  background: #f7567c;
}
@media screen and (max-width: 992px) {
  .article__link {
    margin-top: 10px;
  }
}

.nav__board-list {
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s ease;
  background: #0064be;
  position: absolute;
  top: 84px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
@media screen and (max-width: 992px) {
  .nav__board-list {
    margin-top: 10px;
    visibility: initial;
    opacity: 1;
    position: static;
    transform: none;
    background: none;
    color: #0064be;
    padding-left: 40px;
    font-size: 1.8rem;
  }
}
.nav__board {
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
}
.nav__board:hover .nav__board-list {
  visibility: visible;
  opacity: 1;
}
.nav__board-li a {
  display: block;
  transition: all 0.4s ease;
  padding: 3px 20px;
}
@media screen and (max-width: 992px) {
  .nav__board-li a::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(../img/smallarrow.svg) no-repeat center;
    background-size: cover;
    vertical-align: middle;
    margin-right: 10px;
  }
}
@media screen and (max-width: 992px) {
  .nav__board-li a:hover {
    background: none;
  }
}

.btn {
  color: white;
  text-align: center;
  transition: 0.6s all;
}
.btn__link {
  min-width: 200px;
  padding: 14px;
  border-radius: 40px;
  border: 2px solid #0064be;
  color: white;
  background-image: linear-gradient(150deg, rgb(0, 100, 190), rgb(160, 216, 239));
}
.btn:hover {
  opacity: 0.7;
}/*# sourceMappingURL=common.css.map */