@charset "utf-8";

/*グローバルメニュー*/
.global-header {
    width: 100%;
    height: 70px;
    display: block;
    background: #fff;
    transition: 0.1s;
    padding-left: 3.33333%;
    padding-right: 3.33333%;
    position: fixed;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    left: 0;
    right: 0;
    top: 0;
    z-index: 1030;
}

.global-navi {
    display: flex;
    *zoom: 1;
}

/*メニュー項目*/
.global-navi-item {
    width: auto;
    height: 70px;
}

.global-navi-item a:hover{
    text-decoration: none;
}

.global-navi-item a{
    position: relative;
    display: inline-block;
    text-decoration: none;
}

.global-navi-item a::after{
    position: absolute;
    bottom: 0px;
    left: 0;
    content: '';
    width: 100%;
    height: 4px;
    background: #007bff;
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform .3s;
}

.global-navi-item a:hover::after{
    transform: scale(1, 1);
}

/*メニューフォントの位置調整*/
.right-warp-center {
    margin-left: 20px;
}

.warp-center {
    margin: 0px 20px;
}

.left-warp-center {
    margin-right: 20px;
}

.right-warp-center a{
    color: #222 !important;
}

.warp-center a{
    color: #222 !important;
}

.left-warp-center a{
    color: #222 !important;
}

/*ログインボタンの位置調整*/
.login {
    margin: 0 0 0 auto; 
}

/*ロゴ*/
.logo {
    padding-top: 10px;
    margin: 0 auto 0 0; 
}

.logo img{
    width: 38%;    /* 横幅を割合で指定 */
    height: auto;  /* 高さは自動指定 */
}

.logo-t-reception{
    font-family: 'M PLUS Rounded 1c', sans-serif; 
    font-weight:800; 
    font-size:22px; 
    color:#007bff;
}

.logo-emc{
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-weight:300;
    font-size:15px;
}

.logo-ver{
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-weight:300;
    font-size:10px;
}

/*サブメニュー*/
.global-navi > div a {
    display: block;
    color: #fff;
}

.global-navi > div a {
    display: block;
    color: #fff;
}

.global-navi > div a:hover {
    color: #999;
}

div.menu_second-level {
    visibility: hidden;
    opacity: 0;
    z-index: 1;
}

.menu_second-level a{
    position: relative;
    display: inline-block;
    transition: .3s;
    padding: 10px 10px;
}

.menu_second-level a::after{
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    width: 0;
    height: 2px;
    background: #007bff;
    transition: .3s;
}

.menu_second-level a:hover::after{
    width: 100%;
}
/* floatクリア */
.global-navi:before,
.global-navi:after {
    content: " ";
    display: table;
}

.global-navi:after {
    clear: both;
}

.global-navi > div.menu_single {
    position: relative;
}

div.menu_single div.menu_second-level {
    position: absolute;
    top: 40px;
    background: #fff;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    text-align: center;
    padding: 55px 80px;
    width: 260px;
    box-shadow: 0 8px 20px 0 rgb(0 0 0 / 15%);
}

div.menu_single:hover div.menu_second-level {
    top: 70px;
    visibility: visible;
    opacity: 1;
}

/*div枠全体をリンクにする */
.div-link{
    position:relative;
}

.div-link a{
    display: block;
    width: 100%;
    height: 100%;
    padding-top: 20px;
}

/*サブメニューをホバー時のエフェクト*/
.menu_second-level:hover{
    text-decoration: none;
}

.menu_second-level {
    position: relative;
    display: inline-block;
    text-decoration: none;
}

.menu_second-level::after{
    position: absolute;
    top: -4px;
    left: 0;
    content: '';
    width: 100%;
    height: 4px;
    background: #007bff;
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform .3s;
}

.menu_second-level:hover::after{
    transform: scale(1, 1);
}

.menu_second-level_font {
    color: #222 !important;
}

/*現在開いているページのメニューを装飾*/
.current a{ 
    color: #007bff !important;
}

.current > div.menu_second-level a{
    color: #222 !important;
}

.current{
    border: 4px #007bff solid;
    border-top: transparent;
    border-right: transparent;
    border-left: transparent; 
}

.current a:hover{
    text-decoration: none;
}

/*ハンバーガーメニュー*/
.nav_toggle {
    display: none;
    position: relative;
    width: 1.75rem;
    height: 1.5rem;
}

.nav_padding {
    padding-top: 20px;
}

.nav_toggle i {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #222;
    position: absolute;
    transition: transform .5s, opacity .5s;
}

.nav_toggle i:nth-child(1) {
    top: 0;
}

.nav_toggle i:nth-child(2) {
    top: 0;
    bottom: 0;
    margin: auto;
}

.nav_toggle i:nth-child(3) {
    bottom: 0;
}

.nav_toggle.show i:nth-child(1) {
    transform: translateY(10px) rotate(-45deg);
}

.nav_toggle.show i:nth-child(2) {
    opacity: 0;
}

.nav_toggle.show i:nth-child(3) {
    transform: translateY(-12px) rotate(45deg);
}

.nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s, visibility .5s;
    background-color: #fff;
}

.nav.show {
    opacity: 1;
    visibility: visible;
}

.tooltip-inner {
    padding: 0.1rem 0.1rem;
    background-color: #007bff;
}

.bs-tooltip-bottom .arrow::before {
    border-bottom-color: #007bff;
}

.detail{
    background-color:white !important;
    color:black!important;
    text-align: left;
  }
  