@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
***************************************************************** *************
----------------------------------------------------------------------------*/
body {
  overflow-x: hidden;
}

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

.pc_none {
  display: none !important;
}
@media screen and (max-width: 1299px) {
  .pc_none {
    display: block !important;
  }
}

@media screen and (max-width: 1299px) {
  .sp_none {
    display: none !important;
  }
}

/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
  padding-top: 15px;
  background: #fff;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}
@media screen and (max-width: 1299px) {
  .hd_bg {
    border-bottom: 1px solid #ccc;
  }
}
.hd_bg .hd {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 10px;
  padding-right: 0px;
  padding-left: 0px;
}
@media screen and (max-width: 1299px) {
  .hd_bg .hd {
    padding-right: 60px;
  }
}
.hd_bg .hd .hd_left img {
  width: 750px;
}
.hd_bg .hd .hd_right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 1299px) {
  .hd_bg .hd .hd_right {
    justify-content: center;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #ccc;
    padding: 15px 0;
  }
}
.hd_bg .hd .hd_right li a {
  text-decoration: none;
  color: #435259;
  padding-left: 30px;
  font-size: 14px;
}
.hd_bg .hd .hd_right li a.lang {
  background: url(../images/lang.svg) no-repeat;
  background-size: 20px;
  background-position: 0 center;
  display: inline-block;
}
.hd_bg .hd .hd_right li a.contact {
  background: url(../images/mail.svg) no-repeat;
  background-size: 20px;
  background-position: 0 center;
  display: inline-block;
}
.hd_bg .hd .hd_right li a.link {
  background: url(../images/link.svg) no-repeat;
  background-size: 16px;
  background-position: 0 center;
  display: inline-block;
}
.hd_bg .hd .hd_right li a.dousoukai {
  background: url(../images/password.svg) no-repeat;
  background-size: 19px;
  background-position: 0 center;
  display: inline-block;
}

/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
@media screen and (min-width: 1300px) {
  nav {
    overflow: visible;
  }
  /* メインメニュー*/
  .nav_list {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    /*共通のスタイル*/
  }
  .nav_list li {
    height: 100%;
  }
  .nav_list li a {
    text-decoration: none;
  }
  .nav_list > li {
    z-index: 1000;
  }
  .nav_list > li > a {
    position: relative;
    display: block;
    padding: 15px 40px;
    text-align: center;
    font-size: 15px;
    color: #435259;
    white-space: nowrap;
    transition: 0.2s;
  }
  .nav_list > li.current > a {
    color: #0862B6;
  }
  .nav_list > li:hover > a {
    background: #0862B6;
    color: #fff;
  }
  .nav_list > li:hover > .sub_menu_wrap {
    display: block;
    animation: nav_active 0.4s ease 0s 1 alternate;
  }
  .nav_list > li > .sub_menu_wrap {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    max-width: 1100px;
    background: #0862B6;
  }
  .nav_list > li > .sub_menu_wrap > .sub_menu_con {
    max-width: 1100px;
    margin: 0 auto;
    padding: 45px 110px 40px 0;
    display: flex;
    justify-content: space-between;
    /* メニュー（子・孫）*/
    /* メニュー（子）*/
  }
  .nav_list > li > .sub_menu_wrap > .sub_menu_con > .sub-menu-ttl {
    width: 273px;
    font-size: 16px;
    text-align: center;
    color: #fff;
  }
  .nav_list > li > .sub_menu_wrap > .sub_menu_con .sub-menu li {
    height: auto;
  }
  .nav_list > li > .sub_menu_wrap > .sub_menu_con .sub-menu li > a {
    display: block;
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    line-height: 1.5;
    transition: 0.2s;
    padding-left: 3.5em;
    padding-bottom: 1rem;
    text-indent: -2.4em;
  }
  .nav_list > li > .sub_menu_wrap > .sub_menu_con .sub-menu li > a:hover {
    opacity: 0.7;
  }
  .nav_list > li > .sub_menu_wrap > .sub_menu_con > .sub-menu {
    width: calc(100% - 273px);
    transition: All 0.5s ease;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 25px 94px;
  }
  .nav_list > li > .sub_menu_wrap > .sub_menu_con > .sub-menu > li {
    position: relative;
    width: calc(50% - 47px);
    /* メニュー（孫）*/
  }
  .nav_list > li > .sub_menu_wrap > .sub_menu_con > .sub-menu > li > a {
    display: block;
    font-size: 16px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-left: 48px;
    padding-bottom: 1rem;
  }
  .nav_list > li > .sub_menu_wrap > .sub_menu_con > .sub-menu > li > a:before {
    content: "";
    background: url(../images/right-kaku_white.svg) no-repeat;
    background-size: contain;
    display: inline-block;
    width: 10px;
    height: 10px;
    vertical-align: middle;
    padding-left: 20px;
    transition: 0.2s;
  }
  .nav_list > li > .sub_menu_wrap > .sub_menu_con > .sub-menu > li > a:hover, .nav_list > li > .sub_menu_wrap > .sub_menu_con > .sub-menu > li > a.current {
    opacity: 0.7;
    border-bottom: 1px solid #fff;
  }
  .nav_list > li > .sub_menu_wrap > .sub_menu_con > .sub-menu > li > .sub-menu {
    width: 100%;
  }
  .nav_list > li > .sub_menu_wrap > .sub_menu_con > .sub-menu > li > .sub-menu > li > a:hover, .nav_list > li > .sub_menu_wrap > .sub_menu_con > .sub-menu > li > .sub-menu > li > a.current {
    color: #0862B6;
  }
  .nav_list > li > .sub_menu_wrap > .sub_menu_con > .sub-menu > li > .sub-menu > li > a:before {
    content: "-";
    display: inline-block;
    color: #fff;
    margin-left: 2em;
  }
  .nav_list > li > .sub_menu_wrap > .sub_menu_con > .sub-menu > li > .sub-menu > li:first-child > a {
    padding-top: 10px;
  }
  .nav_list > li > .sub_menu_wrap > .sub_menu_con > .sub-menu:after {
    content: "";
    width: calc(50% - 40px);
    display: inline-block;
  }
}
@keyframes nav_active {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*----------------------------------------------------------------------------
******************************************************************************
** global nav ハンバーガーメニュー版
******************************************************************************
----------------------------------------------------------------------------*/
@media screen and (max-width: 1299px) {
  nav {
    width: 400px !important;
    height: calc(100% + 500px);
    padding-bottom: 500px;
    position: fixed;
    top: 104px;
    right: -400px;
    overflow-x: none;
    overflow-y: auto;
    z-index: 10;
    background: #EBF4FD;
    transition: All 0.3s ease;
    border-left: 1px solid #ccc;
  }
  nav.sp_nav_open {
    display: block;
    right: 0;
  }
  /*メインメニュー*/
  .nav_list {
    width: 100%;
  }
  .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 1.3em;
    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 li > a {
    display: block;
    font-weight: 500;
    padding: 1em 1em 1em 20px;
    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: 50px;
    height: 44px;
    margin-top: -5px;
    position: fixed !important;
    top: 2em;
    right: 35px;
    cursor: pointer;
    z-index: 1000;
  }
  .sp_nav_trigger span {
    width: 100%;
    height: 7px;
    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: 50%;
    transform: translateY(-50%);
  }
  .sp_nav_trigger span:nth-of-type(3) {
    bottom: 0;
  }
  .sp_nav_trigger.sp_active span:nth-of-type(1) {
    transform: translateY(18px) 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(-17px) rotate(45deg);
  }
}
/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {
  background: #EBF4FD;
}
.ft_bg a {
  text-decoration: none;
  color: #435259;
}
.ft_bg .ft {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media screen and (max-width: 1299px) {
  .ft_bg .ft {
    display: none;
  }
}
.ft_bg .ft .ft_address {
  font-size: 14px;
}
.ft_bg .ft .ft_address span {
  font-size: 20px;
}
.ft_bg .ft .ft_nav {
  padding-left: 5px;
  display: flex;
  justify-content: space-between;
  gap: 4em;
  /*全ての階層*/
  /*第一階層*/
}
.ft_bg .ft .ft_nav ul li {
  line-height: 1.3;
}
.ft_bg .ft .ft_nav ul li a {
  transition: 0.3s;
}
.ft_bg .ft .ft_nav ul li a:hover {
  opacity: 0.7;
}
.ft_bg .ft .ft_nav > .ft_nav_list {
  margin-top: 45px;
}
.ft_bg .ft .ft_nav > .ft_nav_list > li {
  text-indent: -5px;
  margin-bottom: 10px;
  /*第二階層以降*/
}
.ft_bg .ft .ft_nav > .ft_nav_list > li > a {
  font-size: 13px;
  font-weight: 500;
}
.ft_bg .ft .ft_nav > .ft_nav_list > li ul {
  margin-top: 10px;
  margin-bottom: 30px;
}
.ft_bg .ft .ft_nav > .ft_nav_list > li ul > li {
  text-indent: -10px;
  margin-bottom: 5px;
  margin-left: 1em;
}
.ft_bg .ft .ft_nav > .ft_nav_list > li ul > li:before {
  content: "ー ";
  display: inline-block;
  color: #435259;
  margin-right: 0.3em;
}
.ft_bg .ft .ft_nav > .ft_nav_list > li ul > li > a {
  font-size: 13px;
}
.ft_bg .ft .ft_nav > .ft_nav_list.main_nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3em;
}
.ft_bg .ft .ft_nav > .ft_nav_list.main_nav > li {
  max-width: 300px;
}
.ft_bg .ft .ft_nav > .ft_nav_list.main_nav > li > a {
  font-size: 14px;
}
.ft_bg .ft .ft_nav > .ft_nav_list.sub_nav {
  width: 25%;
}
.ft_bg .ft_copy {
  padding: 15px 0 15px;
  background: #0862B6;
  color: #fff;
  text-align: center;
  font-size: 12px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
  border-radius: 50%;
  background-color: #333;
  bottom: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  right: 30px;
  position: fixed;
  width: 60px;
  z-index: 1;
}

.pt:hover {
  opacity: 0.6;
}

.pt_btn {
  cursor: pointer;
  display: block;
  width: 20px;
  height: 20px;
  margin-top: 8px;
  transform: rotate(45deg);
  position: relative;
}

.pt_btn::before,
.pt_btn::after {
  background-color: #FFF;
  content: "";
  display: block;
  top: 0;
  left: 0;
  position: absolute;
}

.pt_btn::before {
  width: 7px;
  bottom: 0;
}

.pt_btn::after {
  height: 7px;
  right: 0;
}

/*----------------------------------------------------------------------------
******************************************************************************
** 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;
}
.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.7rem;
  border-bottom: 1px solid #0862B6;
  padding-bottom: 5px;
}
.index_main .txt {
  margin: 1.8rem 0 2.5rem;
  text-align: center;
  color: #000;
  line-height: 2;
}
.index_main .link_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 36px;
}
.index_main .link_list li {
  width: calc(33.3333333333% - 24px);
}
.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%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 48/33;
  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: 150px;
}
@media screen and (max-width: 1299px) {
  .index_img {
    padding-top: 85px;
  }
}
.index_img .img {
  overflow: hidden;
  max-height: 500px;
}
.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 {
  font-size: 4.2rem;
}
.index_img .catchcopy_wrap .catchcopy > * {
  white-space: nowrap;
  color: #fff;
}
.index_img .catchcopy_wrap .catchcopy .ttl {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  text-indent: -2.2rem;
  line-height: 1;
}
.index_img .catchcopy_wrap .catchcopy .sub_ttl {
  font-size: 0.27em;
  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: 292px;
  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: 0.25em;
  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 50px;
}
#news .news_wrap .news_con {
  max-width: 1100px;
  margin: 55px auto 65px;
  padding: 35px 50px 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;
}
#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 {
  min-height: 340px;
}
#news .news_wrap .news_con .news_scrl dl {
  display: flex;
  padding: 20px 20px;
  border-bottom: 1px solid rgba(68, 83, 90, 0.3);
  /*dd aタグを持つdlの中にあるdt*/
}
#news .news_wrap .news_con .news_scrl dl dt {
  width: 155px;
  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 {
  width: calc(100% - 155px);
}
#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.7rem;
  border-color: #fff;
}
#recruit .recruit_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 37px;
}
#recruit .recruit_list li {
  width: calc(33.3333333333% - 25px);
}
#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 2.3em !important;
  list-style: none;
  font-weight: bold;
  counter-reset: li;
}
.idea_box li {
  padding: 2em;
  position: relative;
  margin: 0 0 1.4em;
  padding: 0;
  line-height: 1.5;
  font-size: 18px;
}
.idea_box li:before {
  counter-increment: li;
  content: counter(li) "";
  width: 24px;
  height: 24px;
  padding: 5px 0 6px;
  position: absolute;
  left: -34px;
  top: -1px;
  font-weight: bold;
  font-size: 14px;
  color: #fff;
  background: #ffc33c;
  border-radius: 100%;
  box-sizing: border-box;
  line-height: 1;
  text-align: center;
}
.idea_box li a {
  text-decoration: none;
  color: #333;
}
.idea_box li a:hover {
  text-decoration: underline;
}

/*--歴史と沿革--*/
/*共通*/
.history_tbl td {
  font-size: 14px;
  border-color: #ccc !important;
}
.history_tbl td:first-child {
  width: 160px;
  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;
}

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

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

/******************************
** 教育・研修関連
************************************/
/******************************
** 研究紹介
************************************/
/*--業績--*/
.mcon_txt.mcon_txt_col2 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0 4em;
}
.mcon_txt.mcon_txt_col2 h2 {
  width: 100%;
}
.mcon_txt.mcon_txt_col2 .mcon_txt_left {
  width: 220px;
}
.mcon_txt.mcon_txt_col2 .mcon_txt_right {
  width: calc(100% - 220px - 4em);
}
.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 {
  position: sticky;
  top: 150px;
  padding-left: 0;
  list-style-type: none;
  max-height: 80vh;
  overflow: auto;
  /*第一階層*/
}
#auto_list a {
  display: block;
  padding: 10px;
  text-decoration: none;
  font-size: 13px;
}
#auto_list ol {
  list-style-type: none;
  padding-left: 0;
}
#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;
}

/******************************
** 患者さんへのご案内
************************************/
/******************************
** リクルート
************************************/
/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.main {
  padding-top: 120px;
}
@media screen and (max-width: 1299px) {
  .main {
    padding-top: 90px;
  }
}

.mcon {
  word-wrap: break-word;
}
.mcon .mcon_ttl {
  background: #0862B6;
}
.mcon .mcon_ttl h1 {
  color: #fff;
  padding-top: 40px;
  padding-bottom: 20px;
  font-weight: 500;
  font-size: 26px;
}
@media screen and (max-width: 1299px) {
  .mcon .mcon_ttl h1 {
    padding-top: 20px;
  }
}
.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;
  font-size: 26px;
  font-weight: 500;
  border-bottom: 1px solid #0862B6;
  padding: 0.5em;
  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 {
  position: relative;
  margin: 2em 0 0.5em;
  padding: 0 0 0.5em 0.7em;
  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 h3::before {
  content: none;
}
.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 {
  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-top: 1.7em;
  margin-bottom: 1.2em;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  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.1em;
}

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

/*カラムブロック*/
.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=style.css.map */