@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Lato:400,700');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400&display=swap');

/* 共通
---------------------------------------------- */
*, *:before, *:after {
    margin:0;
    padding:0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    font-size: 62.5%;
}

body {
    background-color: #fff;
    color: #000;
    padding: 0;
    margin: 0;
    font-size: 18px;
    font-family: "Roboto", 'Lato', 'Noto Sans JP', "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", 'ヒラギノ角ゴPro W3', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
    line-height: 1.8;
}

img {
    border: 0;
    vertical-align: middle;
    max-width: 100%;
    height: auto;
    image-rendering: -webkit-optimize-contrast;
}

p,ul,ol,li,h1,h2,h3,h4,dl,dt,dd,a,form {
    margin: 0;
    padding: 0;
}

ul, ol {
    list-style: none;
}

a {
    color: #000;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

table {
    margin: 0;
    padding: 0;
    border-collapse: collapse;
    border-spacing: 0;
}

.clearfix:after {
    content: "";
    display: block;
    clear: both;
}

.textR {
    text-align: right;
}

.flex,
.flex_pcOnly,
.flex_spNone {
    display:-webkit-box;
    display:-ms-flexbox;
    display: flex;
}

.fl_center {
    justify-content: center;
}

.fl_space-between {
    justify-content: space-between;
}

.fl_space-around {
    justify-content: space-around;
}

.fl_wrap {
    flex-wrap: wrap;
}

.fl_column {
    flex-direction: column;
}

.f_items_center {
    align-items: center;
}

.f_items_start {
    align-items: flex-start;
}

.pc_none {
    display: none;
}

.sptab_only {
    display: none;
}

.pc_inline {
    display: inline;
}

.tab_inline {
    display: block;
}

.sp_inline {
    display: block;
}

span.block {
    display: block;
}

iframe {
    width: 100%;
    border: none;
}

sub {
    font-size: 1rem;
    vertical-align: baseline;
}

/* タブレット・スマホ無効 */
@media screen and (min-width: 960px) {
    .opacity a,
    .opacity span {
        transition: 0.3s;
    }
    
    .opacity a:hover,
    .opacity span:hover{
        opacity: 0.7;
    }
}

@media screen and (max-width: 1024px) {
    .flex_pcOnly {
        display: block;
    }
    .sptab_only {
        display: block;
    }
    .tab_only {
        display: block;
    }
    .tab_none {
        display: none;
    }
    .tab_inline {
        display: inline;
    }
}

/* スマホでタップした時だけ電話発信を有効にする */
@media screen and (min-width: 768px) {
    a[href^="tel:"]{
        pointer-events: none;
    }
}

@media screen and (max-width: 767px) {
    .flex_spNone {
        display: block;
    }
    .pc_none {
        display: block;
    }
    .pc_inline {
        display: block;
    }
    .tab_only {
        display: none;
    }
    .sp_none {
        display: none;
    }
    .sp_inline {
        display: inline;
    }
}

@media screen and (max-width: 414px) {
    .sp_none2 {
        display: none;
    }
}


/*  ヘッダー
---------------------------------------------- */
header {
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 11rem;
    padding: 0 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.header-right {
    position: relative;
}

header .search-form-area {
    position: absolute;
    top: 0;
    right: 255px;
}

header .search-form {
    width: 110px;
    height: 24px;
    background-color: #fff;
    border: 1px solid #b3b3b3;
    border-radius: 15px;
    position: relative;
}

header .search-form dt,
header .search-form dd {
    line-height: 1;
}

header .search-form dd {
    position: absolute;
    top: 3px;
    left: 9px;
}

header .search-form .search-field {
    width: 70px;
    border: none;
    outline: none;
    margin-left: 3rem;
}

header .search-form .search-field::placeholder {
    font-size: 1.2rem;
}

header .search-form .search-submit {
    background: url(../images/icon_search.svg) no-repeat;
    background-size: contain;
    border: none;
    width: 16px;
    height: 16px;
    outline: 0;
    cursor: pointer;
}

@media screen and (max-width: 1200px) {
    .header-right {
        display: flex;
    }
    
    header .search-form-area {
        top: -17px;
        right: 65px;
    }
    
    header .btn-search:before {
        content: "";
        display: inline-block;
        background: url(../images/icon_search.svg) no-repeat;
        background-size: contain;
        width: 40px;
        height: 40px;
    }
    
    header .search-form {
        display: none;
        width: 250px;
        height: 40px;
        border-radius: 25px;
        position: absolute;
        top: 50px;
        right: 0;
    }
    
    header .search-form.active {
        display: block;
    }
    
    header .search-form dd {
        top: 7px;
        left: 16px;
    }
    
    header .search-form .search-field {
        width: 180px;
        height: 38px;
        margin-left: 5rem;
    }
    
    header .search-form .search-field::placeholder {
        font-size: 1.4rem;
    }
    
    header .search-form .search-submit {
        width: 25px;
        height: 25px;
    }
    
    header .search-close {
        display: inline-block;
        width: 20px;
        height: 20px;
        cursor: pointer;
        position: absolute;
        top: 0;
        right: -230px;
    }
    
    header .search-close:before,
    header .search-close:after {
        content: "";
        display: block;
        background-color: #333;
        width: 20px;
        height: 2px;
        position: absolute;
        top: 50%;
        left: 50%;
        margin-left: -10px;
    }
    
    header .search-close:before {
        transform: rotate(45deg);
    }
    
    header .search-close:after {
        transform: rotate(-45deg);
    }
}

@media screen and (max-width: 767px) {
    header {
        height: 8rem;
        padding: 0 2rem;
    }
    
    header .logo {
        width: 70%;
    }
    
    header .search-form-area {
        top: -10px;
        right: 50px;
    }
    
    header .btn-search:before {
        width: 25px;
        height: 25px;
    }
    
    header .search-form {
        top: 36px;
    }
}

/* 印刷css */
@media print {
}


/*  メニュー
---------------------------------------------- */
nav li a {
    display: block;
    margin: 0 1.5em;
    font-weight: 500;
    transition: color 0.3s;
    white-space: nowrap;
    position: relative;
}

nav .menu-top,
nav .menu-bottom > ul {
    justify-content: flex-end;
}

nav .menu-top li a {
    font-size: 1.6rem;
}

nav .menu-bottom {
    margin-top: 1rem;
}

nav .menu-bottom li.parent-menu {
    position: relative;
}

nav .menu-bottom li.general a {
    width: 140px;
    color: #fff;
    background-color: #a89539;
    font-size: 1.6rem;
    margin-right: 0;
    padding: 0.7rem 0;
    text-align: center;
    border-radius: 20px;
}

nav .menu-bottom li.specialty a {
    width: 140px;
    color: #fff;
    background-color: #016a7d;
    font-size: 1.6rem;
    margin-right: 0;
    padding: 0.7rem 0;
    text-align: center;
    border-radius: 20px;
}

@media screen and (max-width: 1499px) {
    nav li a {
        font-size: clamp(1rem, 1.15vw, 1.6rem);
        margin: 0 1em;
    }
}

/*- 子メニュー -*/
nav .child-menu {
    width: 200px;
    background-color: #fff;
    position: absolute;
    top: 32px;
    left: -36px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    box-shadow: 0px 0px 5px 0 #aaa;
}

nav .child-menu li a {
    display: block;
    margin: 0;
    padding: 1rem 2rem;
    font-size: 1.6rem;
    font-weight : normal;
    transition: color 0.3s, background-color 0.3s;
}

/*- メニューバー -*/
.navbar-area {
    display: none;
}

/* タブレット・スマホ無効 */
@media screen and (min-width: 1199px) {
    nav .menu-bottom ul:not(.child-menu) > li:not(.general):not(.specialty):hover > a,
    nav li.parent-menu:hover > span > a {
        color: #016a7d;
    }
    
    nav .menu-bottom li a:after {
        content: "";
        display: block;
        width: 100%;
        height: 2px;
        background-color: #016a7d;
        position: absolute;
        bottom: -7px;
        left: 0;
        transform: scale(0, 1);
        transform-origin: right top;
        transition: transform .3s;
    }
    
    nav .menu-bottom li:hover > a:after {
        transform-origin: left top;
        transform: scale(1, 1);
    }
    
    nav .menu-bottom li.general a:after,
    nav .menu-bottom li.specialty a:after,
    nav .menu-bottom li.parent-menu a:after {
        display: none;
    }
    
    nav li.parent-menu:hover .child-menu {
        opacity: 1;
        visibility: visible;
    }
    
    nav .child-menu li:hover > a {
        color: #fff;
        background-color: #016a7d;
    }
}

@media screen and (max-width: 1200px) {
    nav {
        display: none;
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100vh;
        z-index: 99;
        color: #000;
/*        background-color: rgba(0,87,166,0.95);*/
        background-color: #006f7d;
        margin: 0;
        padding: 10rem 4rem;
        overflow: auto;
    }
    
    nav .menu-top ul {
        display: none;
    }
    
    nav .menu-bottom > ul {
        display: block;
    }
    
    nav li {
        margin-bottom: 2em;
    }
    
    nav li.sptab_only {
        display: block;
    }
    
    nav li a {
        color: #fff;
        font-size: 2rem;
        margin: 0;
        padding: 0;
        border-right: none;
        position: relative;
    }
    
    nav li a:after {
        content: "";
        display: inline-block;
        width: 7px;
        height: 7px;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        position: absolute;
        top: 0;
        bottom: 0;
        left: auto;
        right: 5px;
        margin: auto;
    }
    
    nav .menu-bottom li.general a,
    nav .menu-bottom li.specialty a {
        width: auto;
        background-color: transparent;
        font-size: 2rem;
        padding: 0;
        text-align: left;
        border-radius: 0;
    }
    
    /*- 子メニュー -*/
    nav li.parent-menu a {
        margin: 0 !important;
        padding: 0;
        height: auto;
        display: block;
    }
    
    nav li.parent-menu > span > a:after {
        content: "+";
        font-size: 2rem;
        width: auto;
        height: auto;
        border: none;
        -webkit-transform: none;
        transform: none;
    }
    
    nav li.parent-menu.active > span > a:after {
        content: "-";
    }

    nav .child-menu {
        display: none;
        width: auto;
        background-color: transparent;
        position: static;
        padding: 0;
        margin-top: 2em;
        flex-wrap: wrap;
        gap: 0;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
    }

    nav .child-menu li {
        width: 90%;
        margin-left: 2em;
    }

    nav .child-menu li a {
        background-color: transparent;
        padding: 0;
        border-radius: 0;
    }
    
    nav .child-menu li a:before {
        content: "";
        background-color: #fff;
        width: 7px;
        height: 2px;
        border: none;
        -webkit-transform: none;
        transform: none;
        position: absolute;
        top: 13px;
        bottom: auto;
        left: -15px;
        margin: 0;
    }
    
    /*- タブレット・スマホリンク無効 -*/
    nav a.sptab-nolink {
        pointer-events: none;
    }
    
    /*- メニューバー -*/
    .navbar-area {
        display: block;
        width: 40px;
        height: 30px;
        position: absolute;
        top: -14px;
        right: 0;
/*
        top: 35px;
        right: 40px;
*/
    }

    .navbar {
        height: 100%;
        position: relative;
        z-index: 100;
        cursor: pointer;
    }

    .navbar span {
        width: 100%;
        height: 2px;
        display: block;
        position: absolute;
        left: 0;
        background-color: #006f7d;
        transition: 0.3s;
        text-align: center;
    }
    
    header.top .navbar span {
        background-color: #fff;
    }
    
    .navbar span:nth-child(1) {
        top: 0;
    }
    .navbar span:nth-child(2) {
        top: 0;
        bottom: 0;
        margin: auto;
    }
    .navbar span:nth-child(3) {
        bottom: 0;
    }
    .navbar.active span {
        background-color: #fff;
    }
    .navbar.active span:nth-child(1) {
        top: 8px;
        transform: rotate(45deg);
    }
    .navbar.active span:nth-child(2) {
        width: 0;
        left: 50%;
    }
    .navbar.active span:nth-child(3) {
        top: 8px;
        transform: rotate(-45deg);
    }
}

@media screen and (max-width: 767px) {
    nav {
        padding: 8rem 2rem;
    }
    
    nav li a,
    nav .menu-bottom li.general a,
    nav .menu-bottom li.specialty a {
        font-size: 1.8rem;
    }
    
    /*- 子メニュー -*/
    nav .child-menu li {
        width: 80%;
    }
    
    nav .child-menu li a {
        font-size: 1.6rem;
    }
    
    /*- メニューバー -*/
    .navbar-area {
        width: 30px;
        height: 22px;
        top: -10px;
    }
}


/*  メインコンテンツ（共通）
---------------------------------------------- */
.main-content {
    margin-top: 11rem;
}

main table {
    width: 100%;
    text-align: left;
    margin: 2rem 0;
}

main table th {
    background-color: #eee;
    font-weight: normal;
    text-align: left;
    padding: 25px 30px;
    border-bottom: 1px solid #ddd;
    width: 20%;
    vertical-align: top;
}

main table td {
    background-color: #fff;
    padding: 25px 30px;
    border-bottom: 1px solid #ddd;
    vertical-align: top;
}

/* テーブルのthが横向き */
main table.sideways th {
    width: auto;
}

main table.sideways th,
main table.sideways td {
    border: 1px solid #ddd;
}

/* テーブルをスクロールする場合 */
main .tb-swipe {
    display: none;
}

.center {
    text-align: center;
}

.tx-right {
    text-align: right;
}

.mt1em {
    margin-top: 1em;
}

.mb1em {
    margin-bottom: 1em;
}

.notmt {
    margin-top: 0 !important;
}

.notmb {
    margin-bottom: 0 !important;
}

.f-bold {
    font-weight: bold;
}

.f-medium {
    font-weight: 500;
}

.f-red {
    color: #ED1C24;
}

.width_pc50_sp100 {
    width: 50%;
}

a.pdf:after {
    content: "";
    display: inline-block;
    background: url(../images/icon_pdf.png) no-repeat;
    background-size: contain;
    width: 16px;
    height: 16px;
    margin: 0 1rem 0.3rem 1rem;
    vertical-align: middle;
}

a.excel:after {
    content: "";
    display: inline-block;
    background: url(../images/icon_excel.png) no-repeat;
    background-size: contain;
    width: 16px;
    height: 16px;
    margin: 0 0.5rem;
}

a.word:after {
    content: "";
    display: inline-block;
    background: url(../images/icon_word.png) no-repeat;
    background-size: contain;
    width: 16px;
    height: 16px;
    margin: 0 0.5rem;
}

/* ボタン */
.btn {
    margin-bottom: 1em;
}

.btn a {
    min-width: 217px;
    display: inline-block;
    color: #fff;
    background-color: #016a7d;
    font-weight: 500;
    padding: 0 3rem 0 2rem;
    text-align: center;
    border-radius: 20px;
    position: relative;
}

.btn a:after {
    content: "";
    width: 7px;
    height: 7px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 13px;
    margin: auto;
}


@media screen and (max-width: 767px) {
    .main-content {
        margin-top: 8rem;
    }
    
    .main-content div.flex {
        flex-wrap: wrap;
    }
    
    main table th {
        display: block;
        width: 100%;
        border-bottom: none;
        padding: 17px 25px;
    }
    
    main table td {
        display: block;
        border-bottom: none;
        padding: 20px 25px;
        line-height: 1.8;
    }
    
    /* テーブルのthが横向き */
    main table.sideways th,
    main table.sideways td {
        display: table-cell;
        border-bottom: 1px solid #ddd;
    }
    
    /* テーブルをスクロールする場合 */
    main table.sideways {
        margin: 0 0 2rem;
    }
    
    main .tb-swipe {
        display: block;
    }
    
    main .tb-swipe:before {
        content: "";
        display: inline-block;
        background: url(../images/tb-swipe.png) no-repeat;
        background-size: contain;
        width: 30px;
        height: 28px;
        margin-right: 5px;
        vertical-align: -6px;
    }
    
    main .tb-swipeArea {
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
    }
    
    main .tb-swipeArea table {
        width: 1000px;
        -webkit-text-size-adjust: 100%;
    }
    
    .width_pc50_sp100 {
        width: 100%;
    }
}


/* WPの機能で付与したクラスに対する記述
---------------------------------- */
.alignleft {
    float: left;
    margin: 0 3rem 1.6rem 0;
}

.alignright {
    float: right;
    margin: 0 0 1.6rem 3rem;
}

p:has(.aligncenter) {
    text-align: center;
}

.wp-caption {
    margin: 2rem auto;
}

.wp-caption p {
    margin-top: 1rem;
    font-size: 1.4rem;
    line-height: 1.8;
}

@media screen and (max-width: 767px) {
    .alignleft, .alignright {
        display: block;
        float: none;
        margin: 0 auto 1.6rem;
    }
    
    .wp-caption {
        text-align: center;
        width: 100% !important;
    }
    
    .wp-caption p {
        text-align: left;
    }
}


/*  ページネーション
---------------------------------------------- */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px 0 0;
    position: relative;
}

.pagination span, .pagination a {
    display: block;
    width: auto;
    margin: 4px;
    padding: 8px 12px;
    border: 1px solid #016a7d;
    color: #016a7d;
    background-color: #fff;
    text-decoration: none !important;
    text-align: center;
    line-height: 16px;
}

/* ページ番号 */
.pagination .pager{
/*    width: 32px;*/
}

/* ホバー時 & 現在のページ */
.pagination a:hover,
.pagination .current  {
    color: #fff;
    border-color: #016a7d;
    background-color: #016a7d;
}

.pagination a:hover {
    transition: 0.3s;
}

/* 前へ */
.pagination a.prev {
    margin-right: 16px;
    font-size: 2.4rem;
/*    padding: 6px 12px 10px 12px;*/
}
/* 次へ */
.pagination a.next {
    margin-left: 16px;
    font-size: 2.4rem;
/*    padding: 6px 12px 10px 12px;*/
}
/* 最初へ */
.pagination a.first {
    font-size: 2.4rem;
/*    padding: 6px 12px 10px 12px;*/
}
/* 最後へ */
.pagination a.last {
    font-size: 2.4rem;
/*    padding: 6px 12px 10px 12px;*/
}

/* Page x / y */
.pagination span.page_num {
    display: none;
}

@media screen and (max-width: 767px) {
    .pagination {
        margin: 35px 0 20px;
    }
}


/*  フッター
---------------------------------------------- */
footer {
    color: #fff;
    background-color: #333;
    padding: 6rem 0 5.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

footer dd {
    font-size: 1.6rem;
    margin: 2.5rem 0 1rem;
}

footer a {
    display: inline-block;
    color: #fff;
/*    margin-bottom: 1.3em;*/
}

footer p {
    font-size: 1.6rem;
    margin: 1em 0;
}

footer p.copyright {
    font-size: 1.2rem;
    margin: 0;
}

@media screen and (min-width: 960px) {
    footer a:hover {
        text-decoration: underline;
    }
}

/*  ページトップ  */
/*
.pagetop {
    position: absolute;
    top: -40px;
    right: 135px;
}

.pagetop a {
    display: block;
    color: #fff;
    background-color: #444;
    font-size: 1.2rem;
    border: 7px solid #fff;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    text-align: center;
    padding-top: 3rem;
    position: relative;
}

.pagetop a:before {
    content: "";
    position: absolute;
    top: 30%;
    right: 0;
    left: 0;
    width: 13px;
    height: 13px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    transform: rotate(45deg);
    margin-left: auto;
    margin-right: auto;
}
*/

@media screen and (max-width: 1024px) {
}

@media screen and (max-width: 767px) {
    footer {
        padding: 4rem 2rem;
    }
    
    /*  ページトップ  */
/*
    .pagetop {
        top: -25px;
    }
    
    .pagetop a {
        font-size: 0.7rem;
        width: 45px;
        height: 45px;
        padding: 0;
    }
    
    .pagetop a:before {
        top: 40%;
        width: 10px;
        height: 10px;
    }
*/
}


/*  404
---------------------------------------------- */
.not_found {
    padding: 10px 0 120px;
    text-align: center;
}


/*  初回アクセスのみ医療関係者か確認するポップアップ表示
---------------------------------------------- */
.popup {
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 9999;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
}

.popup-area {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 50%;
    min-width: 500px;
    background-color: #fff;
    padding: 3rem;
}

.popup-area h1 {
    margin-bottom: 1rem;
    text-align: center;
    line-height: 1.6;
}

.popup-area p {
    text-align: center;
}

.popup-btn {
    margin-top: 2rem;
    gap: 20px;
}

.popup-btn span {
    background-color: #016a7d;
    color: #fff;
    width: 300px;
    display: inline-block;
    padding: 1rem 0;
    text-align: center;
}

.popup-btn a {
    background-color: #a89539;
    color: #fff;
    width: 300px;
    display: inline-block;
    padding: 1rem 0;
    text-align: center;
}

.popup-close {
    cursor: pointer;
}

@media screen and (max-width: 1024px) {
    .popup-area p {
        text-align: left;
    }
}

@media screen and (max-width: 767px) {
    .popup-area {
        width: 90%;
        min-width: 0;
    }
}