@charset "utf-8";

/* =Reset default browser CSS.
Based on work by Eric Meyer:http://meyerweb.com/eric/tools/css/reset/index.html
-------------------------------------------------------------- */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td{border:0;font-family:'Noto Sans JP', sans-serif;font-size:100%;font-style:inherit;font-weight:inherit;margin:0;outline:0;padding:0;vertical-align:baseline;}
:focus{outline:0;}

ol, ul{list-style:none;}
table{border-collapse:separate;border-spacing:0;}
caption, th, td{font-weight:normal;text-align:left;}
blockquote:before, blockquote:after,q:before, q:after{content:"";}
blockquote, q{quotes:"" "";}
a img{border:0;}
figure{margin:0}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section{display:block;}
/* -------------------------------------------------------------- */

body{
color:#555;
line-height:1.5;
background:#fff;
-webkit-text-size-adjust:100%;
/* font-family: '游ゴシック'; */
font-family: 'Noto Sans JP', sans-serif;
/* font-family: 'Noto Serif JP', serif; */
font-weight: 500;
/*
font:18px verdana,"ヒラギノ丸ゴ ProN W4","Hiragino Maru Gothic ProN","メイリオ","Meiryo","ＭＳ Ｐゴシック","MS PGothic",Sans-Serif;
font-family: 'Arial',YuGothic,'Yu Gothic','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','メイリオ', Meiryo,'ＭＳ ゴシック',sans-serif;
font-family: "Helvetica Neue",
Arial,
"Hiragino Kaku Gothic ProN",
"Hiragino Sans",
Meiryo,
sans-serif;
*/
}

/* リンク設定
------------------------------------------------------------*/
a{color:#358de0;text-decoration:none;}
a:hover{color:#429bef;}
a:active, a:focus{outline:0;}


/* 全体
------------------------------------------------------------*/
#wrapper{
margin:20px auto 0;
padding:0 1%;
width:98%;
position:relative;
/* font-family: '游ゴシック'; */
font-family: 'Noto Sans JP', sans-serif;
font-weight: 500;
}

.inner{
margin:0 auto;
width:100%;
text-align: center;
}


/*************
/* ヘッダー
*************/
#header{
z-index:100;
margin:0;
/*
margin:20px 0 28px;
*/
text-align: center;
}

#header:after{
content:"";
display: block;   
clear:both; 
visibility:hidden;
}

#header h1{
font-size:12px;
font-weight:normal;
}

/*************
/* ロゴ
*************/
#header .logo{
float:left;
}

.logo a{
font-size:28px;
color: #2596AF;
font-weight:bold;
line-height:1;
}

.logo a span{
font-size:22px;
color: #2596AF;
font-weight:normal;
}

#header h1{
font-size:11px;
color:#444;
margin:10px 0 0;
}

  /*---------------------------------*/
  /* セレクトボックス のスタイル */
  /*---------------------------------*/

  select{
    border:none;
    outline:none;
    display: inline-block;
    -webkit-appearance:none;
    -moz-appearance:none;
    appearance:none;
    cursor:pointer;

    /* mind 20210204 Start */
    /*font-size:14px !important;*/
    font-size:18px !important;
    /* mind 20210204 End */
    font-weight:normal;
    color:#000;
    border-radius:0;
    width:275px;
    z-index:2;
    background:transparent;
  }
  .label{
    box-shadow:0 1px 2px rgba(0,0,0,.2);
    border:1px solid #c0c0c0;
    padding:8px;
    background:white;
    
    /* mind 20210204 Start */
    /*width:260px;*/
    width:300px;
    /* mind 20210204 End */
    display:inline-block;
    position:relative;
    margin-top:px;
  }
  .label:after{
    content:"\25bc";
    font-size:12px;
    color:white;
    background:#3EB1C6;
    width:32px;
    text-align:center;
    line-height:2.7em;
    top:0;
    right:0;
    bottom:0;
    position:absolute;
    pointer-events:none;
  }
  option{
    border-bottom:1px solid #eaeaea;
    border-left:3px solid white;
    appearance:none;
  }
  option:hover{
    background-color:white;
    border-left:3px solid #f3a1a1;
  }

  /* mind 20210204 Start */
  .syozoku{
    
  }

  /* テキストボックスのフォカース時アニメーション */
  .bar    { 
    position:relative; 
    display:block;  
    width:100%;
  }
  .bar:before, .bar:after     {
    content:'';
    height:2px; 
    width:0;
    bottom:1px; 
    position:absolute;
    background:#5264AE; 
    transition:0.2s ease all; 
    -moz-transition:0.2s ease all; 
    -webkit-transition:0.2s ease all;
  }
  .bar:before {
    left:50%;
  }
  .bar:after {
    right:50%; 
  }

  /* active state */
  input:focus ~ .bar:before, input:focus ~ .bar:after {
    width:50%;
  }
  textarea:focus ~ .bar:before, textarea:focus ~ .bar:after {
    width:50%;
  }

  /* ハイライトのアニメーション */
  .highlight {
    position:absolute;
    height:60%; 
    width:400px; 
    top:25%; 
    left:0;
    pointer-events:none;
    opacity:0.5;
  }
  input:focus ~ .highlight {
    -webkit-animation:inputHighlighter 0.3s ease;
    -moz-animation:inputHighlighter 0.3s ease;
    animation:inputHighlighter 0.3s ease;
  }
  textarea:focus ~ .highlight {
    -webkit-animation:inputHighlighter 0.3s ease;
    -moz-animation:inputHighlighter 0.3s ease;
    animation:inputHighlighter 0.3s ease;
  }

  /* ANIMATIONS ================ */
  @-webkit-keyframes inputHighlighter {
    from { background:#5264AE; }
    to    { width:0; background:transparent; }
  }
  @-moz-keyframes inputHighlighter {
    from { background:#5264AE; }
    to    { width:0; background:transparent; }
  }
  @keyframes inputHighlighter {
    from { background:#5264AE; }
    to    { width:0; background:transparent; }
  } 

/**************************
/* メイン画像（トップページ）
**************************/
#mainBanner{
margin:0 auto;
/* padding:0; */
width:100%;
line-height:0;
padding-top: 1%;
padding-bottom: 1%;
padding-left: 0;
padding-right: 0;
background-color: #00004D;
height: 70px;
display: flex;
justify-content: center;
align-items: center;
}
#mainBanner2{
  margin:0 auto;
  /* padding:0; */
  width:100%;
  line-height:0;
  padding-top: 1%;
  padding-bottom: 1%;
  padding-left: 0;
  padding-right: 0;
  background-color: #00004D;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  }
  #hosp-logo {
  margin-bottom:20px;
}

@media screen and (max-width: 699px) {
  #mainBanner {
    height: 58px;
  }
  #mainBanner2 {
    height: 180px;
  }
  #hosp-logo {
    margin-bottom: 0px;
  }
}
@media screen and (max-width: 400px) {
  #mainBanner2 {
    height: 90px;
  }
  .pageTitle {
    font-size: 12pt;
  }
}

#mainBanner .inner{position:relative;}

#mainBanner img{
max-width:100%;
height:auto;
}

.appname {
color: white;
font-size: xx-large;
margin-top: 2%;
}

.slogan{
position:absolute;
max-width:100%;
height:auto;
bottom:0;
left:0;
padding:5px 10px;
line-height:1.4;
z-index:100;
}

.slogan h2{
padding-bottom:5px;
color:#333;
font-size:20px;
}

.slogan h3{
font-size:22px;
color:#666;
}

.wallpaper {
background: linear-gradient(to right, #A4BDEB, #D8E0FD);
background: -moz-linear-gradient(left, #A4BDEB, #D8E0FD);
background: -webkit-linear-gradient(left, #A4BDEB, #D8E0FD);
}

#userId, #password, #comfirmPassword {
display: block;
width: 100%;
padding: 6px 12px;
line-height: 1.42857143;
background-color: white;
background-image: none;
border-radius: 4px;
transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
border: none;
border-bottom: 1px solid #757575;
outline: 0;
font-size: 22pt;
}

.box {
  box-shadow: 4px 4px 4px #999999;
  background-color: white;
  margin-left: 20px;
  margin-right: 20px;
  border-radius: 5%;
}

.btn-next {
background-color: #000081;
box-shadow: 2px 2px 2px #6D6E88;
border: none;
color: white;
width:97%;
}

/*************************/
/* ログイン画面           */
/*************************/
#userId:focus, #password:focus, #comfirmPassword:focus {
  outline: 0;
}
  
.main-dr {
  background-image: url('/view/public/images/main-dr.png');
  background-size: contain;
  width: 120px;
  height: 120px;
  background-color: white;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 5%;
  border: 2px solid;
  background-repeat: no-repeat;
  background-position: bottom;
/*  
  display: inline-block;
*/
}

#description-box {
  height: 280px;
  background-color:white;
}

#drname {
  font-size: 21pt;
}

.description1 {
  font-size: 26pt;
}

.description2 {
  font-size: 28pt;
  background: linear-gradient(transparent 0%,#FFD600 0%);
}

.pageTitle {
  font-size: 18pt;
  background: linear-gradient(transparent 70%,#FFD600 0%);
}
@media screen and (max-width: 400px) {
  .pageTitle {
    font-size: 12pt;
  }
}

.description3 {
  font-size: 21pt;
}

.description4 {
  font-size: 18pt;
}

.description5 {
  float: left;
  padding-left: 20px;
  margin-top: -5px;
  font-size: 15pt;
  color:#808080;
}

#forgotPassword {
  float: right;
  margin-right: 2%;
  margin-top: 3%;
  font-size: 16pt;
}

#resetPassword {
  margin-top: 5%;
  background-color: white;
  height: 260px;
}

#authorize {
  margin-top: 5%;
  background-color: white;
  height: 280px;
}

#btnAuthorize, #btnChange {
  background-color: #00007F;
  font-size: 22pt;
}
#btnCancel, #btnDelete, #btnDelete_before {
  background-color: #808080;
  color: white;
}

@media screen and (max-width: 678px) {
  .main-dr {
    width: 120px;
    height: 120px;
    background-size: contain;
  }
  #drname {
    font-size: 16pt;
  }
  .description1 {
    font-size: 22pt;
  }
  .description2 {
    font-size: 24pt;
  }
  .description3 {
    font-size: 18pt;
  }
  #description-box {
    height: 250px;
  }
  .description4 {
    font-size: 16pt;
  }
  #userId, #password, #comfirmPassword, #btnAuthorize, #btnChange, #btnCancel {
    font-size: 20pt;
  }
  .description5 {
    font-size: 14pt;
  }
  #forgotPassword {
    font-size: 18pt;
  }
  #authorize {
    height: 280px;
  }
}
@media screen and (max-width: 593px) {
  .main-dr {
    width: 100px;
    height: 100px;
    background-size: contain;
  }
  #drname {
    font-size: 14pt;
  }
  .description1 {
    font-size: 14pt;
  }
  .description2 {
    font-size: 18pt;
  }
  .description3 {
    font-size: 14pt;
  }
  #description-box {
    height: 200px;
  }
  .description4 {
    font-size: 12pt;
  }
  #userId, #password, #comfirmPassword, #btnAuthorize, #btnChange, #btnCancel {
    font-size: 18pt;
  }
  .description5 {
    font-size: 12pt;
  }
  #forgotPassword {
    font-size: 14pt;
  }
  #authorize {
    height: 260px;
  }
}
@media screen and (max-width: 478px) {
  #description-box {
    height: 230px;
  }
}
@media screen and (max-width: 450px) {
  #description-box {
    height: 260px;
  }
}
@media screen and (max-width: 442px) {
  .description4 { 
    font-size: 11pt;
  }
}
@media screen and (max-width: 413px) {
  #description-box {
    height: 285px;
  }
}
@media screen and (max-width: 409px) {
  .description4 { 
    font-size: 10pt;
  }
}
@media screen and (max-width: 400px) {
  #drinfo {
    width: 15%;
  }
  .main-dr {
    width: 80px;
    height: 80px;
    background-size: contain;
  }
  #drname {
    font-size: 12pt;
  }
  #information {
    width: 85%;
  }
  .description1 {
    font-size: 14pt;
  }
  .description2 {
    font-size: 12pt;
  }
  .description3 {
    font-size: 10pt;
  }
  #description-box {
    height: 180px;
  }
  .description4 {
    font-size: 9pt;
  }
  #userId, #password, #comfirmPassword, #btnAuthorize, #btnChange, #btnCancel {
    font-size: 12pt;
  }
  .description5 {
    font-size: 10pt;
  }
  #forgotPassword {
    font-size: 12pt;
  }
  #authorize {
    height: 260px;
  }
  #resetPassword {
    height: 230px;
  }
}
@media screen and (max-width: 364px) {
  #description-box {
    height: 200px;
  }
}

/**************************
/* グリッド
**************************/
.gridWrapper{
padding-bottom:20px;
clear:both;
overflow:hidden;
}

.grid h3{
padding:13px 0;
margin-bottom:5px;
font-weight:bold;
/*border-top:1px solid #ccc;
border-bottom:1px solid #ccc;*/
font-size:24px;
}

.grid p{padding:5px 0;}

.grid p.img{
float:left;
margin:3px 0 0 0;
}

.readmore{clear:both;}

.readmore a{
padding:3px 5px;
border-radius:3px;
color:#fff;
background:#999;
}

.readmore a:hover{background:#ccc;}


/* フッター内のグリッド(3カラム) */
#footer2 .grid{
border:0;
background:transparent;
}

#footer2 .grid p{padding:0;}


/*************
メイン コンテンツ
*************/
section.content{
padding:10px 0;
margin-bottom:20px;
border-radius:6px;
overflow:hidden;
font-size:14px;
}

section.content p{margin-bottom:5px;}


/* アーカイブページ */
section.content .archive{
padding:20px 0 0;
border-bottom:1px dotted #ccc;
}

section.content p{margin-bottom:5px;}

h3.heading{
padding:3px 0 13px;
margin-bottom:30px;
font-size:16px;
border-bottom:2px solid #ccc;
}

section.content img{
max-width:90%;
height:auto;
}

.alignleft{
float:left;
clear:left;
margin:3px 10px 10px 0;
}

.alignright{
float:right;
clear:right;
margin:3px 0 10px 10px;
}

.border,ul.list img{border:4px solid #ebebeb;}



/*************
/* フッター
*************/
/*
#footer2{
clear:both;
padding:20px 0;
overflow:hidden;
}
*/

.tel strong{
font-size:20px;
font-weight:bold;
}

/*
#footer2 .copyright{font-size:11px;}
*/

#footer {
  width:100%;
  padding:0;
  background-color:#00004D;
  position:fixed;
  bottom: 0;
  padding-top:0.5%;
  padding-bottom:0.5%;
  height: 58px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#footer img {
  width: 45%;
}
@media only screen and (max-width: 400px) {
  #footer img {
    width: 60%;
  }  
} 
#footer2 {
  width:100%;
  padding:0;
  background-color:#00004D;
  position:fixed;
  bottom: 0;
  padding-top:0.5%;
  padding-bottom:0.5%;
  display: none;
}

/*************
サブ（フッター前）コンテンツ
*************/
#sub ul{padding:10px;}

#sub li{
margin-bottom:10px;
padding-bottom:10px;
border-bottom:1px dashed #ebebeb;
}

#sub li:last-child{
border:0;
margin-bottom:0;
}

#sub li a{
color:#555;
display:block;
}

#sub li a:hover{
color:#a5a5a5;
}

#sub ul.list{padding-bottom:7px;}

#sub ul.list li{
clear:both;
margin-bottom:5px;
padding:5px 0;
overflow:hidden;
}

#sub ul.list li img{
float:left;
margin-right:10px;
}

#sub ul.list li{
font-size:12px;
line-height:1.35;
}

#sub .grid h3{border-radius:0;}


/* page navigation
------------------------------------------------------------*/
.pagenav{
clear:both;
width:100%;
height:30px;
margin:5px 0 20px;
}

.pagenav a{
color:#555;
}

.pagenav a:hover{
color:#a5a5a5;
}

.prev{float:left}
.next{float:right;}

#pageLinks{
clear:both;
text-align:center;
}


/* タイポグラフィ
*****************************************************/
.dateLabel{
margin:0 0 10px;
text-align:right;
font:italic 1em "Palatino Linotype", "Book Antiqua", Palatino, serif;
}

.post p{padding-bottom:15px;}

.post ul{margin:0 0 10px 10px;}

.post ul li{
margin-bottom:5px;
padding-left:15px;
background:url(images/bullet.png) no-repeat 0 8px;
}

.post ol{margin:0 0 10px 30px;}

.post ol li{list-style:decimal;}

.post h1{
margin:20px 0;
padding:5px 0;
font-size:150%;
color:#000;
border-bottom:3px solid #f0f0f0;
}

.post h2{
margin:10px 0;
padding-bottom:2px;
font-size:130%;
font-weight:normal;
color:#333;
border-bottom:2px solid #f0f0f0;
}

.post h3{
margin:10px 0 30px;
padding-bottom:10px;
font-size:110%;
font-weight:normal;
color:#777;
border-bottom:2px solid #f0f0f0;
}

.post blockquote{
clear:both;
padding:10px 0 10px 15px;
margin:10px 0 25px 30px;
border-left:5px solid #ccc;
}
 
.post blockquote p{padding:5px 0;}

.post table{
border-collapse:collapse;
margin:10px 0;
}

.post table th,.post table td{
padding:12px;
border:1px solid #ccc;
}

.post table th{
text-align:right;
font-weight:bold;
letter-spacing:1px;
white-space:nowrap;
background:#eee;
}

.post dt{font-weight:bold;}

.post dd{padding-bottom:10px;}

.post img{max-width:100%;height:auto;}

img.aligncenter{
display:block;
margin:5px auto;
}

img.alignright, img.alignleft{
padding:4px;
margin:0 0 2px 7px;
display:inline;
}

img.alignleft{margin:0 7px 2px 0;}

.alignright{float:right;}
.alignleft{float:left;}


/* PC用
------------------------------------------------------------*/
@media only screen and (min-width:699px){
#wrapper,.inner{
width:700px;
padding:0;
}

#wrapper{padding-bottom:20px;}

/* グリッド全体 */
.gridWrapper{
display:table;
border-collapse:separate;
border-spacing:20px;
/*margin-left:-20px;*/
width:700px;
}

/* グリッド共通 ベース:トップページ4カラム */
.grid{
width:220px;
display:table-cell;
}

#sub.gridWrapper{width:980px;}

/* サブコンテンツ + フッター グリッド(3カラム) */
#sub .grid, #footer2 .grid{width:300px;}

/* トップナビゲーション */
nav div.panel{display:block !important;}

a#menu{display:none;}

#topnav{
float:right;
margin-top:-5px;

}

#topnav li{
float:left;
margin:13px 5px 0;
text-align:center;
position:relative;
}

#topnav a{
color:#555;
font-size:13px;
display:block;
padding:25px 10px;
line-height:1.2;
}

#topnav span{
font-size:10px;
color:#a5a5a5;
}

#topnav li.current-menu-item a,#topnav a:hover{
background:#f5f5f5;
}

#topnav ul{
width:160px;
display:none;
}

#topnav li:hover ul{
display:block;
position:absolute;
top:80px;
left:0;
z-index:500;
}

#topnav li li{
margin:0;
float:none;
width:160px;
text-align:left;
background:#f4f4f4;
}

#topnav li li a{
padding:10px;
border:0;
}

#topnav li.current-menu-item li a,#topnav li li a{
border-bottom-width:1px;
}

#topnav li li.current-menu-item a,#topnav li li a:hover{
padding-bottom:10px;
border-bottom-width:3px;
background:#eee;
}
}

@media only screen and (max-width:699px){
*{
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}

#header h1{text-align:center;}

#header .logo,#footer2 .logo{
float:none;
text-align:center;
padding:10px 5px;
}

/* トップナビゲーション */
nav#mainNav{
clear:both;
width:100%;
margin:0 auto;
padding:0;
background: -webkit-gradient(linear, left top, left bottom, color-stop(1, #f4f4f4), color-stop(0.00, #f4f4f4));
background: -webkit-linear-gradient(top, #f4f4f4 0%, #f4f4f4 100%);
background: -moz-linear-gradient(top, #f4f4f4 0%, #f4f4f4 100%);
background: -o-linear-gradient(top, #f4f4f4 0%, #f4f4f4 100%);
background: -ms-linear-gradient(top, #f4f4f4 0%, #f4f4f4 100%);
background: linear-gradient(top, #f4f4f4 0%, #f4f4f4 100%);
}

nav#mainNav a.menu{
width:100%;
display:block;
height:40px;
line-height:40px;
font-weight: bold;
text-align:left;
color:#555;
}

nav#mainNav a#menu span{padding-left:10px;}
nav#mainNav a span:before{content:"≡ ";}
nav#mainNav a.menuOpen span:before{content:"× ";}

nav#mainNav a#menu:hover{cursor:pointer;}

nav .panel{
display:none;
width:100%;
position:relative;
right:0;
top:0;
z-index:1;
}

nav#mainNav ul{margin:0;padding:0;}

  nav#mainNav ul li{
float:none;
clear:both;
width:100%;
height:auto;
line-height:1.2;
}

nav#mainNav ul li a,nav#mainNav ul li.current-menu-item li a{
display: block;
padding:15px 10px;
text-align:left;
border-bottom:1px dashed #e8e8e8;
color:#555;
}

nav#mainNav ul li a span{padding-left:10px;}
nav#mainNav ul li:first-child a{border-top:1px dashed #e8e8e8;}

nav#mainNav ul li:last-child a{border:0;}
nav#mainNav ul li li:last-child a{border:0;}
nav#mainNav ul li li:last-child a{border-bottom:1px dashed #e8e8e8;}
 
nav#mainNav ul li.current-menu-item a,nav#mainNav ul li a:hover,nav#mainNav ul li.current-menu-item a,nav#mainNav ul li a:active, nav#mainNav ul li li.current-menu-item a, nav#mainNav ul li.current-menu-item li a:hover, nav#mainNav ul li.current-menu-item li a:active{
background:#eee;
}

nav div.panel{float:none;}

nav#mainNav ul li li{
float:left;
border:0;
}

nav#mainNav ul li li a, nav#mainNav ul li.current-menu-item li a, nav#mainNav ul li li.current-menu-item a{
padding-left:40px;
background:url(images/sub1.png) no-repeat 20px -62px;
}

nav#mainNav ul li li.current-menu-item a,nav#mainNav ul li li a:hover, nav#mainNav ul li.current-menu-item li a:hover{background:#eee url(images/sub1.png) no-repeat 20px -62px;}

nav#mainNav ul li li:last-child a{background:#f4f4f4 url(images/subLast.png) no-repeat 20px -65px;}
nav#mainNav ul li li:last-child.current-menu-item a,nav#mainNav ul li li:last-child a:hover,nav#mainNav ul li.current-menu-item li:last-child a:hover{background:#eee url(images/subLast.png) no-repeat 20px -65px;}

.grid{
float:left;
width:48%;
margin:10px 2% 0 0;
}

.grid img{
float:left;
margin-right:5px;
}

#sub .grid{
width:32%;
margin:10px 1%;
}

#sub .grid:first-child{
margin-left:0;
}

#sub .grid:last-child{
margin-right:0;
}

#footer2 .grid, #footer2 .grid p{
float:none;
width:100%;
text-align:center;
border:0;
}

#footer2 .grid:last-child{padding-top:20px;}
}

@media only screen and (max-width:768px){
  #header{padding-bottom:0;}
#header h1{text-align:center;}

#header .logo{
float:none;
text-align:center;
padding:10px 5px 20px;
}

#sub ul.list{padding:10px 10px 11px;}

#sub ul.list li{padding-bottom:10px;margin-bottom:8px;}
}


@media only screen and (max-width:640px){
#footer2 .grid p{text-align:center;}

.grid img{float:none;margin:20px auto 10px;max-width:100%;height:auto;}

.grid p,#sub .grid li{text-align:left;}

  .alignleft,.alignright{float:none;display:block;margin:0 auto 10px;}
}


@media only screen and (max-width:480px){
#mainBanner h2,#mainBanner h3{font-size:80%;}

#sub .grid{
float:none;
width:98%;
}

#sub .grid h3{padding:10px 5px;}
}
.info {
  float: right;
  padding-right: 22px;
  text-align: right;
}.logo, .info .tel {
  color: #2596AF;
  font-size: 24px;
  font-weight: bold;
}
.logo span, .info span {
  color: #333;
  font-size: .6em;
  font-weight: normal;
}



/*全体*/
.wrapper{
  max-width: 600px;
  margin: 0 auto;
  color: #666;
}
#calHeader {
  text-align: center;
  font-size: 24px;
  width: 100%;
  margin: 1rem 0 0;
  line-height: 42px;
}

/*カレンダー*/
#calendar {
  text-align: center;
  width: 100%;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th {
  color: #000;
}
th, td {
  border: 1px solid #ddd;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
  font-size: 20pt;
  font-weight: bold;
}
@media only screen and (max-width: 560px) {
  .calendarCell, .dayOfWeek th, .disabled {
    font-size: 18pt;
  }
}
@media only screen and (max-width: 480px) {
  .calendarCell, .dayOfWeek th, .disabled {
    font-size: 16pt;
  }
}
@media only screen and (max-width: 400px) {
  .calendarCell, .dayOfWeek th, .disabled {
    font-size: 12pt;
  }
}
/*日曜日*/
td:first-child {
  color: red;
}
/*土曜日*/
td:last-child {
  color: blue;
}
/*前後月の日付*/
td.disabled {
  color: #ccc;
}
/*本日*/
td.today {
  background-color: #D65E72;
  color: #fff;
}

/*ボタン*/
#next-prev-button {
  position: relative;
}
#next-prev-button button{
  cursor: pointer;
  background: #000081;
  color: #fff;
  border: 1px solid #000081;
  border-radius: 4px;
  font-size: 1rem;
  padding: 0.5rem 2rem;
  margin: 1rem 0;
}
#next-prev-button button:hover{
  background-color: #000081;
  border-color: #000081;
}
#prev {
  float: left;
}
#next {
  float: right;
}


h3 {
  font-size:24px;
}

.form-control-lg {
  height:48px;
  font-size:24px;
}
.button-default {
  margin-left:10px;margin:0 auto;padding:12px;font-size:22px;
}
.list {
  width: 100%;
  margin: auto;
  padding: 0;
}
.list li {
  opacity: 1;
  list-style: none;
  background-color: #ddd;
  margin-top: 10px;
  text-align: center;
  border-radius: 4px;
  line-height: 32px;
  font-size: 13px;
  transition: all 0.4s ease 0s;
}
.list li.is-hidden {
  opacity: 0;
  height: 0;
  margin: 0;
  display:none;
}

.more {
  text-align: center;
  margin-top: 20px;
}
.more-button {
  background-color: #696969;
  color:#fff;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 6px;
  height: 50px;
  line-height: 32px;
  width: 120px;
  border-radius: 16px;
}
#information {
  position: relative;
  padding: 10px;
  background-color: transparent;
  border: 2px solid;
  text-align: left;
  border-radius: 5%;
  font-size: 12pt;
  box-shadow: 4px 4px 4px #999999;
}
#information::before{
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: -15px;
  top: 20%;
  border-right: 15px solid;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
}
#information::after{
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: -12px;
  top: 20%;
  border-right: 15px solid white;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
}

hr {
  border-color: #00007F;
  border-width: 2px;
  margin-top: 3px;
  margin-bottom: 3px;
}

.main-menu {
  text-align: center;
  margin: 0 auto;
  width: 80%;
}

#main-dr2 {
  width: 50%;
}
.main-baloon {
  float: left;
  width: 40%;
  margin-top: 5%;
}
@media only screen and (max-width: 520px) {
  #main-dr2 {
    width: 65%;
  }  
  .main-baloon {
    margin-top: 2%;
  }
}
@media only screen and (max-width: 400px) {
  .main-menu {
    width: 100%;
  }
  #main-dr2 {
    width: 100%;
  }  
}

.locationxUserInfo, .locationxReport00 {
  color: #000081;
  font-weight: bold;
  border: 4px solid;
  border-color: #000081;
/*
  margin-left: 10px;
  margin-right: 10px;
*/
  width: 97.5%;
  box-shadow:2px 2px 2px #6D6E88;
}

#guide-baloon {
  position: absolute;
  padding: 10px;
  background-color: white;
  border: 2px solid;
  text-align: left;
  border-radius: 5%;
  font-size: 12pt;
  box-shadow: 4px 4px 4px #999999;
  display: flex;
  margin-left: 60%;
  margin-right: 20px;
  margin-top: -93%;
  width: 200px;
}
#guide-baloon::before{
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: 60%;
  top: -15px;
  border-right: 15px solid transparent;
  border-bottom: 15px solid;
  border-left: 15px solid transparent;
} 
#guide-baloon::after{
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: 60%;
  top: -12px;
  border-right: 15px solid transparent;
  border-bottom: 15px solid white;
  border-left: 15px solid transparent;
}
@media screen and (max-width: 680px) {
  #guide-baloon {
    margin-top: -94%;
  }
}
@media screen and (max-width: 670px) {
  #guide-baloon {
    margin-top: -96%;
  }
}
@media screen and (max-width: 658px) {
  #guide-baloon {
    margin-top: -107%;
  }
}
@media screen and (max-width: 640px) {
  #guide-baloon {
    margin-top: -111%;
  }
}
@media screen and (max-width: 625px) {
  #guide-baloon {
    margin-top: -114%;
    margin-left: 58%;
  }
}
@media screen and (max-width: 610px) {
  #guide-baloon {
    margin-top: -117%;
    margin-left: 56%;
  }
}
@media screen and (max-width: 590px) {
  #guide-baloon {
    margin-top: -121%;
    margin-left: 54%;
  }
}
@media screen and (max-width: 575px) {
  #guide-baloon {
    margin-top: -125%;
    margin-left: 53%;
  }
}
@media screen and (max-width: 560px) {
  #guide-baloon {
    margin-top: -119%;
    margin-left: 52%;
  }
}
@media screen and (max-width: 545px) {
  #guide-baloon {
    margin-top: -122%;
    margin-left: 50%;
  }
}
@media screen and (max-width: 530px) {
  #guide-baloon {
    margin-top: -126%;
    margin-left: 48%;
  }
}
@media screen and (max-width: 515px) {
  #guide-baloon {
    margin-top: -130%;
    margin-left: 47%;
  }
}
@media screen and (max-width: 500px) {
  #guide-baloon {
    margin-top: -134%;
    margin-left: 45%;
  }
}
@media screen and (max-width: 485px) {
  #guide-baloon {
    margin-top: -139%;
    margin-left: 43%;
  }
}
@media screen and (max-width: 470px) {
  #guide-baloon {
    margin-top: -137%;
    margin-left: 42%;
  }
}
@media screen and (max-width: 458px) {
  #guide-baloon {
    margin-top: -140%;
    margin-left: 40%;
  }
}
@media screen and (max-width: 445px) {
  #guide-baloon {
    margin-top: -145%;
    margin-left: 38%;
  }
}
@media screen and (max-width: 435px) {
  #guide-baloon {
    margin-top: -149%;
    margin-left: 37%;
  }
}
@media screen and (max-width: 425px) {
  #guide-baloon {
    margin-top: -153%;
    margin-left: 35%;
  }
}
@media screen and (max-width: 415px) {
  #guide-baloon {
    margin-top: -157%;
    margin-left: 33%;
  }
}
@media screen and (max-width: 405px) {
  #guide-baloon {
    margin-top: -161%;
    margin-left: 31%;
  }
}
@media screen and (max-width: 400px) {
  #guide-baloon {
    margin-top: -140%;
    margin-left: 30%;
  }
  #calHeader {
    font-size: 16pt;
  }
}
@media screen and (max-width: 395px) {
  #guide-baloon {
    margin-top: -142%;
    margin-left: 29%;
  }
}
@media screen and (max-width: 393px) {
  #guide-baloon {
    margin-top: -142%;
    margin-left: 29%;
  }
}
@media screen and (max-width: 380px) {
  #guide-baloon {
    margin-top: -148%;
    margin-left: 26%;
  }
  #calHeader {
    font-size: 14pt;
  }
}
@media screen and (max-width: 370px) {
  #guide-baloon {
    margin-top: -157%;
    margin-left: 24%;
  }
  #calHeader {
    font-size: 12pt;
  }
}

.regimenHeader {
  font-size: 12pt;
  padding-top: 5px;
  padding-bottom: 5px;
}

.overlay {
  display: none;
  z-index: 9999;
  background-color: #00000070;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
}

.infoTitle {
  border-radius: 5px 5px 0px 0px;
  padding-left: 10px;
  padding-top: 10px;
  margin: -10px -10px 10px 10px;
}

.btnUserRegimenEntry {
/*  maring-left: 20px; */
  maring-top: 10px;
  border: 1px solid #00007f;
  border-radius: 5px;
  background: #00007f;
  color: #fff;
  text-align: center;
  font-weight: bold;
  width: 100px;
  height: 30px;
/*  padding-top: 5px; */
}

.btnUserRegimenCancel {
/*  maring-left: 20px; */
  maring-top: 10px;
  border: 3px solid #00007f;
  border-radius: 5px;
  background: #fff;
  color: #00007f;
  text-align: center;
  font-weight: bold;
  width: 100px;
  height: 30px;
/*  padding-top: 5px; */
}

.btnUserRegimenDelete {
  maring-left: 20px;
  maring-top: 10px;
  border: none;
  background: #fff;
  color: #00007f;
  text-align: center;
  font-weight: bold;
  width: 70px;
  height: 30px;
/*  padding-top: 5px; */
  text-decoration: underline;
}

.pictGuide {
  width: 140px;
  border: 1px solid #000;
  border-radius: 5px;
  background: #fff;
  text-align: center;
  font-size:12px;
  margin-left: 480px;
  margin-right: 0;
  margin-top: 100px;
  position: absolute;
}
.pictGuide:before {
  content: "";
  position: absolute;
  bottom: -22px;
  left: 50%;
  margin-left: -15px;
  border: 12px solid transparent;
  border-top: 12px solid #fff;
  z-index: 2;
}
.pictGuide:after {
  content: "";
  position: absolute;
  bottom: -26px;
  left: 50%;
  margin-left: -17px;
  border: 14px solid transparent;
  border-top: 14px solid #555;
  z-index: 1;
}
@media screen and (max-width: 650px) {
  .pictGuide {
    margin-top: 100px;
    margin-left: 380px;
  }
}
@media screen and (max-width: 540px) {
  .pictGuide {
    margin-top: 120px;
    margin-left: 320px;
  }
}
@media screen and (max-width: 480px) {
  .pictGuide {
    margin-top: 120px;
    margin-left: 270px;
  }
}
@media screen and (max-width: 420px) {
  .pictGuide {
    margin-top: 120px;
    margin-left: 240px;
  }
}
@media screen and (max-width: 400px) {
  .pictGuide {
    margin-top: 70px;
    margin-left: 230px;
  }
}
@media screen and (max-width: 387px) {
  .pictGuide {
    margin-top: 90px;
    margin-left: 220px;
  }
}
@media screen and (max-width: 380px) {
  .pictGuide {
    margin-top: 120px;
    margin-left: 200px;
  }
}

