@charset "UTF-8";
/******************************************************************************
******************************************************************************
**
** style.cssにおいて ( var.3.1.3 )
** -- baseでは基本タグとサイト大枠のCSS指定
** -- headerではヘッダーのCSS指定
** -- global navではグローバルナビのCSS指定
** -- contentではコンテント・メイン・サイドナビのCSS指定
** -- footerではフッターのCSS指定
** -- pagetopではページトップボタンのCSS指定
** -- indexではトップページのCSS指定
** -- pageでは汎用ページのCSS指定
** -- styleでは汎用ページのコンテンツ（データ入れ）で使用する基本タグのCSS指定
**
** 注意事項
** -- CSSの命名規則はApplicatsオリジナルの命名規則を採用しています。
** -- 初期フォントサイズはreset.cssにて13pxにリセットしています。
** -- 行間は1.6にリセットしています。
**        単位は不要です。(スタイル崩れする可能性有)
** -- コンテンツ内のフォントサイズ・行間は
**        [ base ]のcontentsクラスで指定しています。
**        変更する場合はこちらを変更してください。
**
******************************************************************************
******************************************************************************/
/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** PCスタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** color
***************************************************************** *************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** base
***************************************************************** *************
----------------------------------------------------------------------------*/
html .mcon_txt * {
  font-size: 14px;
}

.w_base {
  width: 100%;
  margin: 0 auto;
  max-width: 1200px;
  padding-right: 10px;
  padding-left: 10px;
}

.pc_none {
  display: block !important;
}

.sp_none {
  display: none !important;
}

/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
  background: #fff;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  border-bottom: 1px solid #ccc;
}
.hd_bg .hd {
  padding-top: 15px;
  padding-bottom: 10px;
  background: #fff;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-right: 60px;
}
.hd_bg .hd .hd_left img {
  max-width: 620px;
  width: 100%;
}
.hd_bg .hd .hd_right {
  display: flex;
  align-items: center;
  gap: 25px;
  justify-content: center;
  position: absolute;
  left: 0;
  bottom: calc(-100dvh + 53px);
  width: 100%;
  background: #fff;
  border-top: 1px solid #ccc;
  padding: 15px 0;
  padding-right: 20px;
  padding-bottom: calc(env(safe-area-inset-bottom) + 15px);
}
.hd_bg .hd .hd_right li a {
  text-decoration: none;
  color: #435259;
  font-size: 14px;
  font-weight: bold;
  white-space: nowrap;
}

/*----------------------------------------------------------------------------
******************************************************************************
** global nav ハンバーガーメニュー版
******************************************************************************
----------------------------------------------------------------------------*/
nav {
  width: 100% !important;
  height: calc(100% + 500px);
  padding-bottom: 500px;
  position: fixed;
  top: 0;
  right: -100%;
  padding-top: 15vw;
  overflow-x: none;
  overflow-y: auto;
  z-index: -1;
  background: #EBF4FD;
  transition: All 0.3s ease;
  border-left: 1px solid #ccc;
}
nav.sp_nav_open {
  display: block;
  right: 0;
}

/*メインメニュー*/
.nav_list {
  width: 100%;
  padding: 0 1em;
}
.nav_list li {
  position: relative;
}
.nav_list li a {
  display: block;
  color: #435259;
  text-decoration: none;
}
.nav_list > li {
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  /*メニュートリガー（共通）*/
}
.nav_list > li:last-child {
  border: none;
}
.nav_list > li > a {
  position: relative;
  padding: 1.3em 0 1.3em 10px;
  font-size: 15px;
  font-weight: bold;
}
.nav_list > li .sub-menu-trigger {
  position: absolute;
  top: 1em;
  right: 8px;
  z-index: 10;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: 0.2s ease;
}
.nav_list > li .sub-menu-trigger:after {
  content: "";
  background: url(../images/right-kaku-bold.svg) no-repeat;
  background-size: contain;
  width: 20px;
  height: 12px;
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
}
.nav_list > li .sub-menu-trigger.close {
  transform: rotate(180deg);
}
.nav_list > li > .sub_menu_wrap {
  display: none;
}
.nav_list > li > .sub_menu_wrap > .sub_menu_con {
  padding: 0;
  background: #435259;
  /* メニュー（子・孫）*/
  /* メニュー（子）*/
}
.nav_list > li > .sub_menu_wrap > .sub_menu_con .sub-menu {
  padding: 0 1em;
}
.nav_list > li > .sub_menu_wrap > .sub_menu_con .sub-menu li > a {
  display: block;
  font-weight: 500;
  padding: 1em 1em 1em 8px;
  text-decoration: none;
  color: #fff;
  transition: 0.2s ease;
}
.nav_list > li > .sub_menu_wrap > .sub_menu_con .sub-menu li:last-child {
  border: none;
}
.nav_list > li > .sub_menu_wrap > .sub_menu_con > .sub-menu {
  transition: All 0.5s ease;
}
.nav_list > li > .sub_menu_wrap > .sub_menu_con > .sub-menu > li {
  position: relative;
  border-bottom: 1px solid rgb(98, 115, 127);
  /*メニュートリガー（子）*/
  /* メニュー（孫）*/
}
.nav_list > li > .sub_menu_wrap > .sub_menu_con > .sub-menu > li > a {
  font-size: 1rem;
}
.nav_list > li > .sub_menu_wrap > .sub_menu_con > .sub-menu > li .sub-menu-trigger {
  transform: scale(0.7);
  top: 0.4em;
}
.nav_list > li > .sub_menu_wrap > .sub_menu_con > .sub-menu > li .sub-menu-trigger:after {
  background: url(../images/mcon/right-kaku_white.svg) no-repeat;
  background-size: contain;
}
.nav_list > li > .sub_menu_wrap > .sub_menu_con > .sub-menu > li .sub-menu-trigger.close {
  transform: scale(0.7) rotate(180deg);
}
.nav_list > li > .sub_menu_wrap > .sub_menu_con > .sub-menu > li > .sub_menu_wrap {
  display: none;
}
.nav_list > li > .sub_menu_wrap > .sub_menu_con > .sub-menu > li > .sub_menu_wrap > .sub_menu_con > .sub-menu {
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.nav_list > li > .sub_menu_wrap > .sub_menu_con > .sub-menu > li > .sub_menu_wrap > .sub_menu_con > .sub-menu > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.nav_list > li > .sub_menu_wrap > .sub_menu_con > .sub-menu > li > .sub_menu_wrap > .sub_menu_con > .sub-menu > li > a {
  position: relative;
  font-size: 0.9rem;
  font-weight: 400;
}
.nav_list > li > .sub_menu_wrap > .sub_menu_con > .sub-menu > li > .sub_menu_wrap > .sub_menu_con > .sub-menu > li > a:before {
  content: "・";
  display: inline-block;
  color: #fff;
  margin-right: 0.3em;
  font-size: 0.8em;
}
.nav_list > li > .sub_menu_wrap > .sub_menu_con > .sub-menu > li > .sub_menu_wrap > .sub_menu_con > .sub-menu > li:last-child {
  border-bottom: none;
}

/*ハンバーガーメニュー*/
.sp_nav_trigger {
  width: 30px;
  height: 24px;
  margin-top: -5px;
  position: fixed !important;
  top: 20px;
  right: 15px;
  cursor: pointer;
  z-index: 1000;
}
.sp_nav_trigger span {
  width: 100%;
  height: 4px;
  display: inline-block;
  position: absolute;
  left: 0;
  background-color: #435259;
  border-radius: 4px;
  transition: all 0.4s;
  box-sizing: border-box;
}
.sp_nav_trigger span:nth-of-type(1) {
  top: 0;
}
.sp_nav_trigger span:nth-of-type(2) {
  top: 10px;
}
.sp_nav_trigger span:nth-of-type(3) {
  bottom: 0;
}
.sp_nav_trigger.sp_active span:nth-of-type(1) {
  transform: translateY(10px) rotate(-45deg);
}
.sp_nav_trigger.sp_active span:nth-of-type(2) {
  opacity: 0;
}
.sp_nav_trigger.sp_active span:nth-of-type(3) {
  transform: translateY(-10px) rotate(45deg);
}

/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {
  padding-bottom: 55px;
  background: #EBF4FD;
}
.ft_bg a {
  text-decoration: none;
  color: #435259;
  white-space: nowrap;
}
.ft_bg .ft {
  display: none;
}
.ft_bg .ft_copy {
  padding: 15px 0 15px;
  background: #0862B6;
  color: #fff;
  text-align: center;
  font-size: 12px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  position: fixed;
  right: 0;
  bottom: 8px;
  z-index: 1;
  z-index: 100;
}
.pt:after {
  content: "";
  width: 16px;
  height: 16px;
  display: inline-block;
  background: url(../images/right-kaku-bold.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-180deg);
}

/*----------------------------------------------------------------------------
******************************************************************************
** pager
******************************************************************************
----------------------------------------------------------------------------*/
.pager {
  margin: 40px 0 0;
}
.pager .pager_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.pager .pager_list .page-numbers {
  border: 1px solid #435259;
  border-radius: 5px;
  color: #435259 !important;
  display: block;
  font-size: 1rem;
  margin: 0 2px;
  padding: 5px 0;
  text-decoration: none;
  text-align: center;
  width: 2.4rem;
  transition: all 0.5s ease;
}
.pager .pager_list .page-numbers:not(.dots):hover, .pager .pager_list .page-numbers.current {
  background: #435259;
  color: #FFF !important;
}
.pager .pager_list .page-numbers.dots {
  border-color: #435259;
}

/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
/*共通スタイル*/
.index_main h2.h2_1 {
  font-size: 1.3rem;
  margin-bottom: 0.7em;
  padding: 0 10px;
}
.index_main h2.h2_1:before {
  content: "";
  background: url(../images/new.svg) no-repeat;
  background-size: contain;
  width: 26px;
  height: 26px;
  display: inline-block;
  margin-right: 15px;
  vertical-align: middle;
}
.index_main h2.h2_2 {
  text-align: center;
  margin-bottom: 1.6em;
  line-height: 1.3;
}
.index_main h2.h2_2 span {
  font-weight: 500;
  font-size: 1.3rem;
  border-bottom: 1px solid #0862B6;
  padding-bottom: 5px;
}
.index_main .txt {
  margin: 1.8rem 0 2.5rem;
  color: #000;
  line-height: 2;
  -moz-text-align-last: left;
       text-align-last: left;
}
.index_main .txt br {
  display: none;
}
.index_main .link_list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  gap: 36px;
}
.index_main .link_list li a {
  position: relative;
  display: block;
  text-decoration: none;
  color: #435259;
  font-size: clamp(1.063rem, 0.727rem + 0.7vw, 1.25rem); /*17px-20px*/
  border-radius: 10px;
}
.index_main .link_list li a img {
  width: 100%;
  min-width: 340px;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 85/57;
  border-radius: 10px;
  transition: 0.2s;
}
.index_main .link_list li a span {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80%;
  max-width: 280px;
  height: 60px;
  padding-right: 60px;
  padding-left: 15px;
  display: flex;
  align-items: center;
  border-radius: 0 6px 0 0;
  background: url(../images/right.svg) no-repeat #fff;
  background-size: 16px;
  background-position: right 20px center;
  transition: 0.2s;
}
.index_main .link_list li a:hover img {
  opacity: 0.5;
}
.index_main .link_list li a:hover span {
  color: #0862B6;
  background-position: right 15px center;
}
.index_main .link_list:after {
  content: "";
  display: inline-block;
  width: calc(33.3333333333% - 24px);
}

/*スライダー*/
.index_img {
  position: relative;
  padding-top: 56px;
}
.index_img .img img {
  width: 100%;
  min-height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}
.index_img .catchcopy_wrap {
  position: absolute;
  left: 50%;
  bottom: 40px;
  width: 100%;
  transform: translateX(-50%);
}
.index_img .catchcopy_wrap .catchcopy > * {
  color: #fff;
}
.index_img .catchcopy_wrap .catchcopy .ttl {
  font-size: 35px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  text-indent: -1.2rem;
  line-height: 1;
}
.index_img .catchcopy_wrap .catchcopy .sub_ttl {
  font-size: 15px;
  margin: 30px 0;
}
.index_img .catchcopy_wrap .catchcopy button {
  background: transparent;
  border: none;
}
.index_img .catchcopy_wrap .catchcopy button.arr a {
  display: inline-block;
  width: 272px;
  padding-top: 15px;
  padding-bottom: 18px;
  padding-left: 40px;
  text-decoration: none;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 27px;
  -moz-text-align-last: left;
       text-align-last: left;
  line-height: 1;
  font-size: 14px;
  background: url(../images/right_whight.svg) no-repeat;
  background-size: contain 16px;
  background-position: right 22px center;
  transition: 0.3s;
}
.index_img .catchcopy_wrap .catchcopy button.arr a:hover {
  background: url(../images/right_whight.svg) no-repeat #0862B6;
  background-size: contain 16px;
  background-position: right 22px center;
  border-color: transparent;
}

/*お知らせ*/
#news {
  position: relative;
  /*お知らせ一覧*/
}
#news:before {
  content: "";
  background: #EBF4FD;
  width: 100vw;
  height: 370px;
  position: absolute;
  top: -55px;
  left: 0;
  z-index: -1;
}
#news .news_wrap {
  padding: 0 10px;
}
#news .news_wrap .news_con {
  max-width: 1100px;
  margin: 55px auto 65px;
  padding: 35px 10px 50px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
}
#news .news_wrap .news_con .news_arr {
  text-align: right;
  float: right;
  margin-top: 5px;
  padding-right: 10px;
}
#news .news_wrap .news_con .news_arr a {
  text-decoration: none;
  color: #435259;
  transition: 0.2s;
}
#news .news_wrap .news_con .news_arr a:after {
  content: "";
  background: url(../images/right.svg) no-repeat;
  background-size: contain;
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-left: 10px;
  transition: 0.2s;
}
#news .news_wrap .news_con .news_arr a:hover {
  color: #0862B6;
}
#news .news_wrap .news_con .news_arr a:hover::after {
  transform: translateX(3px);
}
#news .news_wrap .news_con .news_scrl dl {
  display: flex;
  flex-direction: column;
  padding: 10px;
  border-bottom: 1px solid rgba(68, 83, 90, 0.3);
  /*dd aタグを持つdlの中にあるdt*/
}
#news .news_wrap .news_con .news_scrl dl dt {
  font-family: "Open Sans", sans-serif;
  display: flex;
  gap: 15px;
}
#news .news_wrap .news_con .news_scrl dl dt time {
  font-size: 14px;
}
#news .news_wrap .news_con .news_scrl dl dt span {
  font-size: 12px;
  width: 51px;
  height: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(68, 83, 90, 0.5);
  border-radius: 10px;
}
#news .news_wrap .news_con .news_scrl dl dd a {
  color: #435259;
}
#news .news_wrap .news_con .news_scrl dl dd a:hover {
  color: #0862B6;
}
#news .news_wrap .news_con .news_scrl dl:has(dd a:hover) dt {
  color: #0862B6;
}
#news.news_archive .news_wrap {
  padding: 0;
}
#news.news_archive .news_wrap .news_con {
  padding: 0;
  margin: 0 auto;
  box-shadow: none;
}
#news.news_archive:before {
  display: none;
}

/*埋め込み動画*/
#top_video iframe {
  max-width: 1100px;
  width: 100%;
  aspect-ratio: 16/9;
}

/*患者さんへ*/
#for-patient {
  margin-bottom: 41px;
}

/*採用案内*/
#recruit {
  position: relative;
  padding: 50px 0 10px;
  background: url(../images/recruit_bg.jpg);
  z-index: 1;
}
#recruit:before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(8, 97, 181, 0.38);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
#recruit * {
  color: #fff;
  text-align: center;
}
#recruit .h2_2 span {
  font-size: 1.3rem;
  border-color: #fff;
}
#recruit .recruit_list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  gap: 37px;
}
#recruit .recruit_list li button.arr {
  width: 100%;
  margin-bottom: 20px;
  background: transparent;
  border: none;
}
#recruit .recruit_list li button.arr a {
  display: block;
  max-width: 100%;
  padding-top: 15px;
  padding-bottom: 18px;
  text-decoration: none;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 27px;
  line-height: 1;
  font-size: 16px;
  background: url(../images/right_whight.svg) no-repeat;
  background-size: 14px;
  background-position: right 22px center;
  transition: 0.3s;
}
#recruit .recruit_list li button.arr a:hover {
  background: url(../images/right.svg) no-repeat #fff;
  background-size: 14px;
  background-position: right 22px center;
  border-color: #0862B6;
  color: #0862B6;
}
#recruit .recruit_list li .list_txt {
  font-size: 13px;
  line-height: 2;
}
#recruit .recruit_list:after {
  content: "";
  display: inline-block;
  width: calc(33.3333333333% - 25px);
}

/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
/****** 検査部の紹介 ******/
/*--東京大学検査部基本理念--*/
.idea_box {
  position: relative;
  margin: 3.5em 0 2em;
  padding: 0 10px 0 32px !important;
  counter-reset: li;
  list-style: none;
  font-weight: bold;
}
.idea_box li {
  padding: 2em;
  position: relative;
  line-height: 1.5;
  margin: 0 0 1.4em;
  padding: 0;
  font-size: 16px;
}
.idea_box li:before {
  counter-increment: li;
  content: counter(li) "";
  width: 20px;
  height: 20px;
  padding: 3px 0 4px;
  position: absolute;
  top: 0px;
  left: -30px;
  color: #fff;
  background: #ffc33c;
  border-radius: 100%;
  box-sizing: border-box;
  font-weight: bold;
  font-size: 12px;
  text-align: center;
  line-height: 1;
}
.idea_box li a {
  text-decoration: none;
  color: #333;
}
.idea_box li a:hover {
  text-decoration: underline;
}

/*--歴史と沿革--*/
.history_tbl td {
  font-size: 10px;
  border-color: #ccc !important;
}
.history_tbl td:first-child {
  width: 80px;
  padding-right: 10px;
  padding-left: 10px;
  white-space: nowrap;
  background: #0862B6;
  color: #fff;
  border-bottom-color: #357ec3 !important;
}

/*各検査室の歩み*/
.ayumi_tbl td:not([colspan="3"]):first-child {
  color: #435259;
  background: #e4f2ff;
}

/*ご挨拶*/
.greeting_box {
  flex-direction: column-reverse;
  gap: 0 !important;
}
.greeting_box .wp-block-column {
  width: 100%;
}
.greeting_box img {
  width: 120px !important;
}
.greeting_box figure {
  width: 100%;
  text-align: center;
}

/*--組織とメンバー紹介--*/
/*共通*/
.member_tbl td {
  font-size: 10px;
  border-color: #ccc !important;
}
.member_tbl td:first-child {
  width: 80px;
  padding-right: 10px;
  padding-left: 10px;
  white-space: nowrap;
  background: #0862B6;
  color: #fff;
  border-bottom-color: #357ec3 !important;
}

/*メンバー紹介*/
.member_tbl_wrap {
  gap: 5px;
}

/****** 臨床検査業務 ******/
/*--東大病院における臨床検査業務--*/
.gyoumu_tbl th,
.gyoumu_tbl td {
  font-size: 5px;
}
.gyoumu_tbl th {
  background-color: #0862B6 !important;
  color: #fff;
}
.gyoumu_tbl td {
  border-color: #ccc !important;
}

/****** 教育・研修関連 ******/
/****** 研究紹介 ******/
/*--業績--*/
.mcon_txt.mcon_txt_col2 .mcon_txt_left {
  width: calc(100% - 50px - 10px);
  position: fixed;
  top: 150px;
  right: calc(-100% + 50px + 10px);
  transition: 0.3s ease;
  z-index: 10;
}
.mcon_txt.mcon_txt_col2 .mcon_txt_left.sp_open {
  right: 0;
}
.mcon_txt.mcon_txt_col2 .mcon_txt_right .wp-block-group {
  display: none;
}
.mcon_txt.mcon_txt_col2 .mcon_txt_right .wp-block-group.active {
  display: block;
}

/*目次*/
#auto_list {
  list-style-type: none;
  max-height: 80vh;
  overflow: auto;
  padding: 1em;
  background: #0862B6;
  /*第一階層*/
}
#auto_list a {
  display: block;
  padding: 10px;
  text-decoration: none;
  font-size: 12px;
  background: #fff;
}
#auto_list ol {
  list-style-type: none;
  padding-left: 0;
}
#auto_list > ol {
  border: 1px solid #fff;
}
#auto_list > ol > li {
  /*第二階層*/
}
#auto_list > ol > li > a {
  position: relative;
  color: #fff;
  background: #435259;
  line-height: 1.3;
  padding-right: 30px;
}
#auto_list > ol > li > a:after {
  content: "";
  width: 15px;
  height: 15px;
  background: url(../images/right-kaku_white.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 13px;
  right: 10px;
  transform: rotate(90deg);
}
#auto_list > ol > li > ol {
  display: none;
}
#auto_list > ol > li > ol > li {
  border-bottom: 1px dotted #ccc;
}
#auto_list > ol > li > ol > li > a {
  color: #000;
  transition: 0.2s;
}
#auto_list > ol > li > ol > li > a:hover {
  background: rgba(204, 204, 204, 0.1882352941);
}
#auto_list > ol > li.open > a {
  background: #0862B6;
}
#auto_list > ol > li.open > ol {
  display: block;
}

.auto_list_trigger {
  position: absolute;
  left: -50px;
  top: 0;
  width: 50px;
  height: 50px;
  font-size: 12px !important;
  white-space: nowrap;
  border-radius: 50% 0 0 50%;
  background: #0862B6;
  transition: 0.3s ease;
}
.auto_list_trigger:after {
  content: "目次";
  font-weight: bold;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/****** 患者さんへのご案内 ******/
/****** リクルート ******/
/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.main {
  padding-top: 55px;
}

.mcon {
  word-wrap: break-word;
}
.mcon .mcon_ttl {
  background: #0862B6;
}
.mcon .mcon_ttl h1 {
  color: #fff;
  padding-top: 8vw;
  padding-bottom: 20px;
  font-weight: 500;
  font-size: 18px;
}
.mcon .mcon_txt {
  padding-top: 45px;
  padding-bottom: 120px;
}
.mcon .mcon_txt a img:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}
.mcon .mcon_txt h2 {
  margin-bottom: 2.3em;
  padding: 0.5em;
  font-size: 18px;
  font-weight: 500;
  color: #010101;
  background: #f1f1f1;
  border-bottom: dotted 3px #516ab6;
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
}
.mcon .mcon_txt h2:nth-child(n+2) {
  margin-top: 5.8em;
}
.mcon .mcon_txt h3 {
  margin: 1.8em 0 0.5em;
  padding: 0 0 0.5em 0.7em;
  color: #505050;
  vertical-align: middle;
  position: relative;
  font-size: 18px;
  border-bottom: 1px solid #0862B6;
  line-height: 1;
}
.mcon .mcon_txt h3:after {
  content: "";
  width: 5px;
  height: 80%;
  background: #0862B6;
  position: absolute;
  top: 0;
  left: 0;
}
.mcon .mcon_txt h4 {
  border-left: 5px solid #ccc;
  font-size: 16px;
  padding-left: 0.5em;
  margin-top: 1.3em;
  margin-bottom: 0.3em;
}
.mcon .mcon_txt h5 {
  text-align: center;
  position: relative;
  margin: 2em 0 0em;
  padding: 0 0 0.5em 0;
  font-size: 18px;
  bottom: none;
  line-height: 1;
  text-align: left;
}
.mcon .mcon_txt h5:before {
  content: "〇";
  color: #0862B6;
  margin-right: 8px;
}
.mcon .mcon_txt h5 span {
  border: none;
  margin: 0;
  padding: 0;
}
.mcon .mcon_txt h6 {
  margin-bottom: 1.2em;
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
}
.mcon .mcon_txt p {
  margin-bottom: 2em;
}
.mcon .mcon_txt ul {
  list-style-type: disc;
}
.mcon .mcon_txt ol,
.mcon .mcon_txt ul {
  padding-left: 1.8em;
}

/*----------------------------------------------------------------------------
******************************************************************************
** wordpress　ブロック　スタイル
******************************************************************************
----------------------------------------------------------------------------*/
/*画像キャプション*/
.wp-element-caption {
  font-size: 14px;
  text-align: center;
}

/*カラムブロック*/
.wp-block-columns {
  margin-bottom: 0;
}

/*ギャラリー*/
.gallery_grid > * {
  border: solid 1px #CACACA !important;
  box-sizing: border-box !important;
  flex-grow: inherit !important;
}
.gallery_grid > * img {
  aspect-ratio: 4/3;
}
.gallery_grid > * figcaption {
  position: relative !important;
  overflow: visible !important;
  font-size: 12px !important;
  color: #000 !important;
  background: none !important;
  -moz-text-align-last: left !important;
       text-align-last: left !important;
}/*# sourceMappingURL=sp.css.map */