/* --------------------------------------------------------
  ヘッダ
-------------------------------------------------------- */
.toppage {
  padding-top:100px;
}

header {
  position:fixed;
  top:0;
  left:0;
  padding:0;
  width:100%;
  height:100px;
  background:#fff;
  box-sizing: border-box;
  z-index: 9999;
}

.header-pc {
  width:100%;
  height:100%;
}

.header-pc .header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  margin:0 auto;
  padding-top:40px;
  width:1170px;
}

header > .logo {
  position:absolute;
  top:50%;
  left:calc((100% - 1170px) / 2);
  width:380px;
  transform: translate(0,-50%);
}

header > .logo img {
  width:100%;
  height:auto;
}

.header-pc .otherNavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  position: absolute;
  top:15px;
  right:calc((100% - 1170px) / 2);
  z-index: 2;
}

.form-container .form-group {
  margin-bottom: 0;
  padding:4px;
  border-radius: 3px;
  background:#eee;
}

.form-container .form-group input {
  padding:0 5px;
  box-sizing: border-box;
}

.form-container .form-group .search-btn {
  cursor: pointer;
  padding:0 4px;
  background:none;
  box-sizing: border-box;
}

@media screen and (min-width: 768px) {
  footer .form-container {
    display:none;
  }
}

footer .form-container {
  margin-bottom:40px;
}

footer .form-container .row {
  margin:0;
  width:100%;
  box-sizing: border-box;
}

footer form {
  width:100%;
}

footer .form-group {
  width:100%;
}

footer .form-group input {
  width:calc(100% - 30px);
}

.header-pc .btn-mypage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  position:relative;
  margin-left:20px;
  width:200px;
  height:32px;
  color:#fff;
  font-size: 16px;
  font-weight: bold;
  border-radius: 3px;
  background:#b94346;
  transition: 0.2s;
}

.header-pc .btn-mypage span {
  position: relative;
}

.header-pc .btn-mypage:before {
  content:'';
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  border-radius: 3px;
  background:#2b96cc;
  transform: translate(0,0) scale(0,1.0);
  transform-origin: 0% 50%;
  transition: 0.4s;
}

.header-pc .btn-mypage:hover:before {
  transform: translate(0,0) scale(1.0,1.0);
  transition: 0.4s;
}

.header-pc .btn-mypage:after {
  pointer-events: none;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  position:absolute;
  top:50%;
  right:10px;
  font-weight: bold;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  transform: translate(0,-50%)
}

.header-pc .globalNavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-end;
  width:100%;
  height:60px;
}

.header-pc .globalNavi li {
  height:100%;
}

.header-pc .globalNavi li + li {
  margin-left:35px;
}

.header-pc .globalNavi > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: flex-end;
  position:relative;
  width:100%;
  height:100%;
  color:#000;
  font-size:16px;
  font-weight: bold;
}

.header-pc .globalNavi > li > a:after {
  content:'';
  display:block;
  position:absolute;
  bottom:0;
  left:50%;
  width:50px;
  height:4px;
  background:#2b96cc;
  transform: translate(-50%,0) scale(0,1.0);
  transform-origin: 50% 50%;
  transition: 0.5s;
}

.header-pc .globalNavi > li:hover > a:after {
  content:'';
  display:block;
  position:absolute;
  bottom:0;
  left:50%;
  width:50px;
  height:4px;
  background:#2b96cc;
  transform: translate(-50%,0) scale(1.0,1.0);
  transform-origin: 50% 50%;
  transition: 0.5s;
}

/* --------------------------------------------------------
  メガメニュー
-------------------------------------------------------- */
.megamenu {
  visibility: hidden;
  position: absolute;
  top:100px;
  left:0;
  padding:30px 0;
  width:100%;
  background:#ebfbff;
  box-sizing: border-box;
}

.megamenu__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  margin:0 auto;
  width:1170px;
}

.globalNavi li .megamenu {
  visibility: hidden;
  opacity: 0;
  transform: translate(0,50px);
  transition: 0.5s;
}

.globalNavi li:hover .megamenu {
  visibility: visible;
  opacity: 1.0;
  transform: translate(0,0);
  transition: 0.5s;
}

body:not(.en) .globalNavi li:not(:first-child):before {
  pointer-events: none;
  content:'';
  position:absolute;
  top:100px;
  left:0;
  width:100vw;
  height:calc(100vh - 100px);
  background:rgba(0,0,0,0.0);
  /*backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);*/
  z-index: 0;
  transition: 0.2s;
}

body:not(.en) .globalNavi li:not(:first-child):hover:before {
  background:rgba(0,0,0,0.3);
  /*backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);*/
  transition: 0.2s;
}

.en .globalNavi li:not(:last-child):before {
  pointer-events: none;
  content:'';
  position:absolute;
  top:100px;
  left:0;
  width:100vw;
  height:calc(100vh - 100px);
  background:rgba(0,0,0,0.0);
  z-index: 0;
  transition: 0.2s;
}

.en .globalNavi li:not(:last-child):hover:before {
  background:rgba(0,0,0,0.3);
  transition: 0.2s;
}

.megamenu__listColumn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  width:30%;
}

.megamenu__inner:after {
  display: block;
  content:"";
  width:30%;
}

.medic .megamenu__inner:after, .english .megamenu__inner:after {
  content:none;
}

.general .megamenu__listColumn:first-child {
  width:65%;
}

.general .megamenu__inner:after {
  content:none;
}

.megamenu__listColumn .megamenu__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: flex-start;
  color:#333;
  font-size:14px;
  font-weight:normal;
  line-height:1.2;
}

.megamenu__listColumn .megamenu__listTitle {
  margin-bottom:15px;
  padding-bottom:10px;
  color:#333;
  font-size:18px;
  font-weight: bold;
  border-bottom:1px solid #2b96cc;
}

.megamenu__listColumn .megamenu__listTitle:before {
  pointer-events: none;
  content: "\f138";
  font-family: "Font Awesome 5 Free";
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  margin-right:6px;
  color:#2b96cc;
  font-weight: bold;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.megamenu__listColumn .megamenu__link:before {
  pointer-events: none;
  content: "\f068";
  font-family: "Font Awesome 5 Free";
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  width:25px;
  color:#2b96cc;
  font-weight: bold;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.megamenu__listColumn .megamenu__link:hover, .megamenu__listColumn .megamenu__listTitle:hover {
  color:#2b96cc;
}

.megamenu__listColumn .megamenu__link span {
  display: inline-block;
  width:calc(100% - 25px);
}

.megamenu__listColumn > .megamenu__link + .megamenu__link {
  margin-top:15px;
}

.megamenu__listColumn > .megamenu__link + .megamenu__listTitle {
  margin-top:15px;
}

.megamenu__listColumn .megamenu__listTitle + .megamenu__listTitle, .megamenu__listColumn .megamenu__listTitle + .megamenu__link {
  margin-top:0;
}

.megamenu__listRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top:-20px;
}

.megamenu__listRow > .megamenu__link {
  margin-top:20px;
  width:32%;
}

.megamenu__listRow:after {
  display: block;
  content:"";
  width:32%;
}

/* --------------------------------------------------------
  スライダー
-------------------------------------------------------- */
.hero__slider {
  width:100%;
  overflow: hidden;
}

.swiper {
  position:relative;
  margin:0 auto;
  width:50%;
  overflow: visible;
}

.swiper-wrapper li {
  background:#2b96cc;
}

.swiper-wrapper li.swiper-slide-visible img {
  opacity:1.0;
  transition: 0.2s;
}

.swiper-wrapper li:not(.swiper-slide-visible) img {
  opacity:0.4;
  mix-blend-mode: overlay;
  transition: 0.2s;
}

.swiper-pagination {
  position: relative;
  margin-top:5px;
}

.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: auto;
  left: auto;
}

.swiper-pagination-bullet {
  background: #c9f0f7;
  opacity:1.0;
}

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

.slider__title {
  font-size: 16px;
}

.swiper-button-next, .swiper-button-prev {
  top:calc((100% - 29px) / 2);
  margin-top:0;
  width: 40px;
  height: 40px;
  filter: drop-shadow(0px 0px 8px rgba(0,0,0,0.3));
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: 0;
  left: auto;
  transform: translate(50%,-50%);
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: 0;
  right: auto;
  transform: translate(-50%,-50%);
}

.swiper-button-next:after, .swiper-button-prev:after {
  content:'';
  display: inline-block;
  width:100%;
  height:100%;
  line-height: 1;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  background:url(/images/medical/2023/icon-next.svg) no-repeat;
  background-size: cover;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  background:url(/images/medical/2023/icon-prev.svg) no-repeat;
  background-size: cover;
}

/* --------------------------------------------------------
  ニュース
-------------------------------------------------------- */
#news {
  margin-top: 60px;
  background-color: #fff;
}

#news .inner-container {
  margin-top: 0;
}

.news__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0;
  margin: 0 auto;
  width: 1170px;
}

.news__innerColumn {
  width:48%;
}

.news__innerColumn .inner-box {
  position: relative;
  overflow: hidden;
  background-color: #fff;
  padding: 0;
}

.news__innerColumn .inner-box, .news__innerColumn:nth-child(2) .inner-box {
  background-color: #fff;
}

.news__innerColumn .inner-box .upper-box h4 a, .newslist li, .newslist li a {
  color: #333;
}

.newslist li a.label {
  color: #fff;
}

.news__innerColumn .inner-box .upper-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom:16px;
  border-bottom:2px solid #2b96cc;
}

.news__innerColumn .inner-box .titleWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}

.news__innerColumn .inner-box .upper-box .icon-box {
  margin-right: 10px;
  width: 24px;
  height: 24px;
}

.news__innerColumn .inner-box .list__title {
  font-size:20px;
  font-weight: bold;
}

.news__innerColumn .inner-box .jumptolist {
  position: relative;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1;
  text-align: right;
}

.news__innerColumn .inner-box .jumptolist a {
  color: #333;
}

.news__innerColumn .inner-box .jumptolist a:hover {
  color: #2b96cc;
}

.news__innerColumn .inner-box .jumptolist a:before {
  pointer-events: none;
  content: "\f138";
  font-family: "Font Awesome 5 Free";
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  margin-right:6px;
  color:#2b96cc;
  font-size: 16px;
  font-weight: bold;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.newslist .ellip__top:before {
  content: none;
}

.newslist li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  margin:0 0 20px 0;
  padding:0 0 20px 0;
  width:100%;
  height: auto;
  border-bottom:1px solid #ccc;
}

.newslist li:nth-last-child(2) {
  margin:0;
  border-bottom:none;
}

.newslist .newslist__bottom {
  margin:0;
  padding:0;
  border-bottom: none;
}

.newslist .newslist__bottom a {
  display: block;
  position: relative;
  width:100%;
  padding:15px;
  color:#333;
  font-size:14px;
  background:#f2f2f2;
  text-align: center;
  transition: 0.2s;
}

.newslist .newslist__bottom a:after {
  pointer-events: none;
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 10px;
  color:#2b96cc;
  font-size: 16px;
  font-weight: bold;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  transform: translate(0,-50%);
}

.newslist .newslist__bottom a:hover {
  color:#fff;
  background:#2b96cc;
  transition: 0.2s;
}

.newslist .newslist__bottom a:hover:after {
  color:#fff;
}

.newslist .ellip__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  width: 20%;
}

.newslist .ellip__right {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  align-items: center;
  width: 74%;
  overflow: hidden;
}

.newslist .ellip__right a {
  color:#333;
}

.newslist .ellip__right a:hover {
  color:#2b96cc;
}

.newslist .ellip__right .wrap-externalLink {
  display: inline;
  margin-left: 10px;
  color:#083770;
  font-size:13px;
}

.newslist .ellip__right .wrap-externalLink .label-externalLink:before {
  margin-left: 5px;
  font-size:14px;
}

.newsdate {
  display: block;
  width:100%;
  text-align: center;
}

.newstags {
  margin-top: 5px;
  margin-left: 0;
  padding: 4px;
  width:100%;
  text-align: center;
}

.subpage__contentsData .newstags {
  margin-top:0;
  margin-right:5px;
  width:auto;
}

/* --------------------------------------------------------
  about
-------------------------------------------------------- */
#member {
  position: relative;
  margin-top:60px;
}
.member__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  margin:0 auto;
  width:1170px;
}

.member__innerLeft {
  padding: 2px;
  width:280px;
  background:#2b96cc;
  box-sizing: border-box;
}

.member__innerLeft .menuTitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  width:100%;
  height:60px;
  color:#fff;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  line-height:1;
  box-sizing: border-box;
}

.member__innerLeft .menuList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin:0 auto;
  padding:15px;
  width:100%;
  height:calc(100% - 60px);
  background:#fff;
  box-sizing: border-box;
}

.member__innerLeft .menuList li {
  width:100%;
}

.member__innerLeft .menuList li + li {
  margin-top:5px;
}

.member__innerLeft .menuList li a {
  display: block;
  position: relative;
  padding:18px;
  width:100%;
  color:#333;
  font-size: 16px;
  background:#f2f2f2;
  text-align: center;
}

.member__innerLeft .menuList li:first-child a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color:#fff;
  font-weight: bold;
  background:#48bddf;
  transition: 0.2s;
}

.member__innerLeft .menuList li:first-child a:hover {
  background:#2b96cc;
}

.member__innerLeft .menuList li a:after {
  pointer-events: none;
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 10px;
  font-weight: bold;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  transform: translate(0,-50%);
}

.member__innerLeft .menuList li:not(:first-child) a:after {
  color:#2b96cc;
}

.member__innerLeft .menuList li a:hover {
  color:#fff;
  background:#48bddf;
  transition: 0.2s;
}

.member__innerLeft .menuList li:hover a:after {
  color: #fff;
}

.member__innerLeft .menuList li:first-child a .icon-box {
  margin-bottom:10px;
  width:24px;
  height:24px;
  overflow: hidden;
}

.member__innerLeft .menuList li:first-child a .icon-box img {
  width:100%;
  height:auto;
}

.member__innerRight {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width:min(70.9401%, 830px);
  background:#48bddf;
}

.member__innerRight .member__congress {
  position:relative;
  width:54%;
}

.member__innerRight figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  margin:0;
  padding:15px;
  width:43.374%;
  box-sizing: border-box;
  transition:0.2s;
}

.member__innerRight figure:hover {
  opacity: 0.8;
  transition:0.2s;
}

.member__innerRight figure img {
  width:100%;
  height:auto;
  font-size: 0;
  line-height:0;
}

.congress__innerTop {
  padding:30px 0 0 30px;
}

.congress__description {
  color:#fff;
  font-size:12px;
  line-height:1;
}

.congress__title {
  margin-top:10px;
  color:#fff;
  font-size:26px;
  font-weight: bold;
  line-height:1;
}

.congresslistWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}

.congress__innerTop ul {
  margin-top:40px;
  width:calc(100% - 120px);
}

.congress__innerTop ul li {
  line-height:1.3;
}

.congress__innerTop ul li + li {
  margin-top:5px;
}

.congress__innerTop ul li a {
  display: block;
  color:#fff;
  font-size:16px;
}

.congress__innerTop ul li a:hover {
  text-decoration: underline;
}

.congress__innerTop ul li a:before {
  pointer-events: none;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  margin-right:10px;
  font-weight: bold;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.congress__innerTop ul li a .label-externalLink:before {
  color: #fff;
}

.congresslistWrap .jumptolist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  width:120px;
}

.congresslistWrap .jumptolist a {
  color:#fff;
  line-height:1;
}

.congresslistWrap .jumptolist a:before {
  pointer-events: none;
  content: "\f138";
  font-family: "Font Awesome 5 Free";
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  margin-right: 6px;
  color: #fff;
  font-weight: bold;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.congresslistWrap .jumptolist a:hover {
  text-decoration: underline;
}

.congress__innerBottom {
  position: absolute;
  bottom:0;
  left:0;
  width:100%;
  height:54px;
}

.congress__innerBottom a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  position:relative;
  width:100%;
  height:100%;
  color:#fff;
  font-size:16px;
  background:#2b96cc;
  box-sizing: border-box;
  transition: 0.2s;
}

.congress__innerBottom a:after {
  pointer-events: none;
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 10px;
  font-weight: bold;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  transform: translate(0,-50%);
}

.congress__innerBottom a:hover {
  color:#2b96cc;
  background:#fff;
  transition: 0.2s;
}

.congress__innerBottom a:hover:after {
  color:#2b96cc;
}

/* --------------------------------------------------------
  medicalProfessionals
-------------------------------------------------------- */
#medicalProfessionals {
  margin-top:60px;
  padding:60px 0;
  background:#ebfbff;
  box-sizing: border-box;
}

.section__title {
  margin:0 auto;
  width:1170px;
  font-size:26px;
  font-weight: bold;
  line-height: 1.0;
}

.medicalProfessionals__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin:50px auto 0;
  width:1170px;
}

.medicalProfessionals__inner .inner__leftTop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
}

.medicalProfessionals__inner .inner__left {
  width:780px;
}

.medicalProfessionals__inner .inner__leftTop ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}

.medicalProfessionals__inner .inner__leftTop li {
  padding:15px 0 15px 20px;
  width:33.3333%;
  border-left:1px solid #2b96cc;
}

.medicalProfessionals__inner .inner__leftTop li:nth-child(3n) {
  padding-right:20px;
  border-right:1px solid #2b96cc;
}

.medicalProfessionals__inner .inner__leftTop li:nth-child(-n+3) {
  padding-top:0;
}

.medicalProfessionals__inner .inner__leftTop li:nth-last-child(-n+3) {
  padding-bottom:0;
}

.medicalProfessionals__inner .inner__leftTop li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  position:relative;
  width:100%;
  color:#333;
  font-size:16px;
  font-weight: bold;
}

.medicalProfessionals__inner .inner__leftTop li > a:hover {
  color:#fff;
}

.medicalProfessionals__inner .inner__leftTop li > a:before {
  content:'';
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:#2b96cc;
  transform: translate(0,0) scale(0,1.0);
  transform-origin: 100% 50%;
  transition: 0.4s;
  z-index: 0;
}

.medicalProfessionals__inner .inner__leftTop li > a:hover:before {
  transform: translate(0,0) scale(1.0,1.0);
  transition: 0.4s;
}

.medicalProfessionals__inner .icon-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  margin-right: 10px;
  width: 40px;
  height: 40px;
  color: #fff;
  font-size: 20px;
  background-color: #2b96cc;
}

.medicalProfessionals__inner span {
  position: relative;
  width:calc(100% - 50px);
  line-height:1.1;
}

.medicalProfessionals__inner .inner__leftBottom {
  margin-top:30px;
}

.medicalProfessionals__inner .inner__leftBottom ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.medicalProfessionals__inner .inner__leftBottom ul li {
  width:48%;
}

.medicalProfessionals__inner .inner__leftBottom li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  position: relative;
  width:100%;
  color:#fff;
  font-size:16px;
  font-weight:bold;
  background:#48bddf;
  transition: 0.2s;
}

.medicalProfessionals__inner .inner__leftBottom li > a:hover {
  background:#2b96cc;
  transition: 0.2s;
}

.medicalProfessionals__inner .inner__leftBottom li > a:after {
  pointer-events: none;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 10px;
  font-weight: bold;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  transform: translate(0,-50%);
}

.medicalProfessionals__inner .inner__leftBottom .icon-box {
  width: 60px;
  height: 60px;
}

.medicalProfessionals__inner .inner__right {
  width:340px;
}

.medicalProfessionals__inner .inner__right figure {
  position:relative;
  margin:0;
}

.medicalProfessionals__inner .inner__right figure img {
  width:100%;
  height:auto;
}

.medicalProfessionals__inner .inner__right figcaption {
  position:absolute;
  right:0;
  bottom:0;
  padding:10px;
  color:#2b96cc;
  font-size: 16px;
  font-weight: bold;
  background:#fff;
  transition: 0.2s;
}

.medicalProfessionals__inner .inner__right:hover figcaption {
  color:#fff;
  background:#2b96cc;
  transition: 0.2s;
}

.medicalProfessionals__inner .inner__right .fig__description {
  padding:20px 10px;
  width:100%;
  color:#333;
  font-size:14px;
  text-align: center;
}

/* --------------------------------------------------------
  pickup
-------------------------------------------------------- */
#pickup {
  padding:60px 0;
  background:#f2f2f2;
  box-sizing: border-box;
}

.pickup__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin:50px auto 0;
  width: 1170px;
}

.pickup__inner a {
  position: relative;
  width:23.077%;
  aspect-ratio:3/2;
  overflow: hidden;
  box-sizing: border-box;
}

.pickup__inner a:before {
  content:'';
  position:absolute;
  top:50%;
  left:50%;
  width:90%;
  height:auto;
  border:1px solid #fff;
  box-sizing: border-box;
  aspect-ratio:3/2;
  transform: translate(-50%,-50%);
  z-index: 1;
}

.pickup__inner a img {
  width:100%;
  height:auto;
  transition: 0.5s;
  transform: scale(1,1);
}

.pickup__inner a:hover img {
  transform: scale(1.2,1.2);
  transition: 0.5s;
}

.pickup__inner .pickup__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top:0;
  left:0;
  padding: 15px;
  width:100%;
  height:100%;
  color:#fff;
  font-size:16px;
  font-weight: bold;
}

/* --------------------------------------------------------
  旧CSS上書き
-------------------------------------------------------- */
#dialog .dialog__inner--banner a.banner-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size:18px;
}
#dialog .dialog__inner--banner a.banner-block::after {
  font-size:18px;
}
/* --------------------------------------------------------
  drawer navigation
-------------------------------------------------------- */
.header-sp {
  display:none;
  padding-left:15px;
  width:100%;
  height:60px;
}
.header-sp .drawer {
  
}
#nav-tgl {
  display: none;
}
.scroll-prevent {
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.nav-tgl-btn {
  display:none;
  cursor: pointer;
  position: fixed;
  top: 0;
  right: 0;
  margin: 0;
}
.drawer-open {
  z-index: 2;
  width: 60px;
  height: 60px;
  transition: background .6s, transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.drawer-open::before,
.drawer-open::after {
  content: "";
}
.drawer-open span,
.drawer-open::before,
.drawer-open::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 25%;
  width: 50%;
  border-bottom: 2px solid #2b96cc;
  transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
#general .drawer-open span, #general .drawer-open::before, #general .drawer-open::after {
  border-bottom: 2px solid #7acc60;
}
.drawer-open::before {
  transform: translateY(-10px);
}
.drawer-open::after {
  transform: translateY(10px);
}
.drawer-close {
  z-index: 1;
  top:60px;
  width: 100%;
  height: calc(100% - 60px);
  pointer-events: none;
  transition: background .6s;
}
#nav-tgl:checked+.drawer-open {
  background: #0075C1;
  transform: translateX(0);
}
#nav-tgl:checked+.drawer-open span {
  transform: scaleX(0);
}
#nav-tgl:checked+.drawer-open::before {
  transform: rotate(45deg);
}
#nav-tgl:checked+.drawer-open::after {
  transform: rotate(-45deg);
}
#nav-tgl:checked~.drawer-close {
  pointer-events: auto;
  background: rgba(0, 0, 0, .5);
}
.content-wrapper {
  transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
#nav-tgl:checked+.drawer-open::before, #nav-tgl:checked+.drawer-open::after {
  border-bottom: 2px solid #fff;
}
#nav-tgl:checked~.content-wrapper {
  transform: translateX(-250px);
}
.drawer-menu {
  z-index: 999;
  position: fixed;
  top: 60px;
  right: 0;
  padding:30px 0;
  width:100%;
  height:calc(100vh - (60px));
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  background:#ebfbff;
  box-sizing: border-box;
  transform: translateX(100%);
  transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
#nav-tgl:checked~.drawer-menu {
  transform: none;
}
.drawer-menu > ul {
  margin:0 auto;
  padding-bottom:30px;
  width:84%;
  box-sizing: border-box;
}
.drawer-menu > ul > li +li {
  margin-top:15px;
}
.drawer-menu .single a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  padding:15px;
  width: 100%;
  color:#333;
  font-size:16px;
  font-weight: bold;
  background:#fff;
  box-sizing: border-box;
}
.header-sp .drawer-menu .single a.btn-mypage {
  color:#fff;
  background:#b94346;
}
.header-sp .drawer-menu .single a.btn-mypage:after {
  pointer-events: none;
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  margin-left: 20px;
  font-weight: bold;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
.drawer-dropdown-menu {
  display: none;
  width: 90%;
  margin: 20px auto 0;
  padding: 0;
  box-sizing: border-box;
}
.drawer-dropdown.open>.drawer-dropdown-menu {
  display: block;
}
.drawer-dropdown-menu li + li {
  margin-top:15px;
}
.drawer-dropdown-menu li:first-child {
  padding-bottom:8px;
  border-bottom:1px solid #2a97cb;
}
.drawer-dropdown-menu a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  position: relative;
  color:#333;
  font-size:13px;
}
.drawer-dropdown-menu a:before {
  pointer-events: none;
  content: "\f068";
  font-family: "Font Awesome 5 Free";
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  margin-right: 10px;
  color: #2b96cc;
  font-weight: bold;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  box-sizing: border-box;
}
.drawer-dropdown-menu li:first-child a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  font-size:15px;
  font-weight: bold;
}
.drawer-dropdown-menu li:first-child a:before {
  pointer-events: none;
  content: "\f138";
  font-family: "Font Awesome 5 Free";
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  margin-right: 6px;
  color: #2b96cc;
  font-weight: bold;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
.drawer-dropdown-menu li:not(:first-child) a {
  padding-left:12px;
}
.drawer-menu li > .btn__toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  margin:0;
  padding:15px;
  width: 100%;
  color:#333;
  font-size:16px;
  font-weight: bold;
  background:#fff;
  box-sizing: border-box;
}
.drawer-menu li > .btn__toggle.open {
  color:#fff;
  background:#2b96cc;
}
.drawer-menu li > a:hover {
  text-decoration: none;
}
.drawer-menu li > p {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  padding:15px;
  width: 100%;
  color:#333;
  font-size:13px;
  font-weight: bold;
  line-height:160%;
  box-sizing: border-box;
}
.drawer-menu li > p:hover {
  text-decoration: none;
}
.drawer-menu li > a > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.drawer-menu li > p:after {
  pointer-events: none;
  font-family: "Font Awesome 5 Free";
  content: "\f067";
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  margin-left: 20px;
  color:#2b96cc;
  font-weight: bold;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
.drawer-menu li > p.open:after {
  content: "\f068";
  color:#fff;
}

/* --------------------------------------------------------
  レスポンシブ
-------------------------------------------------------- */
@media screen and (max-width: 1170px) {
  .toppage, .subpage {
    padding-top: 60px;
  }
  header {
    height:60px;
  }
  header > .logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    left: 10px;
    width:280px;
  }
  header > .logo img {
    width:100%;
    height:auto;
  }
  .header-pc {
    display:none;
  }
  .globalNavi li:not(:first-child):hover:before {
    content:none;
  }
  .header-sp {
    display:block;
  }
  .nav-tgl-btn {
    display: block;
  }
  .swiper-button-next, .swiper-button-prev {
    top:calc((100% - 29px) / 2);
    width: 30px;
    height: 30px;
  }
  .news__inner, .member__inner, .medicalProfessionals__inner, .pickup__inner, .section__title {
    width: 94%;
  }
  .member__innerRight {
    width: calc(100% - 300px);
  }
  .member__innerRight .member__congress {
    width: 100%;
  }
  .congress__innerTop {
    padding: 30px 30px 0 30px;
  }
  .congress__innerBottom {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top:20px;
  }
  .member__innerRight figure {
    margin-top:10px;
    width: 100%;
  }
  .medicalProfessionals__inner .inner__left {
    width: 76%;
  }
  .medicalProfessionals__inner .inner__right {
    width: 22%;
  }
  .medicalProfessionals__inner .inner__leftTop li > a {
    font-size: clamp(0.75rem, 0.272rem + 1vw, 1rem);
  }
}

@media screen and (max-width: 768px) {
  .swiper {
    width: 80%;
  }
  #news, #member, #medicalProfessionals {
    margin-top: 35px;
  }
  .news__innerColumn {
    width: 100%;
  }
  .news__innerColumn .inner-box .list__title {
    font-size: 18px;
  }
  .news__innerColumn + .news__innerColumn {
    margin-top:35px;
  }
  .newslist .ellip__right {
    -webkit-box-orient: unset;
    -webkit-line-clamp: unset;
    overflow:visible;
  }
  .newslist .newslist__bottom a {
    padding-right:30px;
  }
  .member__inner {
    position: relative;
    padding-bottom: 50px;
  }
  .member__innerLeft {
    width:100%;
  }
  .member__innerRight {
    margin-top:50px;
    width:100%;
  }
  .member__innerRight .member__congress {
    display: contents;
  }
  .member__innerRight figure {
    margin:30px auto 0;
    padding:0 0 15px;
    width: 94%;
  }
  .congress__innerTop ul {
    width: 100%;
  }
  .congresslistWrap .jumptolist {
    margin-top:20px;
    justify-content: flex-start;
    width: 100%;
  }
  .congress__innerBottom {
    position:absolute;
    bottom:0;
    margin-top:0;
  }
  #medicalProfessionals {
    padding: 35px 0;
  }
  .medicalProfessionals__inner {
    margin-top: 35px;
  }
  .medicalProfessionals__inner .inner__left {
    width: 100%;
  }
  .medicalProfessionals__inner .inner__leftTop li {
    padding-left:0;
    width: 50%;
    border-left:0;
  }
  .medicalProfessionals__inner .inner__leftTop li:nth-child(3n) {
    padding-right: 0;
    border-right: none;
  }
  .medicalProfessionals__inner .inner__leftTop li:nth-child(-n+3) {
    padding-top: 15px;
  }
  .medicalProfessionals__inner .inner__leftTop li:nth-child(-n+2) {
    padding-top: 0;
  }
  .medicalProfessionals__inner .inner__leftTop li:nth-last-child(-n+3) {
    padding-bottom: 15px;
  }
  .medicalProfessionals__inner .inner__leftTop li:nth-child(odd) {
    padding-right: 10px;
    border-right: 1px solid #2b96cc;
  }
  .medicalProfessionals__inner .inner__leftTop li:nth-child(even) {
    padding-left: 10px;
  }
  .medicalProfessionals__inner .inner__leftTop li > a {
    font-size: 14px;
  }
  .medicalProfessionals__inner .inner__right {
    margin-top:35px;
    width: 100%;
  }
  .medicalProfessionals__inner .inner__leftBottom ul li {
    width: 100%;
  }
  .medicalProfessionals__inner .inner__leftBottom ul li + li {
    margin-top:15px;
  }
  #pickup {
    padding:50px 0;
  }
  .pickup__inner {
    margin-top: 35px;
  }
  .pickup__inner a {
    width: 100%;
  }
  .pickup__inner a + a {
    margin-top:15px;
  }
}