* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    border: 0
}

::before,
::after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
    padding: 0;
    margin: 0;
    border: 0
}

html {
    line-height: 1;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

main {
    display: block
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit
}

ul,
ol {
    list-style: none
}

hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
    overflow: visible;
    clear: both;
    border-top: 1px solid
}

pre {
    font-family: monospace, monospace;
    font-size: inherit
}

address {
    font-style: inherit
}

abbr[title] {
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
    border-bottom: none
}

b,
strong {
    font-weight: bolder
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: inherit
}

small {
    font-size: 80%
}

sub,
sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline
}

sub {
    bottom: -0.25em
}

sup {
    top: -0.5em
}

img {
    display: block
}

button,
input,
optgroup,
select,
textarea {
    padding: 0;
    margin: 0;
    font: inherit;
    color: inherit;
    vertical-align: middle;
    border: 0;
    border-radius: 0;
    outline: 0
}

select {
    border-radius: 0
}

button,
input {
    overflow: visible
}

button,
select {
    text-transform: none
}

button,
[type=button],
[type=reset],
[type=submit] {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
/*    background: none (25/04/08 一旦コメントアウト)*/
}


/* 24/04 佐々木追加 */
#commonMessageModal .btn-primary  {
    border-color: var(--red);
    background-color: var(--red);
}


button[disabled],
[type=button][disabled],
[type=reset][disabled],
[type=submit][disabled] {
    cursor: default
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
    padding: 0;
    border-style: none
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
    outline: 1px dotted ButtonText
}

fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0
}

legend {
    display: table;
    max-width: 100%;
    padding: 0;
    color: inherit;
    white-space: normal
}

progress {
    vertical-align: baseline
}

textarea {
    overflow: auto
}

[type=checkbox],
[type=radio] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
    height: auto
}

[type=search] {
    -webkit-appearance: textfield;
    appearance: none;
    outline-offset: -2px
}

[type=search]::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

::-webkit-input-placeholder {
    font: inherit
}

:-ms-input-placeholder {
    font: inherit
}

::-ms-input-placeholder {
    font: inherit
}

::-moz-placeholder {
    font: inherit
}

::placeholder {
    font: inherit
}

label[for] {
    cursor: pointer
}

details {
    display: block
}

summary {
    display: list-item
}

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

caption {
    text-align: left
}

td,
th {
    vertical-align: top
}

th {
    font-weight: bold;
    text-align: left
}

template {
    display: none
}

[hidden] {
    display: none
}

body {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-size: 16px;
    color: var(--black);
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
    background-color: var(--beige)
}

a {
    text-decoration: none!important;    /* 25/04/07 important 追記 */
}

:root {
    --red: #d50c18;
    --dark-red: #bc0a15;
    --pale-red: #f8d6d8;
    --beige: #fffaf1;
    --black: #333;
    --gray: #777
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    min-width: 768px
}

@media(max-width: 1024px) {
    .header {
        height: 60px;
        padding: 6px 24px 0
    }
}

@media(min-width: 1025px) {
    .header {
        height: 70px;
        padding: 12px calc(50% - 482px) 0 calc(50% - 447px)
    }
}

.header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 30;
    width: 100%;
    height: 100%
}

.header.login-page::before {
    background-color: var(--red)
}

.header:not(.login-page)::before {
    background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#e9e9e9));
    background: linear-gradient(180deg, #fff, #e9e9e9)
}

.header:not(.login-page)::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    background-color: #000;
    mix-blend-mode: multiply;
    -webkit-filter: blur(4px);
    filter: blur(4px);
    opacity: .4
}

.header .logo {
    position: relative;
    z-index: 50;
    display: block;
    aspect-ratio: 171/27
}

@media(max-width: 1024px) {
    .header .logo {
        width: 105px
    }
}

@media(min-width: 1025px) {
    .header .logo {
        width: 220px;
    }
}

.header .logo img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center
}

.header .nav {
    position: relative;
    z-index: 50;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%
}

.header .nav>ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
    margin: 0 6px 0 0
}

.header .nav>ul>li {
    position: relative;
    height: 100%
}

.header .nav>ul>li:nth-child(n+2)::before {
    content: "";
    position: absolute;
    left: 0;
    width: 1px;
    padding-left: 1px;
    background-color: var(--black)
}

@media(max-width: 1024px) {
    .header .nav>ul>li:nth-child(n+2)::before {
        top: 20px;
        height: 15px
    }
}

@media(min-width: 1025px) {
    .header .nav>ul>li:nth-child(n+2)::before {
        top: 21px;
        height: 18px
    }
}

.header .nav>ul>li>a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: 100%;
    color: var(--black);
    letter-spacing: .01em;
    text-decoration: none
}

@media(max-width: 1024px) {
    .header .nav>ul>li>a {
        padding: 0 16px;
        font-size: 14px
    }
}

@media(min-width: 1025px) {
    .header .nav>ul>li>a {
        padding: 0 18px;
        font-size: 16px
    }
}

.header .nav>ul>li>a:hover {
    color: var(--red)
}

.header .nav>ul>li>ul {
    position: absolute;
    left: 0;
    min-width: 100%;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    background-color: #fff
}

@media(max-width: 1024px) {
    .header .nav>ul>li>ul {
        top: 54px
    }
}

@media(min-width: 1025px) {
    .header .nav>ul>li>ul {
        top: 58px
    }
}

.header .nav>ul>li>ul li {
    width: 100%
}

.header .nav>ul>li>ul li:nth-child(n+2) {
    border-top: 1px solid #c8c8c8
}

.header .nav>ul>li>ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    padding: 0 8px;
    height: 32px;
    font-size: 14px;
    letter-spacing: .01em;
    white-space: nowrap;
    text-decoration: none
}

.header .nav>ul>li>ul li a,
.header .nav>ul>li>ul li a:link,
.header .nav>ul>li>ul li a:visited,
.header .nav>ul>li>ul li a:active,
.header .nav>ul>li>ul li a:focus {
    color: var(--black)
}

.header .nav>ul>li>ul li a:hover {
    color: var(--red)
}

.header .nav>ul>li:not(.is-opened)>ul {
    display: none
}

#commonExitButton,
.modoru-btn {                       /* modorubtn 追加(25/04/11) */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: var(--red);
    font-weight: 500;
    border: 1px solid var(--red);
    background-color: #fff;
    cursor: pointer
}

@media(max-width: 1024px) {
    #commonExitButton {
        width: 80px;
        height: 28px;
        font-size: 12px;
        border-radius: 4px
    }
}

@media(min-width: 1025px) {
    #commonExitButton {
        width: 100px;
        height: 34px;
        font-size: 16px;
        border-radius: 5px
    }
}

.header .pagetitle {
    position: absolute;
    z-index: 20;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

@media(max-width: 1024px) {
    .header .pagetitle {
        top: 60px;
        left: 20px;
        height: 40px;
        padding: 0 40px 0 34px
    }
}

@media(min-width: 1025px) {
    .header .pagetitle {
        top: 70px;
        left: calc(50% - 450px);
        height: 40px;
        padding: 0 40px 0 34px
    }
}

.header .pagetitle::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 0 0 10px 10px;
    z-index: 2
}

.header .pagetitle::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    border-radius: 0 0 10px 10px;
    z-index: 1;
    mix-blend-mode: multiply;
    -webkit-filter: blur(3px);
    filter: blur(3px);
    opacity: .3
}

.header .pagetitle * {
    position: relative;
    z-index: 3
}

.header .pagetitle svg {
    margin: 0 16px 0 0
}

.header .pagetitle span {
    color: var(--red);
    font-size: 20px;
    font-weight: 500
}

.main {
    position: relative;
    width: 100%
}

@media(max-width: 1024px) {
    .main {
        /*padding: 60px 0 0*/
    }
}

@media(min-width: 1025px) {
    .main {
        /*padding: 70px 0 0*/
    }
}

.footer {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    min-width: 768px;
    height: 80px
}

.footer .logo-frail {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 378px;
    height: 80px
}

.footer .logo-alpha-system {
    position: absolute;
    right: 30px;
    bottom: 20px;
    width: 140px;
    height: 26px
}

.btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 150px;
    height: 40px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 500
}

.btn-red {
    background-color: var(--red);
    color: #fff
}

.btn-red:hover {
    background-color: var(--dark-red)
}

.btn-white {
    border: 1px solid var(--red);
    background-color: #fff;
    color: var(--red)
}

.btn-white:hover {
    background-color: var(--beige)
}

@media(max-width: 767px) {

    .md:not(.sm),
    .lg:not(.sm) {
        display: none !important
    }
}

@media(min-width: 768px)and (max-width: 1024px) {

    .sm:not(.md),
    .lg:not(.md) {
        display: none !important
    }
}

@media(min-width: 1025px) {

    .sm:not(.lg),
    .md:not(.lg) {
        display: none !important
    }
}

.text-center {
    text-align: center
}

.login {
    position: relative;
    width: 500px;
    margin: 80px auto 0;
    padding: 52px 70px 62px
}

.login::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 10px;
    z-index: 2
}

.login::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    border-radius: 10px;
    z-index: 1;
    mix-blend-mode: multiply;
    -webkit-filter: blur(3px);
    filter: blur(3px);
    opacity: .3
}

.login * {
    position: relative;
    z-index: 3
}

.login .login-input label {
    display: block;
    margin: 0 0 10px;
    font-size: 16px
}

.login .login-input input[type=text],
.login .login-input input[type=password] {
    display: block;
    width: 100%;
    height: 42px;
    padding: 0 12px;
    border: .5px solid var(--gray);
    border-radius: 5px
}

.login .login-input input[type=text]:focus,
.login .login-input input[type=password]:focus {
    border: 1px solid var(--red);
    outline: 1px solid var(--red)
}

.login .login-input .password {
    position: relative
}

.login .login-input .password .password-toggle {
    position: absolute;
    top: 0;
    right: 7px;
    bottom: 0;
    width: 32px;
    height: 32px;
    margin: auto 0;
    cursor: pointer
}

.login .login-input .password .password-toggle img {
    display: none;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.login .login-input .password .password-toggle:not(.is-visible) .eye-closed {
    display: block
}

.login .login-input .password .password-toggle.is-visible .eye-opened {
    display: block
}

.login .login-input .error {
    margin: 6px 0 0;
    color: var(--red);
    font-size: 14px
}

.login .login-input .info {
    overflow: auto;
    height: 92px;
    padding: 6px 12px;
    border: .5px solid var(--gray);
    color: var(--black);
    font-size: 14px;
    line-height: 24px;
    background-color: #f6f6f6
}

.login .login-input+.login-input {
    margin: 32px 0 0
}

.login .login-submit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 200px;
    height: 50px;
    margin: 42px auto 0;
    border-radius: 25px;
    background-color: var(--red);
    color: #fff;
    font-size: 16px;
    font-weight: 500
}

.login .login-submit:hover {
    background-color: var(--dark-red)
}

.examine .menu-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 80px;
    justify-content: end;
}

.examine .menu-header .label {
    margin-left: 310px;
    margin-right: 12px;
    color: var(--black);
    font-size: 16px;
    font-weight: 500
}

.examine .menu-header .name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 300px;
    height: 40px;
    padding: 0 20px;
    border-radius: 5px;
    color: var(--black);
    font-size: 26px;        /* 25/04/08 元は16 */
    background-color: #dadada
}

.examine .menu {
    width: 768px;
    margin: 80px auto 0;    /* 25/04/08 margin-top 変更 */
    padding: 0 34px
}

.duties_scr ul,                             /* 25/06/04 業務メニュー画面用追加 */
.management_scr ul,                         /* 25/06/03 業務管理メニュー画面用追加 */
.examine .menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.duties_scr ul li,                          /* 25/06/04 業務メニュー画面用追加 */
.management_scr ul li,                      /* 25/06/03 業務管理メニュー画面用追加 */
.examine .menu ul li {
    position: relative;
    margin: 0 0 40px
}

.examine .menu ul li:nth-child(1) {
    width: 700px
}

.examine .menu ul li:nth-child(2),
.examine .menu ul li:nth-child(3),
.examine .menu ul li:nth-child(4),
.examine .menu ul li:nth-child(5) {
    width: 330px
}

.duties_scr ul li a,                        /* 25/06/04 業務メニュー画面用追加 */
.management_scr ul li a,                    /* 25/06/03 業務管理メニュー画面用追加 */
.examine .menu ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 80px
}

.duties_scr ul li a::before,                /* 25/06/04 業務メニュー画面用追加 */
.management_scr ul li a::before,            /* 25/06/03 業務管理メニュー画面用追加 */
.examine .menu ul li a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 40px;
    z-index: 2
}

.duties_scr ul li a::after,             /* 25/06/04 業務メニュー画面用追加 */
.management_scr ul li a::after,         /* 25/06/03 業務管理メニュー画面用追加 */
.examine .menu ul li a::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    border-radius: 40px;
    z-index: 1;
    mix-blend-mode: multiply;
    -webkit-filter: blur(3px);
    filter: blur(3px);
    opacity: .3
}

.duties_scr ul li a *,                      /* 25/06/04 業務メニュー画面用追加 */
.management_scr ul li a *,                  /* 25/06/03 業務管理メニュー画面用追加 */
.examine .menu ul li a * {
    position: relative;
    z-index: 3
}

.duties_scr ul li a:hover::before,          /* 25/06/04 業務メニュー画面用追加 */
.management_scr ul li a:hover::before,      /* 25/06/03 業務管理メニュー画面用追加 */
.examine .menu ul li a:hover::before {
    border: 4px solid var(--red)
}

.duties_scr ul li a svg,                    /* 25/06/04 業務メニュー画面用追加 */
.management_scr ul li a svg,                /* 25/06/03 業務管理メニュー画面用追加 */
.examine .menu ul li a svg {
    width: 32px;
    margin-right: 20px;
}

.duties_scr ul li a span,                   /* 25/06/04 業務メニュー画面用追加 */
.management_scr ul li a span,               /* 25/06/03 業務管理メニュー画面用追加 */
.examine .menu ul li a span {
    color: var(--black);
    font-size: 30px;
    letter-spacing: .03em
}

.examine .menu ul li a img {
    margin-right: 20px;
}

/* 受付画面＞健診日、健診時刻欄 */
.examine > dl {
    display: flex;
    justify-content: space-between;
    margin: 20px 0 0 0;
    padding: 0 30%;
}
.examine > dl dt {
    margin-top: 2px;
    font-weight: 500;
}

/* 主催者名欄 */
#receptionEditModal .organizer,
#receptionRegistModal .organizer,
.reception-header .organizer,
.examine .reception-header .date,
.examine .reception-header .time {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

/* 主催者って書いているところ */
#receptionEditModal .organizer .label,
#receptionRegistModal .organizer .label,
.reception-header .organizer .label,
.examine .reception-header .date .label,
.examine .reception-header .time .label {
    margin-right: 12px;
    color: var(--black);
    font-size: 16px;
    font-weight: 500
}

/* 主催者名記述欄 */
.pt_repo_prt_scr > div:nth-of-type(2) ul li:last-of-type,   /* レポート印刷（健診者一覧）画面＞開催日時 背景色グレーで利用 */
.group form ul li:nth-of-type(2),
.examine > dl dd:first-of-type,
#receptionEditModal .organizer .value,
#receptionRegistModal .organizer .value,
.reception-header .organizer .value,
.examine .reception-header .date .value,
.examine .reception-header .time .value {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 300px;
    height: 40px;
    padding: 0 20px;
    border-radius: 5px;
    color: var(--black);
    font-size: 26px;
    white-space: nowrap;
    background-color: #dadada
}

/* 受付画面＞健診日欄 */
.group form ul li:nth-of-type(2),
.examine > dl dd:first-of-type {
    padding: 0;
    width: 150px;
    height: 30px;
    justify-content: center;
    font-size: 16px;
}

.examine .reception-header .organizer .selectbox,
.examine .reception-header .date .selectbox,
.examine .reception-header .time .selectbox {
    position: relative
}

.examine .reception-header .organizer .selectbox::before,
.examine .reception-header .date .selectbox::before,
.examine .reception-header .time .selectbox::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 5px;
    z-index: 2
}

.examine .reception-header .organizer .selectbox::after,
.examine .reception-header .date .selectbox::after,
.examine .reception-header .time .selectbox::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    border-radius: 5px;
    z-index: 1;
    mix-blend-mode: multiply;
    -webkit-filter: blur(3px);
    filter: blur(3px);
    opacity: .3
}

.examine .reception-header .organizer .selectbox *,
.examine .reception-header .date .selectbox *,
.examine .reception-header .time .selectbox * {
    position: relative;
    z-index: 3
}

.examine .reception-header .organizer .selectbox select,
.examine .reception-header .date .selectbox select,
.examine .reception-header .time .selectbox select {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 30px;
    padding: 0 20px;
    font-size: 14px;
    white-space: nowrap;
    background-color: rgba(0, 0, 0, 0)
}

@media(max-width: 1024px) {
    .examine .reception-header .organizer {
        width: 100%;
        margin-bottom: 20px
    }
}

.examine .reception-header .organizer .value {
    /*width: 300px;
    font-size: 26px;*/  /* 25/04/23 add */
}

@media(max-width: 1024px) {
    .examine .reception-header .date {
        margin-right: 40px
    }
}

.examine .reception-header .date .value {
    width: 150px
}

.examine .reception-header .time .selectbox {
    width: 150px
}

/* 受付モーダル画面 */
#receptionEditModal input[type="text"],
#receptionEditModal select,
#receptionRegistModal input[type="text"],
#receptionRegistModal select {
    font-size: 1.125rem;
}


.examine .scheduled,
.examine .accepted {
    position: relative;
    margin: 0 auto 42px
}

@media(max-width: 1024px) {

    .examine .scheduled,
    .examine .accepted {
        width: 768px;
        padding: 0 34px
    }
}

@media(min-width: 1025px) {

    .examine .scheduled,
    .examine .accepted {
        width: 900px
    }
}

.examine .scheduled .title,
.examine .accepted .title {
    margin: 0 0 12px;
    color: var(--red);
    font-size: 16px;
    font-weight: 500
}

.examine .scheduled .table,
.examine .accepted .table {
    --border-color: #b3b3b3;
    position: relative;
    padding: 22px 30px;
    color: var(--black)
}

.examine .scheduled .table::before,
.examine .accepted .table::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 10px;
    z-index: 2
}

.examine .scheduled .table::after,
.examine .accepted .table::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    border-radius: 10px;
    z-index: 1;
    mix-blend-mode: multiply;
    -webkit-filter: blur(3px);
    filter: blur(3px);
    opacity: .3
}

.examine .scheduled .table *,
.examine .accepted .table * {
    position: relative;
    z-index: 3
}

@media(min-width: 1025px) {

    .examine .scheduled .table,
    .examine .accepted .table {
        height: 310px
    }
}

.examine .scheduled .table .inner,
.examine .accepted .table .inner {
    overflow: auto;
    height: 100%
}

.examine .scheduled .table table,
.examine .accepted .table table {
    width: 100%
}

.examine .scheduled .table table thead tr th,
.examine .accepted .table table thead tr th {
    height: 34px;
    padding: 0 8px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    background-color: #e8e8e8
}

.examine .scheduled .table table thead tr th:not(:last-child),
.examine .accepted .table table thead tr th:not(:last-child) {
    border-right: 1px solid var(--border-color)
}

.examine .scheduled .table table tbody tr td,
.examine .accepted .table table tbody tr td {
    height: 34px;
    padding: 0 14px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    vertical-align: middle;
    white-space: nowrap
}

.examine .scheduled .table table tbody tr td:not(:last-child),
.examine .accepted .table table tbody tr td:not(:last-child) {
    border-right: 1px solid var(--border-color)
}

.examine .scheduled .table table tbody tr td:nth-child(1),
.examine .accepted .table table tbody tr td:nth-child(1) {
    background-color: var(--pale-red)
}


.examine .scheduled .btns,
.examine .accepted .btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 32px auto 0
}

.examine .scheduled .btns .btn,
.examine .accepted .btns .btn {
    margin: 0 18px
}


@media(max-width: 1024px) {
    .examine .oral-header {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        width: 768px;
        margin: 60px auto 40px;
        padding: 0 34px
    }
}

@media(min-width: 1025px) {
    .examine .oral-header {
        display: flex;
        margin-top: 80px;
        margin-left: 660px;
    }
}

.examine .oral-header .organizer {
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

@media(max-width: 1024px) {
    .examine .oral-header .organizer {
        width: 100%;
        margin-bottom: 20px
    }
}

.examine .oral-header .organizer .label {
    /*margin-right: 12px;
    color: var(--black);
    font-size: 16px;
    font-weight: 500*/
}


.oral_scr .msg {
    margin: 20px auto;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
}


.oral_scr .oral {
    margin: 0 auto
}

@media(max-width: 1024px) {
    .examine .oral {
        width: 768px;
        padding: 0 34px
    }
}

@media(min-width: 1025px) {
    .examine .oral {
        width: 900px
    }
}

.examine .oral .wrapper {
    position: relative
}

.examine .oral .wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 10px;
    z-index: 2
}

.examine .oral .wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    border-radius: 10px;
    z-index: 1;
    mix-blend-mode: multiply;
    -webkit-filter: blur(3px);
    filter: blur(3px);
    opacity: .3
}

.examine .oral .wrapper * {
    position: relative;
    z-index: 3
}

.examine .oral .wrapper .inner {
    overflow: auto
}

.examine .oral .head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 14px 50px;
    border-radius: 10px 10px 0 0;
    background-color: var(--pale-red)
}

@media(max-width: 1024px) {
    .examine .oral .head {
        width: 900px
    }
}

.examine .oral .head .head-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px
}

.examine .oral .head .head-item>label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 8px;                    /* 25/04/21 add */
    height: 24px;
    padding: 0 16px;
    border: 1px solid var(--black);
    border-radius: 12px;
    font-size: 14px;
    background-color: #fff
}

.examine .oral .head .head-item .input-text {
    position: relative;
    height: 30px
}

.examine .oral .head .head-item .input-text::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 5px;
    z-index: 2
}

.examine .oral .head .head-item .input-text::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    border-radius: 5px;
    z-index: 1;
    mix-blend-mode: multiply;
    -webkit-filter: blur(3px);
    filter: blur(3px);
    opacity: .3
}

.examine .oral .head .head-item .input-text * {
    position: relative;
    z-index: 3
}

.examine .oral .head .head-item .input-text input[type=text] {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0 10px;
    border-radius: 5px;
    font-size: 16px;
    background-color: rgba(0, 0, 0, 0)
}

.examine .oral .head .head-item .input-text input[type=text]:focus {
    outline: 1px solid var(--red);
    border: 1px solid var(--red)
}

.examine .oral .head .head-item .value {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    color: var(--black);
    font-size: 16px
}

.examine .oral .body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 24px 50px
}

@media(max-width: 1024px) {
    .examine .oral .body {
        width: 900px
    }
}

.oral section {                     /* block1～3廃止 (25/04/21) */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 21px 24px;
    border-radius: 5px;
    background-color: #f6f6f6;
}

.oral .body article:first-of-type section dl dt,
.oral section .title {                      /* block1～3廃止 (25/04/21) */
    color: var(--red);
    font-size: 18px;
    font-weight: 400;
    line-height: 30px
}

.oral section .input-list {             /* block1～3廃止 (25/04/21) */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.oral section .input-item {             /* block1～3廃止 (25/04/21) */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 18px;
    -moz-column-gap: 18px;
    column-gap: 18px
}

.oral section .input-item .label {          /* block1～3廃止 (25/04/21) */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 6px;                        /* 25/04/21 add */
    height: 24px;
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    background-color: var(--gray)
}

.oral section .input-item-text {            /* block1～3廃止 (25/04/21) */
    position: relative;
    height: 30px
}

.oral section .input-item-text::before {    /* block1～3廃止 (25/04/21) */
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 5px;
    z-index: 2
}

.oral section .input-item-text::after { /* block1～3廃止 (25/04/21) */
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    border-radius: 5px;
    z-index: 1;
    mix-blend-mode: multiply;
    -webkit-filter: blur(3px);
    filter: blur(3px);
    opacity: .3
}

.oral section .input-item-text * {          /* block1～3廃止 (25/04/21) */
    position: relative;
    z-index: 3
}

.oral section .input-item-text input[type=text] {       /* block1～3廃止 (25/04/21) */
    display: block;
    width: 100%;
    height: 100%;
    padding: 0 10px;
    border-radius: 5px;
    font-size: 16px;
    background-color: rgba(0, 0, 0, 0)
}

.oral section .input-item-text input[type=text]:focus { /* block1～3廃止 (25/04/21) */
    outline: 1px solid var(--red);
    border: 1px solid var(--red)
}

.oral section {
/*.examine .oral .body .block1,
.examine .oral .body .block2 {*/
    width: 380px;
/*    height: 160px; */                         /* パ、カ復活時は本プロパティ有効 */
}

.oral section .input-item>label {               /* block1～3廃止 (25/04/21) */
    width: 80px
}

.oral section .input-item-text {                /* block1～3廃止 (25/04/21) */
    width: 90px
}

.examine .oral .body .block3 {
    width: 100%;
    height: 120px;
    margin-top: 24px
}

.examine .oral .body .block3>.input-list>.input-item>label {
    width: 110px
}

.examine .oral .body .block3>.input-list>.input-item>.input-item-radio-list {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 28px;
    -moz-column-gap: 28px;
    column-gap: 28px;
    width: 510px;
    height: 30px;
    padding: 0 60px
}

.examine .oral .body .block3>.input-list>.input-item>.input-item-radio-list::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 5px;
    z-index: 2
}

.examine .oral .body .block3>.input-list>.input-item>.input-item-radio-list::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    border-radius: 5px;
    z-index: 1;
    mix-blend-mode: multiply;
    -webkit-filter: blur(3px);
    filter: blur(3px);
    opacity: .3
}

.examine .oral .body .block3>.input-list>.input-item>.input-item-radio-list * {
    position: relative;
    z-index: 3
}

.examine .oral .body .block3>.input-list>.input-item>.input-item-radio-list>.input-item-radio-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 5px;
    -moz-column-gap: 5px;
    column-gap: 5px
}

.examine .schedule-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    margin: 80px 0 20px 660px;
    align-items: center;
}

@media(max-width: 1024px) {
    .examine .schedule-header {
        width: 768px;
        padding: 0 34px
    }
}

@media(min-width: 1025px) {
    .examine .schedule-header {
        /*width: 900px*/
    }
}

.examine .schedule-header .label {
    margin-right: 12px;
    color: var(--black);
    font-size: 16px;
    font-weight: 500
}

.examine .schedule-header .name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 300px;
    height: 40px;
    padding: 0 20px;
    border-radius: 5px;
    color: var(--black);
    font-size: 26px;        /* 25/04/14 元は16 */
    background-color: #dadada
}

.examine .schedule {
    margin: 20px auto 0;
}

@media(max-width: 1024px) {
    .examine .schedule {
        width: 768px;
        padding: 0 34px
    }
}

@media(min-width: 1025px) {
    .examine .schedule {
        width: 900px
    }
}

.examine .schedule>.inner {
    position: relative;
    padding: 10px 24px 20px
}

.examine .schedule>.inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 10px;
    z-index: 2
}

.examine .schedule>.inner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    border-radius: 10px;
    z-index: 1;
    mix-blend-mode: multiply;
    -webkit-filter: blur(3px);
    filter: blur(3px);
    opacity: .3
}

.examine .schedule>.inner * {
    position: relative;
    z-index: 3
}

.examine .schedule .head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 14px;
    -moz-column-gap: 14px;
    column-gap: 14px;
    padding: 0 0 8px
}

.examine .schedule .head .month {
    color: var(--black);
    font-size: 16px;
    font-weight: 400
}

.examine .schedule .head .prev,
.examine .schedule .head .this_month,   /* 健診スケジュール画面＞今月ボタン追加 */
.examine .schedule .head .next {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 50px;
    height: 20px;
    border-radius: 3px;
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    background-color: var(--red)
}

.examine .schedule #calendar.fc .fc-scrollgrid {
    border: 0
}

.examine .schedule #calendar.fc .fc-daygrid-day.fc-day-today {
    background-color: var(--beige)
}

.examine .schedule #calendar.fc .fc-daygrid-day-number {
    font-size: 13px
}

.examine .schedule #calendar.fc-theme-standard th {
    border: 0
}

.examine .schedule #calendar.fc-theme-standard td {
    border: 1px solid #b3b3b3;
    border-top: 0
}

.examine .schedule #calendar.fc-theme-standard tr:first-child td {
    border-top: 1px solid #b3b3b3
}

.examine .schedule #calendar.fc-theme-standard tr td:first-child {
    border-left: 0
}

.examine .schedule #calendar.fc-theme-standard tr td:last-child {
    border-right: 0
}

.examine .schedule #calendar .fc-col-header-cell {
    height: 26px;
    background-color: #e8e8e8
}

.examine .schedule #calendar .fc-col-header-cell>.fc-scrollgrid-sync-inner {
    height: 100%
}

.examine .schedule #calendar .fc-col-header-cell>.fc-scrollgrid-sync-inner>.fc-col-header-cell-cushion {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
    font-size: 13px;
    font-weight: 400
}

.examine .schedule #calendar.fc .fc-event {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 18px;
    padding: 0 3px;
    font-size: 12px
}

.examine .schedule #calendar.fc .fc-event-head {
    margin-bottom: 2px
}

.examine .schedule #calendar.fc .fc-event-detail {
    height: 16px;
    margin-top: 0;
    border-top: 0;
    border-bottom: 0
}

.examine .schedule #calendar.fc .fc-daygrid-day {
    padding-bottom: 6px
}

@media(max-width: 1024px) {
    .group .group-header {
        /*width: 768px;*/
        margin: 60px auto 32px;
        padding: 0 34px
    }
}

@media(min-width: 1025px) {
    .group .group-header {
        /*width: 900px;*/
        margin: 12px auto 32px  /* 、margin-top 60 → 12 */
    }
}

.group .group-header .top .organizer .value {
    width: 300px
}




.group form ul {
    display: flex;
    padding: 20px 100px;
    justify-content: space-between;
}


.group form .selectbox {
    height: 30px;
}


.group form ul li:not(:last-of-type){
    margin: 5px;
}




.group .group-header .bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 20px 0 0
}

@media(max-width: 1024px) {
    .group .group-header .bottom {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 0
    }

    .group .group-header .bottom .btn {
        margin: 20px auto 0
    }
}

@media(min-width: 1025px) {
    .group .group-header .bottom {
        padding: 0 30px 0 0
    }
}

.group .group-header .organizer {
    display: flex;
    margin-left: 660px;
}
.group .group-header .date,
.group .group-header .groupname,
.group .group-header .time {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: end;
}

/*.group .group-header .organizer .label,*/
.group .group-header .date .label,
.group .group-header .groupname .label,
.group .group-header .time .label {
    margin-right: 12px;
    color: var(--black);
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap
}


.group .group-header .top .organizer .label {
    margin-top: 7px;
    margin-right: 12px;
    color: var(--black);
    font-size: 16px;
    font-weight: 500;
}



/*.group .group-header .organizer .value,*/
.group .group-header .date .value,
.group .group-header .groupname .value,
.group .group-header .time .value {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 30px;
    padding: 0 20px;
    border-radius: 5px;
    color: var(--black);
    font-size: 14px;
    white-space: nowrap;
    background-color: #dadada
}

.group .group-header .organizer .selectbox,
.group .group-header .date .selectbox,
.group .group-header .groupname .selectbox,
.group .group-header .time .selectbox {
    position: relative
}

.group .group-header .organizer .selectbox::before,
.group .group-header .date .selectbox::before,
.group .group-header .groupname .selectbox::before,
.group .group-header .time .selectbox::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 5px;
    z-index: 2
}

.group .group-header .organizer .selectbox::after,
.group .group-header .date .selectbox::after,
.group .group-header .groupname .selectbox::after,
.group .group-header .time .selectbox::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    border-radius: 5px;
    z-index: 1;
    mix-blend-mode: multiply;
    -webkit-filter: blur(3px);
    filter: blur(3px);
    opacity: .3
}

.group .group-header .organizer .selectbox *,
.group .group-header .date .selectbox *,
.group .group-header .groupname .selectbox *,
.group .group-header .time .selectbox * {
    position: relative;
    z-index: 3
}

.group .group-header .organizer .selectbox select,
.group .group-header .date .selectbox select,
.group .group-header .groupname .selectbox select,
.group .group-header .time .selectbox select {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 30px;
    padding: 0 20px;
    font-size: 14px;
    white-space: nowrap;
    background-color: rgba(0, 0, 0, 0)
}

.group .group-header .date .value {
    width: 150px
}

.group .group-header .groupname .selectbox,
.group .group-header .time .selectbox {
    width: 120px
}

.group .group-status {
    margin: 0 auto
}

@media(max-width: 1024px) {
    .group .group-status {
        width: 768px;
        padding: 0 34px
    }
}

@media(min-width: 1025px) {
    .group .group-status {
        width: 1200px   /* 900 to 1200 */
    }
}

.group .group-status .wrapper {
    position: relative
}

.group .group-status .wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 10px;
    z-index: 2
}

.group .group-status .wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    border-radius: 10px;
    z-index: 1;
    mix-blend-mode: multiply;
    -webkit-filter: blur(3px);
    filter: blur(3px);
    opacity: .3
}

.group .group-status .wrapper * {
    position: relative;
    z-index: 3
}

.group .group-status .wrapper .inner {
    overflow: auto
}

.group .group-status .head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 10px 30px;
    border-radius: 10px 10px 0 0;
    background-color: var(--pale-red)
}

@media(max-width: 1024px) {
    .group .group-status .head {
        width: 900px
    }
}

.group .group-status .head .title {
    color: var(--red);
    font-size: 20px;
    font-weight: 500
}

.group .group-status .head .btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px
}

.group .group-status .body {
    padding: 34px 30px 20px
}

@media(max-width: 1024px) {
    .group .group-status .body {
        width: 900px
    }
}

.group .group-status .body table {
    --border-color: #b3b3b3;
    width: 100%
}

.group .group-status .body table thead tr th {
    height: 34px;
    padding: 0 8px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    background-color: #e8e8e8
}

.group .group-status .body table thead tr th:not(:last-child) {
    border-right: 1px solid var(--border-color)
}

.group .group-status .body table thead tr:nth-child(2) th:last-child {
    border-right: 1px solid var(--border-color)
}

.group .group-status .body table tbody tr td {
    height: 54px;
    padding: 0 14px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    line-height: 18px;
    vertical-align: middle;
    white-space: nowrap
}

.group .group-status .body table tbody tr td:not(:last-child) {
    border-right: 1px solid var(--border-color)
}

.group .group-status .body table tbody tr td:nth-child(1) {
    background-color: var(--pale-red)
}

.group .group-status .body table tbody tr td:not(:nth-child(1)) {
    text-align: center
}

.group .group-status .body table tbody tr td label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 400;
    color: var(--black)
}

.group .group-status .body table tbody tr td label input {
    margin-left: 6px;
    cursor: pointer
}

.ai-pagetitle {
    position: fixed;
    z-index: 20;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

@media(max-width: 767px) {
    .ai-pagetitle {
        top: liquid(60);
        left: liquid(20);
        height: liquid(40);
        padding: 0 liquid(40) 0 liquid(34)
    }
}

@media(min-width: 768px)and (max-width: 1024px) {
    .ai-pagetitle {
        top: 60px;
        left: 20px;
        height: 40px;
        padding: 0 40px 0 34px
    }
}

@media(min-width: 1025px) {
    .ai-pagetitle {
        top: 70px;
        left: calc(50% - 450px);
        height: 40px;
        padding: 0 40px 0 34px
    }
}

.ai-pagetitle::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 10px;
    z-index: 2
}

.ai-pagetitle::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    border-radius: 10px;
    z-index: 1;
    mix-blend-mode: multiply;
    -webkit-filter: blur(3px);
    filter: blur(3px);
    opacity: .3
}

.ai-pagetitle * {
    position: relative;
    z-index: 3
}

.ai-pagetitle svg {
    margin: 0 16px 0 0
}

.ai-pagetitle span {
    color: var(--red);
    font-weight: 500
}

@media(max-width: 767px) {
    .ai-pagetitle span {
        font-size: liquid(20)
    }
}

@media(min-width: 768px)and (max-width: 1024px) {
    .ai-pagetitle span {
        font-size: 20px
    }
}

@media(min-width: 1025px) {
    .ai-pagetitle span {
        font-size: 20px
    }
}

@media(max-width: 767px) {
    .ai {
        width: liquid(700);
        margin: liquid(70) auto 0
    }
}

@media(min-width: 768px)and (max-width: 1024px) {
    .ai {
        width: 700px;
        margin: 70px auto 0
    }
}

@media(min-width: 1025px) {
    .ai {
        width: 900px;
        margin: 80px auto 0
    }
}

.ai .qr {
    position: relative;
    width: 900px;
    height: 360px;
    margin: 0 auto 50px
}

.ai .qr .camera {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 450px;
    height: 360px;
    margin: 0 auto
}

.ai .qr .camera::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 10px;
    z-index: 2
}

.ai .qr .camera::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    border-radius: 10px;
    z-index: 1;
    mix-blend-mode: multiply;
    -webkit-filter: blur(3px);
    filter: blur(3px);
    opacity: .3
}

.ai .qr .camera * {
    position: relative;
    z-index: 3
}

.ai .qr .camera .msg {
    position: absolute;
    bottom: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    padding: 10px 0;
    border-radius: 0 0 10px 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-align: center;
    background-color: #777
}

.ai .qr .switcher {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    padding: 19px 24px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content
}

.ai .qr .switcher::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 10px;
    z-index: 2
}

.ai .qr .switcher::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    border-radius: 10px;
    z-index: 1;
    mix-blend-mode: multiply;
    -webkit-filter: blur(3px);
    filter: blur(3px);
    opacity: .3
}

.ai .qr .switcher * {
    position: relative;
    z-index: 3
}

.ai .qr .switcher .title {
    margin: 0 0 10px;
    color: var(--red);
    font-size: 20px;
    font-weight: 500
}

.ai .qr .switcher ul li a {
    display: block;
    color: var(--black);
    font-size: 14px;
    line-height: 24px
}

.ai .qr .switcher ul li a:hover {
    color: var(--red)
}

.ai .ctrl {
    position: relative;
    width: 900px;
    margin: 0 auto
}

@media(min-width: 1025px) {
    .ai .ctrl {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }
}

.ai .ctrl .manual {
    position: relative;
    width: 620px;
    height: 120px;
    padding: 18px 34px
}

.ai .ctrl .manual::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 10px;
    z-index: 2
}

.ai .ctrl .manual::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    border-radius: 10px;
    z-index: 1;
    mix-blend-mode: multiply;
    -webkit-filter: blur(3px);
    filter: blur(3px);
    opacity: .3
}

.ai .ctrl .manual * {
    position: relative;
    z-index: 3
}

.ai .ctrl .manual .title {
    color: var(--red);
    font-size: 20px;
    font-weight: 500
}

.ai .ctrl .manual .form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 14px 0 0
}

.ai .ctrl .manual .form label {
    color: var(--black);
    font-size: 16px;
    font-weight: 500
}

.ai .ctrl .manual .form input[type=text] {
    display: block;
    width: 288px;
    height: 40px;
    padding: 0 20px;
    border: 1px solid var(--black);
    border-radius: 5px
}

.ai .ctrl .manual .form input[type=text]:focus {
    outline: 1px solid var(--red);
    border-color: var(--red)
}

.ai .ctrl .test {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 240px;
    height: 120px;
    padding: 18px 0
}

.ai .ctrl .test::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 10px;
    z-index: 2
}

.ai .ctrl .test::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    border-radius: 10px;
    z-index: 1;
    mix-blend-mode: multiply;
    -webkit-filter: blur(3px);
    filter: blur(3px);
    opacity: .3
}

.ai .ctrl .test * {
    position: relative;
    z-index: 3
}

.ai .ctrl .test .title {
    color: var(--red);
    font-size: 20px;
    font-weight: 500
}

.ai .ctrl .test .btn {
    margin: 14px 0 0
}

.ai .user {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    padding: 14px 30px
}

.ai .user::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 10px;
    z-index: 2
}

.ai .user::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    border-radius: 10px;
    z-index: 1;
    mix-blend-mode: multiply;
    -webkit-filter: blur(3px);
    filter: blur(3px);
    opacity: .3
}

.ai .user * {
    position: relative;
    z-index: 3
}

.ai .user .user-item.name {
    min-width: 220px
}

.ai .user .user-item.host {
    min-width: 220px
}

.ai .user .user-item .label {
    padding: 0 2px 9px;
    font-size: 16px
}

.ai .user .user-item .value {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 30px;
    padding: 0 20px;
    border-radius: 5px;
    background-color: #e6e6e6
}

.ai>.camera {
    position: relative;
    width: 530px;
    height: 310px;
    margin: 40px auto 0
}

.ai>.camera::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 10px;
    z-index: 2
}

.ai>.camera::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    border-radius: 10px;
    z-index: 1;
    mix-blend-mode: multiply;
    -webkit-filter: blur(3px);
    filter: blur(3px);
    opacity: .3
}

.ai>.camera * {
    position: relative;
    z-index: 3
}

.ai>.camera .msg {
    position: absolute;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    padding: 10px 0;
    border-radius: 10px 10px 0 0;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    text-align: center;
    background-color: #777
}

.ai>.camera .bg {
    position: absolute;
    right: 0;
    bottom: 32px;
    left: 0;
    width: 173px;
    height: 107px;
    margin: 0 auto;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center
}

.ai .camera-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 28px 0 0
}

.ai .start {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    margin: 16px 0 0;
    padding: 8px 0
}

.ai .start::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 10px;
    z-index: 2
}

.ai .start::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    border-radius: 10px;
    z-index: 1;
    mix-blend-mode: multiply;
    -webkit-filter: blur(3px);
    filter: blur(3px);
    opacity: .3
}

.ai .start * {
    position: relative;
    z-index: 3
}

.ai .start .text {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: .02em
}

.ai .start .btn {
    margin: 0 0 0 30px
}

.ai .result {
    position: relative;
    width: 100%;
    margin: 16px 0 0;
    padding: 22px 30px
}

.ai .result::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 10px;
    z-index: 2
}

.ai .result::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    border-radius: 10px;
    z-index: 1;
    mix-blend-mode: multiply;
    -webkit-filter: blur(3px);
    filter: blur(3px);
    opacity: .3
}

.ai .result * {
    position: relative;
    z-index: 3
}

.ai .result .graph1 {
    width: 100%
}

.ai .result .table {
    table-layout: fixed;
    width: 100%;
    margin: 24px 0 0;
    text-align: center
}

.ai .result .table thead tr th {
    height: 34px;
    border-bottom: 1px solid #b3b3b3;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    vertical-align: middle
}

.ai .result .table thead tr th:not(.blank) {
    background-color: var(--red)
}

.ai .result .table thead tr th .blank {
    background-color: rgba(0, 0, 0, 0)
}

.ai .result .table thead tr th:first-child {
    border-right: 1px solid #b3b3b3
}

.ai .result .table thead tr th:not(:first-child):not(:last-child) {
    border-right: 1px solid #fff
}

.ai .result .table tbody tr th,
.ai .result .table tbody tr td {
    height: 34px;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    vertical-align: middle
}

.ai .result .table tbody tr th:not(:last-child),
.ai .result .table tbody tr td:not(:last-child) {
    border-right: 1px solid #b3b3b3
}

.ai .result .table tbody tr th:last-child,
.ai .result .table tbody tr td:last-child {
    border-right: 0
}

.ai .result .table tbody tr th {
    background-color: var(--red);
    color: #fff
}

.ai .result .table tbody tr td {
    border-bottom: 1px solid #b3b3b3;
    color: var(--black)
}

.ai .result .table tbody tr:not(:last-child) th {
    border-bottom: 1px solid #fff
}

.ai .result .table tbody tr:last-child th {
    border-bottom: 1px solid #b3b3b3
}

.ai .result .graph2 {
    width: 100%;
    margin: 20px 0 0
}




/* ここからフレイル健診デザイン変更で佐々木追加 */
/* 25/04/07 主催者名表示 */
header .menu-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 768px;
    margin: 110px 0 0 300px;
    padding: 0 34px;
    text-align: right;
}

header .menu-header .label {
    margin-right: 16px;
    color: var(--black);
    font-size: 16px;
    font-weight: 500
}

header .menu-header .name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 300px;
    height: 40px;
    padding: 0 20px;
    border-radius: 5px;
    color: var(--black);
    font-size: 16px;
    background-color: #dadada
}

/* 受付＞モーダル画面ボタン表示部 */
#receptionEditModal .modal-footer,
#receptionRegistModal .modal-footer {
    text-align: center;
}

#receptionEditModal .modal-footer button,       /* 受付確認画面＞受付ボタン */
#receptionRegistModal .modal-footer button      /* 受付新規登録画面＞確認ボタン */
{
    display: inline;
    /*background-color : --var(red);*/
    border: none;
}

/* 戻るボタン */
.modoru-btn {
    width: 80px;
    margin-left: 220px;
}

/* 受付確認画面 主催者 */
#receptionEditModal .organizer {
    margin-left: 10px;
}
#receptionEditModal .organizer .value,
#receptionRegistModal .organizer .value {
    width: 275px;
}

/* 受付画面 受付取り消しモーダル画面 */
#examineReceptionCancelModal .modal-footer {
    display: flex;
    justify-content: center;
}


#commonMessageModal .modal-footer button {
    margin-left: 160px;
}

/* 受付票を作成します。以下のボタンをクリックしてください */
#examineReceptionPdfModal .modal-footer button {
    margin-left: 300px;
}


/* 健診スケジュール＞モーダル画面 */
#examineScheduleForm .modal-body {
    background-color: var(--beige);
    border-radius: 0.3em;   /* ↑で背景色を設定すると moda-content で指定した角丸が無効になるためここで再設定 */
}

#sch_date {
    vertical-align: baseline;       /* 本ファイル109行目で select に対して vertical-align : middle を設定しているのを無効化 */
    box-shadow: 0 0 4px lightgray;
}

#examineScheduleModal section button {
    width: 70px;
    color: white;
    border: 1px solid var(--red);
    border-radius: 20px;
    background-color: var(--red);
}

#examineScheduleModal #examineScheduleDetail,   /* 詳細ボタン */
#examineScheduleModal button:last-of-type { /* 戻るボタン */
    color: black;
    background-color: white;
}


/* 「終了してもよろしいですか」モーダル画面下部ボタン表示エリア */
#exitModal .modal-footer {
    display: flex;
    justify-content: center;
}


/* グループ管理画面＞主催者名エリア */
.group .organizer {
    margin-top: 80px;
}

/* グループ管理画面＞レポート印刷モーダル＞ボタン表示部 */
#examineReportPdfModal .modal-footer {
    display: flex;
    justify-content: center;
}

/* グループ管理画面＞レポートリストモーダル画面 健診者ごとのボタン表示 */
#examineReportPdfModal .reportPdfLinkBox .btn {
    display: block;
    width: auto;
    height: auto;
    border-radius: 0.25rem;
    font-size: 0.9rem;
    font-weight: normal;
}


/* 身体測定画面＞主催者名エリア */
#examinePhysical .schedule-header {
    display: flex;
    margin-top: 70px;
    justify-content: flex-end;
}
#examinePhysical .schedule-header .label {
    margin-top: 8px;
    margin-right: 16px;
    color: var(--black);
    font-size: 16px;
    font-weight: 500
}
#examinePhysical .schedule-header .name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 300px;
    height: 40px;
    padding: 0 20px;
    border-radius: 5px;
    color: var(--black);
    font-size: 26px;        /* 25/04/14 元は16 */
    background-color: #dadada
}

/* 身体測定画面＞グループ名、番号、氏名エリア */
#examinePhysical article:first-of-type {
    display: flex;
    padding: 14px 50px;
    width: 100%;
    background-color: var(--pale-red);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
#examinePhysical article:first-of-type dl {
    display: flex;
    margin-bottom: 0;
}
/* 身体測定画面＞グループ名、番号、氏名の標題 */
#examinePhysical article:first-of-type dl dt {
    margin-top: 8px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 24px;
    padding: 0 16px;
    border: 1px solid var(--black);
    border-radius: 12px;
    font-size: 14px;
    font-weight: normal;
    background-color: #fff;
}

#examinePhysical #examinePhysicalForm {
    margin: 0 auto;
    width: 100%;
}

#examinePhysical article {
    margin: 0 auto;
    width: 80%;
}

/* 身体測定画面＞グループ名、番号、氏名の内容表示欄 */
#examinePhysical article:first-of-type dl dd {
    margin-bottom: 0;
}

/* グループ名欄 */
#examinePhysical article:first-of-type dl dd:first-of-type {
    margin: 8px 8px 0 8px;
    width: 150px;
}

/* 番号標題欄 */
#examinePhysical article:first-of-type dl dt:nth-of-type(2) {
    margin-right: 10px;
}

/* 番号表示欄 */
#examinePhysical article:first-of-type dl dd:nth-of-type(2) {
    margin-right: 50px;
}

/* 氏名表示欄 */
#examinePhysical article:first-of-type dl dd:last-of-type {
    margin: 8px 8px 0 8px;
    width: 150px;
}

/* バーコードをスキャナで～ の操作説明欄 */
#examinePhysical > p,
#examinePhysical form article:nth-of-type(2) {
    margin-top: 10px;
    padding: 0;
    width: 100%;
    line-height: 150%;
    text-align: center;
    color: var(--red);
    background-color:transparent;
}
#examinePhysical form article:nth-of-type(2) p {
    width: 100%;
}

/* 身長、体重エリア */
#examinePhysical form article:nth-of-type(3) {
    display: flex;
}
#examinePhysical form article:nth-of-type(3) section {
    margin: 10px 0;
    padding: 20px;
    width: 50%;
    max-width: 50%;
    background-color: #F2F2F2;
}
/* 身長エリア */
#examinePhysical form article:nth-of-type(3) section:first-of-type {
    margin-right: 10px;
}
/* 体重エリア */
#examinePhysical form article:nth-of-type(3) section:last-of-type {
    margin-left: 10px;
}
#examinePhysical form article:nth-of-type(3) section dl {
    display: flex;
}
/* 身長、体重標題欄 */
#examinePhysical form article:nth-of-type(3) section dl dt {
    width: 100px;
    margin-right: 20px;
    color: var(--red);
    font-weight: normal;
}
/* 身長、体重入力欄 */
#examinePhysical form article:nth-of-type(3) dd {
    width: 50%;
}
/* 身長、体重 input 欄 */
#examinePhysical form article:nth-of-type(3) dl dd:first-of-type {
    margin: 20px 10px 0 0;
}
/* cm、kg 欄 */
#examinePhysical form article:nth-of-type(3) dl dd:last-of-type {
    margin-top: 30px;
}

/* ペースメーカーを使用している健診者様です欄 */
#examinePhysical form article:nth-of-type(3) p {
    color: var(--red);
}

/* 握力欄 */
#examinePhysical form article:nth-of-type(4) {
    margin: 0 auto;
    padding: 20px;
    width: 80%;
    background-color: #F2F2F2;
}

/* 握力記述欄 */
#examinePhysical form article:nth-of-type(4) p {
    font-weight: normal;
    color: var(--red);
}


#examinePhysical form article:nth-of-type(4) dl {
    display: flex;
    margin-left: 50px;
    flex-wrap: wrap;
    width: 100%;
}

/* 握力回数標題欄 */
#examinePhysical form article:nth-of-type(4) dl dt {
    padding-top: 4px;
    width: 110px;
    height: 36px;
    color: white;
    font-weight: normal;
    text-align: center;
    background-color: #7F7F7F;
    border-radius: 20px;
}

/* 握力左標題欄 */
#examinePhysical form article:nth-of-type(4) dl dt:nth-of-type(even) {
    margin-left: 80px;
}

/* 握力入力欄 */
#examinePhysical form article:nth-of-type(4) dl dd:nth-of-type(odd) {
    margin-left: 10px;
    width: 130px;
}

/* 握力単位欄 */
#examinePhysical form article:nth-of-type(4) dl dd:nth-of-type(even) {
    margin: 10px 0 0 10px;
    width: 50px;
}

/* 東湖小学校専用欄 */
#examinePhysical form article:nth-of-type(5) {
    margin: 10px;
    padding: 20px;
    width: 100%;
    background-color: #F2F2F2;
}
/* 項目 */
#examinePhysical .toko_item {
    color: var(--red);
    font-weight: bold;
}
/* 回数 */
#examinePhysical .toko_kaisu {
    height: 36px;
    color: white;
    font-weight: normal;
    text-align: center;
    background-color: #7F7F7F;
    border-radius: 20px;
}

/* 登録ボタン行 */
#examinePhysical #toroku {
    display: block;
    margin: 10px;
    padding: 20px;
    width: 100%;
    text-align: center;
    background-color: transparent;
}

/* 登録ボタン */
#examinePhysical #toroku .btn {
    display: inline;
}


/* オーラル測定 バーコードリーダーを～ */
.oral-header + p {
    color: var(--red);
    text-align: center;
}

/* 舌圧エリア */
.oral .body article:nth-of-type(2) section {
    /*padding-top: 80px;*/
    height: 240px;
}
/* 縦位置が均等割にならないよう設定 */
.oral article:nth-of-type(2) section .input-list {
    justify-content: space-between;
}
.oral article:nth-of-type(2) section .input-item {
    margin-bottom: 4px;
}

/* 残存歯数、咀嚼測定表示エリア */
.oral .body article:first-of-type section:not(:first-of-type) {
    margin-top: 10px;
    height: 70px;
}

/* ボタンエリア */
.oral > article {
    display: flex;
    margin-top: 30px;
    justify-content: center;
}
.oral > article button {
    margin: 0 10px;
}

/* グループ名欄 */
.examine .oral .head .head-item:first-of-type {
    width: 20%;
}
.examine .oral .head .head-item:first-of-type label {
    width: 120px;
}

/* 番号欄・氏名欄 */
.examine .oral .head .head-item:not(:first-of-type) {
    margin-left: 10%;
    width: 30%;
}
.examine .oral .head .head-item:not(:first-of-type) label {
    width: 100px;
}



/* 舌苔の測定 */
/* グループ名、番号、氏名エリア */
.tciContainer .head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 14px 50px;
    border-radius: 10px 10px 0 0;
    background-color: var(--pale-red)
}

@media(max-width: 1024px) {
    .tciContainer .head {
        width: 900px
    }
}

.tciContainer .head .head-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px
}

.tciContainer .head .head-item>label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 8px;
    height: 24px;
    padding: 0 16px;
    border: 1px solid var(--black);
    border-radius: 12px;
    font-size: 14px;
    background-color: #fff
}

.tciContainer .head .head-item .input-text {
    position: relative;
    height: 30px
}

.tciContainer .head .head-item .input-text::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 5px;
    z-index: 2
}

.tciContainer .head .head-item .input-text::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    border-radius: 5px;
    z-index: 1;
    mix-blend-mode: multiply;
    -webkit-filter: blur(3px);
    filter: blur(3px);
    opacity: .3
}

.tciContainer .head .head-item .input-text * {
    position: relative;
    z-index: 3
}

.tciContainer .head .head-item .input-text input[type=text] {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0 10px;
    border-radius: 5px;
    font-size: 16px;
    background-color: rgba(0, 0, 0, 0)
}

.tciContainer .head .head-item .input-text input[type=text]:focus {
    outline: 1px solid var(--red);
    border: 1px solid var(--red)
}

.tciContainer .head .head-item .value {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    color: var(--black);
    font-size: 16px
}

/* 25/04/21 コメントアウト */
/* .tciContainer .oral-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
} */

@media(max-width: 1024px) {
    .tciContainer .oral-header {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        width: 768px;
        margin: 60px auto 40px;
        padding: 0 34px
    }
}

@media(min-width: 1025px) {
    .tciContainer .oral-header {
        width: 900px;
        margin: 12px auto 10px;     /* margin-top 60 to 12, bottom 40 to 10 25/04/21 */
        text-align: right;          /* 25/04/21 add */
    }
}

.tciContainer .oral-header .organizer {
    /*position: relative;*/     /* position display コメントアウト 25/04/21 */
    /*display: -webkit-box;*/
    /*display: -ms-flexbox;*/
    /*display: flex;*/
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

@media(max-width: 1024px) {
    .tciContainer .oral-header .organizer {
        width: 100%;
        margin-bottom: 20px
    }
}

.tciContainer .oral-header .organizer .label {
    margin-right: 12px;
    color: var(--black);
    font-size: 16px;
    font-weight: 500
}

.tciContainer .oral-header .organizer .value {
    /*display: -webkit-box;*/   /* display 3行コメントアウト (25/04/21) */
    /*display: -ms-flexbox;*/
    /*display: flex;*/
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 300px;
    height: 30px;
    padding: 0 20px;
    border-radius: 5px;
    color: var(--black);
    font-size: 26px;            /* 14 to 26 */
    white-space: nowrap;
    background-color: #dadada
}

.tciContainer .oral-header .msg {
    font-size: 14px;
    line-height: 22px
}

@media(min-width: 1025px) {
    .tciContainer .oral-header .msg {
        margin: 0 0 0 42px
    }
}


.tciContainer article {
    margin-left: 30px;
    padding: 30px;
    background-color: white;
}


.tciContainer article section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    /*justify-content: space-between;*/
    padding: 21px 24px;
    border-radius: 5px;
    background-color: #f6f6f6;
}

.tciContainer article:first-of-type section:not(:first-of-type) {
    margin-top: 10px;
    height: 70px;
}

/* .tciContainer article:first-of-type section:nth-of-type(2) {
    margin-top: 50px;   パ、カ復活時は有効化
} */

.tciContainer article section .title {
    color: var(--red);
    font-size: 18px;
    font-weight: 400;
    line-height: 30px
}

.tciContainer article section .input-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.tciContainer article section .input-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 18px;
    -moz-column-gap: 18px;
    column-gap: 18px
}

.tciContainer article section .input-item .label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 6px;
    height: 24px;
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    background-color: var(--gray)
}

.tciContainer article section .input-item-text {
    position: relative;
    height: 30px
}

.tciContainer article section .input-item-text::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 5px;
    z-index: 2
}

.tciContainer article section .input-item-text::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    border-radius: 5px;
    z-index: 1;
    mix-blend-mode: multiply;
    -webkit-filter: blur(3px);
    filter: blur(3px);
    opacity: .3
}

.tciContainer article section .input-item-text * {
    position: relative;
    z-index: 3
}

.tciContainer article section .input-item-text input[type=text] {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0 10px;
    border-radius: 5px;
    font-size: 16px;
    background-color: rgba(0, 0, 0, 0)
}

.tciContainer article section .input-item-text input[type=text]:focus {
    outline: 1px solid var(--red);
    border: 1px solid var(--red)
}

.tciContainer article section {
    width: 330px;
/*    height: 160px; */ /* パ、カ復活時は有効化 */
}

/* パ･タ･カ */
.tciContainer article section .input-item>label {
    width: 80px
}

/* 未使用 */
.tciContainer article section .input-item-text {
    width: 90px
}

/* パタカ測定って書いているところと label の margin */
.tciContainer article section:first-of-type .title {
    margin-right: 40px;
}

/* パタカ測定 測定値欄 */
.tciContainer article section:first-of-type .input-item div  {
    width: 50px;
    text-align: right;
}

/* 舌圧、残存歯数、咀嚼測定 */
.tciContainer article section:not(:first-of-type) dl {
    display: flex;
    width: 100%;
}
/* 舌圧、残存歯数、咀嚼測定って書いているところ */
.tciContainer article section:not(:first-of-type) dl dt {
    width: 50%;
    color: var(--red);
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}
/* 舌圧、残存歯数、咀嚼測定の測定値 */
.tciContainer article section:not(:first-of-type) dl dd {
    width: 47%;
    text-align: right;
}

/* 舌苔の判定画面＞登録ボタン */
.tciContainer #tciRegistButton {
    margin-left: 10px;
}

/* 舌苔の判定画面＞閉じるボタン */
.tciContainer #tciCloseButton {
    margin-left: 10px;
}

/* 受付画面＞主催者名 */
/*
.examine .reception-header:first-of-type {
    margin-top: 12px;
    justify-content: end;
}
*/

/* 受付画面＞検針日、健診時刻欄 */
.examine .reception-header:nth-of-type(2) {
    margin-top: 20px;
}

/* 受付新規登録画面、受付画面最上部 */
#receptionEditModal .modal-header,
#receptionRegistModal .modal-header {
    justify-content: normal;
}

/* 受付新規登録画面＞戻るボタン margin-left */
#receptionRegistModal .modoru-btn {
    margin-left: 190px;
}

/* 受付新規登録画面、受付画面 モーダル画面横幅 */
#receptionEditModal .modal-content,
#receptionRegistModal .modal-content {
    width: 92%;
}


/* 運動測定画面 */
.exercise_scr .reception-header:first-of-type {
    margin-top: 80px;
}
/* グループ名、番号、氏名行 */
.exercise_scr .head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    /*justify-content: space-between;*/
    padding: 14px 50px;
    border-radius: 10px 10px 0 0;
    background-color: var(--pale-red)
}

/* 運動測定画面 iPad運用のためコメントアウト */
/* @media(max-width: 1024px) {
    .exercise_scr .head {
        width: 900px;
    }
} */

.exercise_scr .head .head-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px
}
.exercise_scr .head .head-item>label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 8px;
    height: 40px;
    padding: 0 16px;
    border: 1px solid var(--black);
    border-radius: 20px;
    font-size: 26px;
    background-color: #fff
}
.exercise_scr .head .head-item .input-text {
    position: relative;
    height: 30px
}
.exercise_scr .head .head-item .input-text::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 5px;
    z-index: 2
}
.exercise_scr .head .head-item .input-text::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    border-radius: 5px;
    z-index: 1;
    mix-blend-mode: multiply;
    -webkit-filter: blur(3px);
    filter: blur(3px);
    opacity: .3
}
.exercise_scr .head .head-item .input-text * {
    position: relative;
    z-index: 3
}
.exercise_scr .head .head-item .input-text input[type=text] {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0 10px;
    border-radius: 5px;
    font-size: 26px;
    background-color: rgba(0, 0, 0, 0)
}
.exercise_scr .head .head-item .input-text input[type=text]:focus {
    outline: 1px solid var(--red);
    border: 1px solid var(--red)
}
.exercise_scr .head .head-item .value {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    color: var(--black);
    font-size: 26px
}

/* 運動測定用～記述部 */
.exercise_scr p {
    margin: 30px 0;
    color: var(--red);
    text-align: center;
}

/* 主催者名エリア */
.exercise_scr .organizer {
    justify-content: end;
}
.exercise_scr .organizer .value {
    padding: 0 20px;
    width: 300px;
    height: 40px;
    font-size: 26px;
}

/* 運動測定画面＞登録ボタン中央表示用 */
.exercise_scr form article:nth-of-type(2) .btn {
    display: inline;
    width: 200px;
    height: 50px;
    line-height: 120%;
    font-size: 30px;
    border-radius: 25px;
}

/* 運動測定画面 背景色白 */
.examineExerciseForm_inner {
    padding-bottom: 20px;
    background-color: white;
    border-radius: 10px;
    border: 1px solid lightgray;
    filter: drop-shadow(2px 2px 6px darkgray);
}

/* 運動測定画面＞登録ボタン行 */
#examineExerciseForm > article {
    justify-content: center;
}


/*
  以下画面の主催者名
    レポート印刷画面（主催者一覧・健診者一覧）
    身体測定画面
    スケジュール画面
    受付票印刷画面（主催者一覧・健診者一覧）
    健診者変更画面
    健診者変更削除画面
    健診者登録画面
    健診予定日時画面
    アカウント管理画面
    業務管理メニュー画面
    業務メニュー画面
*/
.reception-header {
    /*display: flex;
    justify-content: flex-end;*/
    margin-top: 80px;
    margin-left: 660px;
}

/* アカウント一覧、新規登録記述部 */
.account_scr h4 {
    font-size 16px;
    color: var(--red);
    font-size: 16px;
    font-weight: 500;
}

/* アカウント管理画面＞表部 */
.account_scr form article {     /* .examinePhysicalForm_innerが元 */
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    border: 1px solid lightgray;
    filter: drop-shadow(2px 2px 6px darkgray);
}
.account_scr form table thead {
    background-color: #e8e8e8;
}
.account_scr form table.dataTable {
    border: none;
}
.account_scr form table.table thead th {
    text-align: center;
    font-weight: normal;
    border-top: none;
    border-bottom: none;
}
.account_scr form table.table thead th:first-of-type {
    border-right: 1px solid #b3b3b3;
}
.account_scr form table.table thead th:last-of-type {
    border-left: 1px solid #b3b3b3;
}
.account_scr article:first-of-type table tr td {
    border-bottom: 1px solid #b3b3b3;
}

/* アカウント一覧＞チェックボックス欄 */
.account_scr #frmListAccount table tr td:first-of-type {
    background-color: var(--pale-red);
    border-right: 1px solid #b3b3b3;
}

/* アカウント一覧＞区分欄 */
.account_scr article:first-of-type table tr td:last-of-type {
    border-left: 1px solid #b3b3b3;
}

/* アカウント管理画面＞新規登録欄 */
#frmRegistAccount table th {
    padding-left: 10px;
    font-weight: normal;
    background-color: #e8e8e8;
    border-bottom: 1px solid #b3b3b3;
}
#frmRegistAccount tr:first-of-type th,
#frmRegistAccount tr:first-of-type td {
    border-top: none;
}
#frmRegistAccount tr:last-of-type th,
#frmRegistAccount tr:last-of-type td {
    border-bottom: none;
}

/* アカウント管理画面＞新規登録＞アカウント種別＞ドロップダウンリスト */
.account_scr select {
    /*filter: drop-shadow(2px 2px 6px darkgray);*/
}

/* アカウント管理画面＞アカウント一覧＞削除クリック時のモーダル画面＞ボタン表示部 */
#accountDeleteConfirmModal .modal-footer {
    display: flex;
}

/* アカウント管理画面＞ボタン */
.account_scr button {
    margin: 20px auto 0;
}


/* 業務管理メニュー画面 */
.management_scr ul {
    width: 760px;
    margin: 80px auto 0;
    padding: 0 34px
}
.management_scr ul li {
    width: 330px
}
.duties_scr ul li a img,            /* 業務メニュー画面 */
.management_scr ul li a img {
    margin-top: 3px;
    margin-right: 15px;
    width: 30px;
}


/* 業務メニュー画面 */
.duties_scr ul {
    margin: 80px auto 0;
    padding: 0 34px
}
.duties_scr ul li {
    width: 350px
}

/* 業務メニュー画面無効項目（Sでログイン時用） */
.no_effect {
    cursor: default;
}
.no_effect::before {
    background-color: gainsboro!important;
    opacity: .9;
}
.no_effect:hover::before {
    border: none!important;
}


/* 健診予定日時画面＞健診予定日、時間、登録ボタン欄 */
.dtl_scr > div:nth-of-type(2) {
    margin: 0 auto;
}
.dtl_scr #frmScheduleRegist ul {
    display: flex;
    margin: 20px auto 0;
}
.dtl_scr #frmScheduleRegist ul li {
    padding: 0 20px;
}

/* 健診予定日時画面＞健診予定日、時間見出し欄 */
.dtl_scr #frmScheduleRegist ul li:first-of-type,
.dtl_scr #frmScheduleRegist ul li:nth-of-type(3) {
    margin-top: 5px;
    font-size: 16px;
    font-weight: 500;
}
/* 健診予定日時画面＞健診予定日、時間入力欄 */
.dtl_scr #frmScheduleRegist ul li:nth-of-type(even) {
    margin-top: 5px;
}
/* 健診予定日時画面＞健診予定日入力欄 */
.dtl_scr #frmScheduleRegist #scheduleDate {
    height: 30px;
}


/* 健診予定日時画面＞健診予定日時一覧 */
/*.dtl_scr article > p {
    padding: 10px 20px;
    font-size: 20px;
    color: var(--red);
    background-color: var(--pale-red);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}*/
.dtl_scr #frmScheduleDelete table thead th {
    font-weight: normal;
    background-color: #e8e8e8;
}
/* 健診予定日時画面＞健診予定日時一覧＞チェックボックス列 */
.dtl_scr #frmScheduleDelete table tr td:nth-of-type(1) {
  min-width: 70px;
  text-align: center;
  border-top: none;
}
/* 健診予定日時画面＞健診予定日時一覧 レコードあり時のみ1列目の背景色変更 */
.dtl_scr #frmScheduleDelete table tr td:not(.noDataDescription):nth-of-type(1) {
    background-color: var(--pale-red);
}

/* 健診予定日時画面＞健診者取込ボタンが入っている枠 */
.dtl_scr #frmScheduleDelete table tr td:last-of-type {
    padding: 7px 0 0 0;
}
/* 健診予定日時画面＞健診者取込ボタン */
.dtl_scr #frmScheduleDelete table button {
    padding: 5px 20px;
    border-radius: 5px;
}

/* 健診予定日時画面＞（注）登録日を変更～ */
.dtl_scr #frmScheduleDelete table + p {
    margin-left: 20px;
}

/* 健診予定日時画面＞下部ボタンエリア */
.dtl_scr article + section {
    display: flex;
    justify-content: space-between;
    padding: 20px 345px 0;
}
/*.dtl_scr article #frmScheduleDelete section button {
    margin: 0 20px;
}*/

/* 健診予定日時画面＞削除クリック時のモーダル画面 */
#scheduleDeleteConfirmModal .modal-footer {
    display: flex;
}

/* 健診予定日時画面＞健診者情報取込モーダル画面＞下部ボタンエリア */
#getPatientsListModal #getPatinetListForm section {
    display: flex;
    justify-content: center;
}

/* 健診予定日時画面＞健診者情報取込モーダル画面＞取込ボタン */
#getPatientsListModal #getPatinetListForm section button:first-of-type {
    margin-right: 10px;
}

/* 健診予定日時画面＞健診者情報取込モーダル画面＞閉じるボタン */
#getPatientsListModal #getPatinetListForm section button:last-of-type {
    margin-left: 10px;
}



/* 健診者登録画面 start */

/* 健診者登録画面上部 氏名～からだカルテID記述部 */
.pt_regist_scr #frmPatient > div:first-of-type article {
    padding: 20px;
}

/* 健診者登録画面＞健診予定日時欄 */
.pt_regist_scr #frmPatient > div:last-of-type article {
    margin-top: 20px;
}
/* 健診者登録画面＞健診予定日時記述部 */
/*.pt_regist_scr article > p {
    padding: 10px 20px;
    font-size: 20px;
    color: var(--black);
    background-color: var(--pale-red);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}*/

/* 健診者登録画面＞健診予定日時欄の表 */
.pt_regist_scr #patientRegistTable {
    margin-left: 20px;
}
.pt_regist_scr #frmPatient #patientRegistTable thead th {
    font-weight: normal;
    border-top: none;
    border-bottom: none;
}
.pt_regist_scr #frmPatient #patientRegistTable tbody td {
    line-height: 200%;
    border-top: none;
}

/* 健診者登録画面＞健診予定日時＞選択列 */
.pt_regist_scr #patientRegistTable tbody tr td:first-of-type {
    background-color: var(--pale-red);
}

/* 健診者登録画面＞登録ボタン欄 */
.pt_regist_scr #frmPatient > div:last-of-type section {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

/* 健診予定日時が選択されていませんモーダル画面＞ボタン部 */
#patientExistsScheduleUnselectConfirmModal .modal-footer {
    display: flex;
    justify-content: center;
}

/* 健診者登録画面 end */




/* 健診者変更削除画面 start */

/* 健診者変更削除画面＞健診予定日時記述部 */
/*.pt_update_scr article > p {
    margin-bottom: 0;
    padding: 10px 20px;
    font-size: 20px;
    color: var(--black);
    background-color: var(--pale-red);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}*/

/* 検索、検索条件クリアボタン欄 */
.pt_update_scr #frmPatientSearch > div > div:last-of-type {
    display: flex;
    justify-content: space-between;
}

/* 健診者一覧表 */
.pt_update_scr table {
    font-size: 15px;
}
.pt_update_scr table th {
    font-weight: normal;
    text-align: center;
}

/* 変更、削除ボタン欄 */
.pt_update_scr article + section {
    display: flex;
    justify-content: space-between;
    padding: 20px 34% 0;
}

/* 健診者変更削除画面＞モーダル画面＞ボタン部 */
#patientDeleteConfirmModal .modal-footer {
    display: flex;
    padding: 0 16%;
    justify-content: space-between;
}


/* 健診者変更削除画面 end */



/* 健診者変更画面 start */

/* 健診予定日時一覧表 */
.pt_edit_scr #frmPatientUpdate > div:last-of-type {
    margin-top: 40px;
}

/* 健診予定日時、「選択欄の～」記述部 */
.pt_edit_scr #frmPatientUpdate > div:last-of-type ul {
    display: flex;
    margin-top: 0 0 1rem;
    padding: 10px 20px;
    color: var(--black);
    background-color: var(--pale-red);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
/* 健診予定日時記述部 */
.pt_edit_scr #frmPatientUpdate > div:last-of-type ul li:first-of-type {
    padding-top: 11px;
    width: 20%;
    font-size: 20px;
}
/* 「選択欄の～」記述部 */
.pt_edit_scr #frmPatientUpdate > div:last-of-type ul li:last-of-type {
    width: 80%;
}

/* 健診予定日時一覧表見出し行 */
.pt_edit_scr table th {
    font-weight: normal;
    text-align: center;
    border-top: none;
    border-bottom: none;
}

/* 健診予定日時一覧表ラジオボタン欄 */
.pt_edit_scr table tr td:first-of-type {
    background-color: var(--pale-red);
}

/* 健診予定日時一覧表＞グループ名列以外 */
.pt_edit_scr table tr td:not(:last-of-type) {
    padding-top: 17px;
}

/* モーダル画面ボタン表示部 */
.pt_edit_scr section {
    display: flex;
    margin-top: 20px;
    justify-content: center;
}


/* 健診者変更画面 end */



/* 受付票印刷画面（主催者一覧、健診者一覧共通） start */

/* 健診日、決定ボタン欄 */
.recept_sch_scr #frmReceiptionScheduleSearch ul {
    display: flex;
    margin: 20px auto 0;
}
.recept_sch_scr #frmReceiptionScheduleSearch ul li {
    padding: 0 20px;
}
/* 健診日記述部 */
.recept_sch_scr #frmReceiptionScheduleSearch ul li:first-of-type {
    margin-top: 6px;
    font-size: 16px;
    font-weight: 500;
}

/* 主催者一覧記述部 */
/*.pt_recept_sch_scr article p,
.recept_sch_scr article > p {
    margin-bottom: 0;
    padding: 10px 20px;
    font-size: 20px;
    color: var(--black);
    background-color: var(--pale-red);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}*/

/* 主催者一覧表見出し部 */
.pt_recept_sch_scr table thead th,
.recept_sch_scr #frmReceiptionPatient #printerPromotorListTable thead th {
    text-align: center;
    font-weight: normal;
    border-top: none;
    border-bottom: none;
}

/* 主催者一覧表ラジオボタン欄（健診者が登録されている場合） */
.pt_recept_sch_scr table tr td:not(.noDataDescription):nth-of-type(1),
.recept_sch_scr table tr td:not(.noDataDescription):nth-of-type(1) {
    background-color: var(--pale-red);
}

/* 選択ボタンエリア（主催者一覧） */
.recept_sch_scr section {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

/* 選択ボタンエリア（健診者一覧） */
.pt_recept_sch_scr section {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding: 0 33%;
}
/* 受付票印刷画面（主催者一覧、健診者一覧共通） end */





/* レポート印刷画面（主催者一覧、健診者一覧共通） start */

.pt_repo_prt_scr > div:nth-of-type(2) ul,   /* 健診者一覧＞開催日時 */
.repo_prt_scr #frmReportScheduleSearch ul { /* 主催者一覧＞健診日、決定ボタン欄 */
    display: flex;
    margin: 20px auto 0;
}
.repo_prt_scr #frmReportScheduleSearch ul li {
    padding: 0 20px;
}

/* 健診日記述部（主催者一覧） */
.repo_prt_scr #frmReportScheduleSearch ul li:first-of-type {
    margin-top: 6px;
    font-size: 16px;
    font-weight: 500;
}

/* 開催日時記述部（健診者一覧） */
.pt_repo_prt_scr > div:nth-of-type(2) ul li:first-of-type {
    margin: 2px 10px 0 0;
}
.pt_repo_prt_scr > div:nth-of-type(2) ul li:last-of-type {
    padding: 0;
    width: 200px;
    height: 30px;
    font-size: 16px;
    justify-content: center;
}

/*.pt_repo_prt_scr article > p, /* 健診者一覧記述部
.repo_prt_scr article > p { /* 主催者一覧記述部
    margin-bottom: 0;
    padding: 10px 20px;
    font-size: 20px;
    color: var(--black);
    background-color: var(--pale-red);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}*/

.pt_repo_prt_scr #printerPatientListTable thead th, /* 健診者一覧表見出し部 */
.repo_prt_scr #frmReportSchedule table thead th {       /* 主催者一覧表見出し部 */
    text-align: center;
    font-weight: normal;
    border-top: none;
    border-bottom: none;
}
.pt_repo_prt_scr #printerPatientListTable thead th{ /* 健診者一覧表見出し部 */
    font-size: 15px;
}

.pt_repo_prt_scr table tr td:not(.noDataDescription):nth-of-type(1),    /* 健診者一覧表ラジオボタン欄 */
.repo_prt_scr table tr td:not(.noDataDescription):nth-of-type(1) {      /* 主催者一覧表ラジオボタン欄 */
    background-color: var(--pale-red);
}

.inbody_scr article + section,  /* 体組成計画面のボタンエリア */
.pt_repo_prt_scr section,   /* 選択ボタンエリア（健診者一覧） */
.repo_prt_scr section { /* 選択ボタンエリア（主催者一覧） */
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

/* からだカルテ連携時（健診者一覧）※要素（ここではbutton）を2つ持っているかどうかで判断する */
.pt_repo_prt_scr section:has(> :nth-child(2)) {
    padding: 0 340px;
    justify-content: space-between;
}

/* レポート印刷画面（主催者一覧、健診者一覧共通） end */



/* 体組成計画面 start */

/* CSV取込欄 */
.inbody_scr article:last-of-type {
    margin-top: 40px;
}


/* 体組成計画面 end */




/* 各画面内一覧表の標題欄 */
.pt_edit_scr #frmPatientUpdate > div:nth-of-type(2) article ul li:first-of-type,    /* 健診者変更 */
.pt_repo_prt_scr article > p,   /* レポート印刷（健診者一覧） */
.repo_prt_scr article > p,      /* レポート印刷（主催者一覧） */
.pt_recept_sch_scr article p,   /* 受付票印刷（健診者一覧） */
.recept_sch_scr article > p,    /* 受付票印刷（主催者一覧） */
.pt_update_scr article > p, /* 健診者変更削除 */
.pt_regist_scr article > p, /* 健診者登録 */
.dtl_scr article > p {          /* 健診予定日時 */
    padding: 10px 20px;
    font-size: 20px;
    color: var(--red);
    background-color: var(--pale-red);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}


/* 各画面内一覧表の標題欄 margin-bottom */
.pt_repo_prt_scr article > p,   /* レポート印刷（健診者一覧） */
.repo_prt_scr article > p,      /* レポート印刷（主催者一覧） */
.pt_recept_sch_scr article p,   /* 受付票印刷（健診者一覧） */
.recept_sch_scr article > p,    /* 受付票印刷（主催者一覧） */
.pt_update_scr article > p {    /* 健診者変更削除 */
    margin-bottom: 0;
}



/* ドロップダウンリストのCSS */
.selectbox {
    position: relative
}

.selectbox::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 5px;
    z-index: 2
}

.selectbox::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    border-radius: 5px;
    z-index: 1;
    mix-blend-mode: multiply;
    -webkit-filter: blur(3px);
    filter: blur(3px);
    opacity: .3
}

.selectbox * {
    position: relative;
    z-index: 3
}

.selectbox select {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 30px;
    padding: 0 20px;
    font-size: 14px;
    white-space: nowrap;
    background-color: rgba(0, 0, 0, 0)
}



/* jquery ui の datapicker で、前月/来月移動ボタン（◀▶）が表示されないので応急（？）対応（25/06/06） */
/* 左矢印 */
span.ui-icon.ui-icon-circle-triangle-w::before {
    position: absolute;
    width: 0;
    height: 0;
    border-right: 7px solid #6a64B3;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    margin-left: -5px;
    margin-top: 5px;
    content: "";
}
/* 右矢印 */
span.ui-icon.ui-icon-circle-triangle-e::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-left: 7px solid #6a64B3;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    margin-left: -2px;
    margin-top: 5px;
}

